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: Wed, 12 Sep 2018 20:56:40
Message-Id: 1536785782.8e91432b94ebae639bffc6a160d4484c24f7ea7f.asturm@gentoo
1 commit: 8e91432b94ebae639bffc6a160d4484c24f7ea7f
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 12 18:46:23 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 12 20:56:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e91432b
7
8 dev-libs/libixion: 0.14.0 version bump without keywords
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 dev-libs/libixion/Manifest | 1 +
13 dev-libs/libixion/libixion-0.14.0.ebuild | 55 ++++++++++++++++++++++++++++++++
14 2 files changed, 56 insertions(+)
15
16 diff --git a/dev-libs/libixion/Manifest b/dev-libs/libixion/Manifest
17 index ee889944a60..b6136b93579 100644
18 --- a/dev-libs/libixion/Manifest
19 +++ b/dev-libs/libixion/Manifest
20 @@ -1 +1,2 @@
21 DIST libixion-0.13.0.tar.xz 413756 BLAKE2B 04aef61a1cc691bb159d7e8131e2e47fe2590634adc93f2e5771ed106316eb1c92ee7c4aa05ba753a1751cb5e7c55cba9263515671a26f9bc9983a1cfcacceff SHA512 15784e947164d106e677c59ece53b3cd401d4f9433cc5331a35d3be8332ae4f20a469ca73b30b253433c86da4afde886dfb4ac23e46ed46376a7349e0276c3a0
22 +DIST libixion-0.14.0.tar.xz 427100 BLAKE2B 8f766a61d2dab2c1cd40fbd72bb3d0cad2dda1a9d4617f1bc5289237b29e8b4edab333819b3ca61dfbd9a9b22b2e5a956d5c12b0a9eab8f794cbd87a20237b4e SHA512 8681912fb1bebb4de1fdcb4f0589aa84a3e38cd21747c81a204a87594f67879732461f3c02b70d0bf5659af59c1af1fa17df425eba5946d22a8599bc8da9fd92
23
24 diff --git a/dev-libs/libixion/libixion-0.14.0.ebuild b/dev-libs/libixion/libixion-0.14.0.ebuild
25 new file mode 100644
26 index 00000000000..51e6e3935b8
27 --- /dev/null
28 +++ b/dev-libs/libixion/libixion-0.14.0.ebuild
29 @@ -0,0 +1,55 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +EGIT_REPO_URI="https://gitlab.com/ixion/ixion.git"
36 +
37 +PYTHON_COMPAT=( python{3_4,3_5,3_6} )
38 +
39 +[[ ${PV} == 9999 ]] && GITECLASS="git-r3 autotools"
40 +inherit python-single-r1 ${GITECLASS}
41 +unset GITECLASS
42 +
43 +DESCRIPTION="General purpose formula parser & interpreter"
44 +HOMEPAGE="https://gitlab.com/ixion/ixion"
45 +[[ ${PV} == 9999 ]] || SRC_URI="https://kohei.us/files/ixion/src/${P}.tar.xz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0/0.14" # based on SONAME of libixion.so
49 +[[ ${PV} == 9999 ]] || \
50 +KEYWORDS=""
51 +# KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
52 +IUSE="debug python static-libs +threads"
53 +
54 +RDEPEND="
55 + dev-libs/boost:=
56 + python? ( ${PYTHON_DEPS} )
57 +"
58 +DEPEND="${RDEPEND}
59 + >=dev-util/mdds-1.4.1:1=
60 +"
61 +
62 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
63 +
64 +pkg_setup() {
65 + use python && python-single-r1_pkg_setup
66 +}
67 +
68 +src_prepare() {
69 + default
70 + [[ ${PV} == 9999 ]] && eautoreconf
71 +}
72 +
73 +src_configure() {
74 + econf \
75 + $(use_enable debug) \
76 + $(use_enable python) \
77 + $(use_enable static-libs static) \
78 + $(use_enable threads)
79 +}
80 +
81 +src_install() {
82 + default
83 + find "${D}" -name '*.la' -delete || die
84 +}