Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libwpg/
Date: Sun, 19 Nov 2017 23:49:40
Message-Id: 1511135356.5655e9c747b3f967bac53923049cc9841c573459.asturm@gentoo
1 commit: 5655e9c747b3f967bac53923049cc9841c573459
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 19 23:22:31 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 19 23:49:16 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5655e9c7
7
8 app-text/libwpg: Drop old
9
10 Package-Manager: Portage-2.3.14, Repoman-2.3.6
11
12 app-text/libwpg/Manifest | 1 -
13 app-text/libwpg/libwpg-0.3.1.ebuild | 48 -------------------------------------
14 2 files changed, 49 deletions(-)
15
16 diff --git a/app-text/libwpg/Manifest b/app-text/libwpg/Manifest
17 index 7fdd1034327..481e7cd7ba5 100644
18 --- a/app-text/libwpg/Manifest
19 +++ b/app-text/libwpg/Manifest
20 @@ -1,2 +1 @@
21 -DIST libwpg-0.3.1.tar.xz 316576 SHA256 620d888c10d7e1127d5123ff0065f1b62b86b91bac27d8ae10dcfbdb6bf4278f SHA512 5222609510857d32250e25b1108ecf4c0ce1e58fba280b7c15d400bc8963112adaa9fffa3c21087d4984ec52176d69b30bfc9460ffef978d6b0d7ccc400063b2 WHIRLPOOL c35c51b5098757a0de9a1288d185708775d4ecc2b69ad76e818df5308ec1cbcb870552d45edfe011f65aff141e12656bf98a8ce5207fc0f12ecbc9c705afb3e2
22 DIST libwpg-0.3.2.tar.xz 326840 SHA256 57faf1ab97d63d57383ac5d7875e992a3d190436732f4083310c0471e72f8c33 SHA512 f3f76a17056274b2dfd11ce4eb451411d8458b00b3f7be4fae0a932a382f247adbaae1f4f8f6005e7b84f063e415ef5ab609015ba32f779c6ab2f0404b275f3f WHIRLPOOL 492ebc20d136ccd2525c9e1b1ac5613dc6dc74df140c1e190defa22fa5fdb2c04765c5121764c0452087ac9038446384634e61d04512046c22784c523791d911
23
24 diff --git a/app-text/libwpg/libwpg-0.3.1.ebuild b/app-text/libwpg/libwpg-0.3.1.ebuild
25 deleted file mode 100644
26 index 46042da2314..00000000000
27 --- a/app-text/libwpg/libwpg-0.3.1.ebuild
28 +++ /dev/null
29 @@ -1,48 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit alternatives
36 -
37 -DESCRIPTION="C++ library to read and parse graphics in WPG"
38 -HOMEPAGE="http://libwpg.sourceforge.net/libwpg.htm"
39 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
40 -
41 -LICENSE="|| ( LGPL-2.1 MPL-2.0 )"
42 -SLOT="0.3"
43 -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips x86"
44 -IUSE="doc static-libs"
45 -
46 -RDEPEND="
47 - app-text/libwpd:0.10[tools]
48 - dev-libs/librevenge
49 -"
50 -DEPEND="${RDEPEND}
51 - virtual/pkgconfig
52 - doc? ( app-doc/doxygen )"
53 -
54 -src_configure() {
55 - econf \
56 - --disable-werror \
57 - --program-suffix=-${SLOT} \
58 - $(use_with doc docs) \
59 - $(use_enable static-libs static)
60 -}
61 -
62 -src_install() {
63 - default
64 - find "${D}" -name '*.la' -delete || die
65 -}
66 -
67 -pkg_postinst() {
68 - alternatives_auto_makesym /usr/bin/wpg2svgbatch.pl "/usr/bin/wpg2svgbatch.pl-[0-9].[0-9]"
69 - alternatives_auto_makesym /usr/bin/wpg2svg "/usr/bin/wpg2svg-[0-9].[0-9]"
70 - alternatives_auto_makesym /usr/bin/wpg2raw "/usr/bin/wpg2raw-[0-9].[0-9]"
71 -}
72 -
73 -pkg_postrm() {
74 - alternatives_auto_makesym /usr/bin/wpg2svgbatch.pl "/usr/bin/wpg2svgbatch.pl-[0-9].[0-9]"
75 - alternatives_auto_makesym /usr/bin/wpg2svg "/usr/bin/wpg2svg-[0-9].[0-9]"
76 - alternatives_auto_makesym /usr/bin/wpg2raw "/usr/bin/wpg2raw-[0-9].[0-9]"
77 -}