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/rasqal/
Date: Wed, 03 Oct 2018 22:58:40
Message-Id: 1538606662.bb67834fa0e8fe243c45287e75e2810b93675d34.asturm@gentoo
1 commit: bb67834fa0e8fe243c45287e75e2810b93675d34
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 3 21:51:44 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 3 22:44:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb67834f
7
8 dev-libs/rasqal: Drop 0.9.29
9
10 Closes: https://bugs.gentoo.org/464812
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12 Package-Manager: Portage-2.3.50, Repoman-2.3.11
13
14 dev-libs/rasqal/Manifest | 1 -
15 dev-libs/rasqal/rasqal-0.9.29.ebuild | 72 ------------------------------------
16 2 files changed, 73 deletions(-)
17
18 diff --git a/dev-libs/rasqal/Manifest b/dev-libs/rasqal/Manifest
19 index 82f8214f9b1..d408a528953 100644
20 --- a/dev-libs/rasqal/Manifest
21 +++ b/dev-libs/rasqal/Manifest
22 @@ -1,2 +1 @@
23 -DIST rasqal-0.9.29.tar.gz 1550144 BLAKE2B 205fc4864a86447246d43b52c2defa00b17628c2a6f459dc40b0fa79b42cd306405f31f600d5ad535891d2f79c46970d77f559249d6a22578d9b83e28d2fb46c SHA512 9795e2ffd439157af7d386ef7191fed3c960e88f04e46ec80bf845986841b9fb094219c561144cbe9ada5582264b32eec4850cf8f2258661d09f2df9dbffda4d
24 DIST rasqal-0.9.32.tar.gz 1544623 BLAKE2B c94833d2906fc211d743d63a52478e6acc9f26c7528beb1bea0ec8c365b5d13e6ac85e57b75b920d1ccb5768112d06cf615212c7bf248120671730c5095b3c88 SHA512 071f5ff30a1271bdd747cab7991a34c75f9c0132e81d7662acb13a2e380b98c325a9b2998f6a08a393251623680074a76f58f70bdd93b5c1416779aacc7be428
25
26 diff --git a/dev-libs/rasqal/rasqal-0.9.29.ebuild b/dev-libs/rasqal/rasqal-0.9.29.ebuild
27 deleted file mode 100644
28 index 5851683b32c..00000000000
29 --- a/dev-libs/rasqal/rasqal-0.9.29.ebuild
30 +++ /dev/null
31 @@ -1,72 +0,0 @@
32 -# Copyright 1999-2017 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=4
36 -inherit libtool
37 -
38 -DESCRIPTION="library that handles Resource Description Framework (RDF)"
39 -HOMEPAGE="http://librdf.org/rasqal/"
40 -SRC_URI="http://download.librdf.org/source/${P}.tar.gz"
41 -
42 -LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
43 -SLOT="0"
44 -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
45 -IUSE="+crypt doc gmp kernel_linux +mhash pcre static-libs test xml"
46 -
47 -RDEPEND=">=media-libs/raptor-2.0.7:2
48 - kernel_linux? ( >=sys-apps/util-linux-2.19 )
49 - pcre? ( dev-libs/libpcre )
50 - xml? ( dev-libs/libxml2 )
51 - !gmp? ( dev-libs/mpfr )
52 - gmp? ( dev-libs/gmp )
53 - crypt? (
54 - !mhash? ( dev-libs/libgcrypt:0 )
55 - mhash? ( app-crypt/mhash )
56 - )"
57 -DEPEND="${RDEPEND}
58 - virtual/pkgconfig
59 - sys-devel/flex
60 - test? ( dev-perl/XML-DOM )"
61 -
62 -DOCS=( AUTHORS ChangeLog NEWS README )
63 -
64 -src_prepare() {
65 - sed -i -e '/random_approach/s:==:=:' configure || die #416659
66 - elibtoolize # g/fbsd .so versioning
67 -}
68 -
69 -src_configure() {
70 - # FIXME: From 0.9.27 to .28 --with-random-approach= was introduced, do we
71 - # need a logic for it? Perhaps for dev-libs/gmp?
72 -
73 - local regex=posix
74 - local decimal=mpfr
75 - local digest=internal
76 - local uuid=internal
77 -
78 - use pcre && regex=pcre
79 - use gmp && decimal=gmp
80 - use kernel_linux && uuid=libuuid
81 -
82 - if use crypt; then
83 - digest=gcrypt
84 - use mhash && digest=mhash
85 - fi
86 -
87 - econf \
88 - $(use_enable pcre) \
89 - $(use_enable static-libs static) \
90 - $(use_enable xml xml2) \
91 - --with-regex-library=${regex} \
92 - --with-digest-library=${digest} \
93 - --with-uuid-library=${uuid} \
94 - --with-decimal=${decimal} \
95 - --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
96 -}
97 -
98 -src_install() {
99 - default
100 - dohtml {NEWS,README,RELEASE}.html
101 - use doc || rm -rf "${ED}"/usr/share/doc/${PF}/html/rasqal
102 - find "${ED}" -name '*.la' -exec rm -f '{}' +
103 -}