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