Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libixion/
Date: Sun, 31 May 2020 21:51:00
Message-Id: 1590961836.c0ce8c95d793309861f369803dde4e49fa369eba.asturm@gentoo
1 commit: c0ce8c95d793309861f369803dde4e49fa369eba
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 31 21:50:36 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun May 31 21:50:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0ce8c95
7
8 dev-libs/libixion: Drop 0.14.1
9
10 Package-Manager: Portage-2.3.100, Repoman-2.3.22
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-libs/libixion/Manifest | 1 -
14 dev-libs/libixion/libixion-0.14.1.ebuild | 53 --------------------------------
15 2 files changed, 54 deletions(-)
16
17 diff --git a/dev-libs/libixion/Manifest b/dev-libs/libixion/Manifest
18 index b92fc86a2fa..421f04ea458 100644
19 --- a/dev-libs/libixion/Manifest
20 +++ b/dev-libs/libixion/Manifest
21 @@ -1,2 +1 @@
22 -DIST libixion-0.14.1.tar.xz 360568 BLAKE2B e4da21f0eff9111272618d1bad87790ed0c4b461478473654f8366b0023c0650b41d355b0737a4fd4ac943e66f919e2f0d6bf04250e597e54a290d4415f3a093 SHA512 e4ae6348833d2178c1dc76916937bcc9d7821dc6570fe13093c441ca22e0301a1ca6a4cf85d9814b83534733dba98f4c4a372791f93bc57173317657675b9ae3
23 DIST libixion-0.15.0.tar.xz 447388 BLAKE2B 55df3417783f1653b0aa4b80a5f0107a3794fcb403c1c1263ce9829b31ee5263a104fa210be151535c1ff091d5dc2519f694ef3cdb16074f86dab4d48a127afd SHA512 feecaa4a8e6191649a7ecbc6c0f4d7db6dba3a5e4a031c1f55236907bf94e2ece9ee05d18ed345e3503cffb4a380b04f6c4941ef4214ddf92687998a070b7543
24
25 diff --git a/dev-libs/libixion/libixion-0.14.1.ebuild b/dev-libs/libixion/libixion-0.14.1.ebuild
26 deleted file mode 100644
27 index 808b0ec9566..00000000000
28 --- a/dev-libs/libixion/libixion-0.14.1.ebuild
29 +++ /dev/null
30 @@ -1,53 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{6,7,8} )
37 -inherit python-single-r1
38 -
39 -DESCRIPTION="General purpose formula parser & interpreter"
40 -HOMEPAGE="https://gitlab.com/ixion/ixion"
41 -
42 -if [[ ${PV} == 9999 ]]; then
43 - EGIT_REPO_URI="https://gitlab.com/ixion/ixion.git"
44 - inherit git-r3 autotools
45 -else
46 - SRC_URI="https://kohei.us/files/ixion/src/${P}.tar.xz"
47 - KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 x86"
48 -fi
49 -
50 -LICENSE="MIT"
51 -SLOT="0/0.14" # based on SONAME of libixion.so
52 -IUSE="debug python static-libs +threads"
53 -
54 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
55 -
56 -DEPEND="
57 - dev-libs/boost:=
58 - =dev-util/mdds-1.4*:1
59 - python? ( ${PYTHON_DEPS} )
60 -"
61 -RDEPEND="${DEPEND}"
62 -
63 -pkg_setup() {
64 - use python && python-single-r1_pkg_setup
65 -}
66 -
67 -src_prepare() {
68 - default
69 - [[ ${PV} == 9999 ]] && eautoreconf
70 -}
71 -
72 -src_configure() {
73 - econf \
74 - $(use_enable debug) \
75 - $(use_enable python) \
76 - $(use_enable static-libs static) \
77 - $(use_enable threads)
78 -}
79 -
80 -src_install() {
81 - default
82 - find "${D}" -name '*.la' -type f -delete || die
83 -}