Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/raptor: ChangeLog raptor-1.4.21-r1.ebuild
Date: Wed, 16 Nov 2011 18:33:00
Message-Id: 20111116183249.2A0C42004B@flycatcher.gentoo.org
1 ssuominen 11/11/16 18:32:49
2
3 Modified: ChangeLog raptor-1.4.21-r1.ebuild
4 Log:
5 Reduce installed files to minimum in the obsolete raptor1 branch.
6
7 (Portage version: 2.2.0_alpha73/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.113 media-libs/raptor/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.113&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.113&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?r1=1.112&r2=1.113
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v
19 retrieving revision 1.112
20 retrieving revision 1.113
21 diff -u -r1.112 -r1.113
22 --- ChangeLog 16 Nov 2011 18:27:15 -0000 1.112
23 +++ ChangeLog 16 Nov 2011 18:32:49 -0000 1.113
24 @@ -1,6 +1,9 @@
25 # ChangeLog for media-libs/raptor
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.112 2011/11/16 18:27:15 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.113 2011/11/16 18:32:49 ssuominen Exp $
29 +
30 + 16 Nov 2011; Samuli Suominen <ssuominen@g.o> raptor-1.4.21-r1.ebuild:
31 + Reduce installed files to minimum in the obsolete raptor1 branch.
32
33 *raptor-2.0.5 (16 Nov 2011)
34
35
36
37
38 1.15 media-libs/raptor/raptor-1.4.21-r1.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-1.4.21-r1.ebuild?rev=1.15&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-1.4.21-r1.ebuild?rev=1.15&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-1.4.21-r1.ebuild?r1=1.14&r2=1.15
43
44 Index: raptor-1.4.21-r1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-1.4.21-r1.ebuild,v
47 retrieving revision 1.14
48 retrieving revision 1.15
49 diff -u -r1.14 -r1.15
50 --- raptor-1.4.21-r1.ebuild 13 Aug 2011 17:22:53 -0000 1.14
51 +++ raptor-1.4.21-r1.ebuild 16 Nov 2011 18:32:49 -0000 1.15
52 @@ -1,8 +1,8 @@
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-1.4.21-r1.ebuild,v 1.14 2011/08/13 17:22:53 maekke Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-1.4.21-r1.ebuild,v 1.15 2011/11/16 18:32:49 ssuominen Exp $
57
58 -EAPI=3
59 +EAPI=4
60 inherit eutils libtool
61
62 DESCRIPTION="The RDF Parser Toolkit"
63 @@ -52,16 +52,16 @@
64 $(use_enable static-libs static) \
65 $(use_enable unicode nfc-check) \
66 $(use_enable debug) \
67 - --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html \
68 ${myconf}
69 }
70
71 src_install() {
72 - emake DESTDIR="${D}" install || die
73 - dodoc AUTHORS ChangeLog NEWS NOTICE README
74 - dohtml {NEWS,README,RELEASE}.html
75 - find "${ED}" -name '*.la' -exec rm -f '{}' +
76 + emake DESTDIR="${D}" install
77
78 - # Fix file collision with SLOT="2"
79 - rm -f "${ED}"/usr/bin/rapper "${ED}"/usr/share/man/man1/rapper.1*
80 + find "${ED}" -name '*.la' -exec rm -f {} +
81 +
82 + # Reduce installation of obsolete raptor1 to only mandatory files
83 + rm -rf \
84 + "${ED}"usr/bin/rapper \
85 + "${ED}"usr/share
86 }