Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/raptor/
Date: Sun, 04 Nov 2018 22:51:12
Message-Id: 1541371844.11b393f0419a86a9eaf0d32c89f0e47608180b17.asturm@gentoo
1 commit: 11b393f0419a86a9eaf0d32c89f0e47608180b17
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 4 22:50:29 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 4 22:50:44 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11b393f0
7
8 media-libs/raptor: Security cleanup
9
10 Bug: https://bugs.gentoo.org/621186
11 Package-Manager: Portage-2.3.51, Repoman-2.3.12
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 media-libs/raptor/Manifest | 1 -
15 media-libs/raptor/raptor-2.0.14.ebuild | 65 ----------------------------------
16 2 files changed, 66 deletions(-)
17
18 diff --git a/media-libs/raptor/Manifest b/media-libs/raptor/Manifest
19 index 2ccc79a470d..d4d6c5b1e63 100644
20 --- a/media-libs/raptor/Manifest
21 +++ b/media-libs/raptor/Manifest
22 @@ -1,2 +1 @@
23 -DIST raptor2-2.0.14.tar.gz 1877454 BLAKE2B 9c427d9184951d7fa385c12eaeffa35b504ddfc887a10d2bfb9cffdb34b8d0d16fd56a1033f57de3096a9bfbf72a7933a6dd4859bbbfdebd671386128318a2a0 SHA512 399e23f2c549df8f1d709d67129d3fcf7899a8cdcdd8071c165f2b4106f397cce05fc69a6d7b176857011bf95723c0909b6510eded12f82217f89925bc1ba7c2
24 DIST raptor2-2.0.15.tar.gz 1886657 BLAKE2B 0a39c7b5705bfbf2daa0ca633f79693953b4dfe24c144008d1646a9840a36d4d7ce153b527450647127ec2522047dbd0a6e71f307ee5656951f7e4b610adfd22 SHA512 563dd01869eb4df8524ec12e2c0a541653874dcd834bd1eb265bc2943bb616968f624121d4688579cdce11b4f00a8ab53b7099f1a0850e256bb0a2c16ba048ee
25
26 diff --git a/media-libs/raptor/raptor-2.0.14.ebuild b/media-libs/raptor/raptor-2.0.14.ebuild
27 deleted file mode 100644
28 index a20cbebcfa8..00000000000
29 --- a/media-libs/raptor/raptor-2.0.14.ebuild
30 +++ /dev/null
31 @@ -1,65 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -inherit eutils libtool
37 -
38 -MY_PN=${PN}2
39 -MY_P=${MY_PN}-${PV}
40 -
41 -DESCRIPTION="The RDF Parser Toolkit"
42 -HOMEPAGE="http://librdf.org/raptor/"
43 -SRC_URI="http://download.librdf.org/source/${MY_P}.tar.gz"
44 -
45 -LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
46 -SLOT="2"
47 -KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
48 -IUSE="+curl debug json static-libs unicode"
49 -
50 -RDEPEND="dev-libs/libxml2
51 - dev-libs/libxslt
52 - curl? ( net-misc/curl )
53 - json? ( dev-libs/yajl )
54 - unicode? ( dev-libs/icu:= )
55 - !media-libs/raptor:0"
56 -DEPEND="${RDEPEND}
57 - >=sys-devel/bison-3
58 - >=sys-devel/flex-2.5.36
59 - virtual/pkgconfig"
60 -
61 -S=${WORKDIR}/${MY_P}
62 -
63 -DOCS="AUTHORS ChangeLog NEWS NOTICE README"
64 -
65 -src_prepare() {
66 - elibtoolize # Keep this for ~*-fbsd
67 -}
68 -
69 -src_configure() {
70 - # FIXME: It should be possible to use net-nntp/inn for libinn.h and -linn!
71 -
72 - local myconf='--with-www=xml'
73 - use curl && myconf='--with-www=curl'
74 -
75 - econf \
76 - $(use_enable static-libs static) \
77 - $(use_enable debug) \
78 - $(use unicode && echo --with-icu-config="${EPREFIX}"/usr/bin/icu-config) \
79 - $(use_with json yajl) \
80 - --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html \
81 - ${myconf}
82 -}
83 -
84 -src_test() {
85 - emake -j1 test
86 -}
87 -
88 -src_install() {
89 - default
90 - dohtml {NEWS,README,RELEASE,UPGRADING}.html
91 - prune_libtool_files --all
92 -
93 - # https://bugs.gentoo.org/467768
94 - local _rdocdir=/usr/share/doc/${PF}/html/${MY_PN}
95 - [[ -d ${ED}/${_rdocdir} ]] && dosym ${_rdocdir} /usr/share/gtk-doc/html/${MY_PN}
96 -}