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/libwpd/
Date: Wed, 02 Aug 2017 06:31:43
Message-Id: 1501655474.12d2bbc3b1e63a0a0683f67789b5f12a28acc0f2.asturm@gentoo
1 commit: 12d2bbc3b1e63a0a0683f67789b5f12a28acc0f2
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 30 20:44:03 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 2 06:31:14 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12d2bbc3
7
8 app-text/libwpd: Drop old
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 app-text/libwpd/Manifest | 1 -
13 app-text/libwpd/libwpd-0.9.9.ebuild | 55 -------------------------------------
14 2 files changed, 56 deletions(-)
15
16 diff --git a/app-text/libwpd/Manifest b/app-text/libwpd/Manifest
17 index c76ef36d937..ac2fd59c9a9 100644
18 --- a/app-text/libwpd/Manifest
19 +++ b/app-text/libwpd/Manifest
20 @@ -1,2 +1 @@
21 DIST libwpd-0.10.1.tar.xz 524004 SHA256 09d3410bc770f9d9eedc8544b5c211771ea3322de3fee19b58ad7d40fb2984f6 SHA512 976694b5e02fd9eb0b3769d5071e9ae88505f491d8fa34473e5b99cd350060a85ddfad9b3c38e9b37a280e695e4571d353fd69fe7b69a627097587912b58ad2c WHIRLPOOL c6c1124a7124edda4dad6788794c46067ad21c8fde0765ff1b1ca6305c08139e86ac0667d6fd6ca53e4bed41ad0b7aa6b4803fad5f7f72c529cf0c3b22bc7b43
22 -DIST libwpd-0.9.9.tar.xz 541608 SHA256 b91df4ca0ef0f456be9531c9ee07cf6a5e50a16b52002abb99e8ebef13fac2b2 SHA512 a71b4990670446270518e1318066e714c02c4a0752fba0be03037ea7bd434c5dd0219d61687448faabf7e31bc40e4e4a9d4b67d01fd362dae96322db513d79ac WHIRLPOOL c51155a0a88047abe856d0a83b05721b1629c4e5c24e68de65905ce8c735fd0144290c2739971d0118dfcf24eff47aea0f6b8b260c7eaa9af2a36cf8325d3c0a
23
24 diff --git a/app-text/libwpd/libwpd-0.9.9.ebuild b/app-text/libwpd/libwpd-0.9.9.ebuild
25 deleted file mode 100644
26 index 5d8dc55a009..00000000000
27 --- a/app-text/libwpd/libwpd-0.9.9.ebuild
28 +++ /dev/null
29 @@ -1,55 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -inherit alternatives eutils
36 -
37 -DESCRIPTION="WordPerfect Document import/export library"
38 -HOMEPAGE="http://libwpd.sf.net"
39 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
40 -
41 -LICENSE="|| ( LGPL-2.1 MPL-2.0 )"
42 -SLOT="0.9"
43 -KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
44 -IUSE="doc test +tools"
45 -
46 -RDEPEND=""
47 -DEPEND="${RDEPEND}
48 - virtual/pkgconfig
49 - doc? ( app-doc/doxygen )
50 - test? ( dev-util/cppunit )
51 -"
52 -RDEPEND="${RDEPEND}
53 - !<app-text/libwpd-0.8.14-r1"
54 -
55 -src_configure() {
56 - econf \
57 - --disable-static \
58 - --disable-werror \
59 - $(use_with doc docs) \
60 - $(use_with tools stream) \
61 - --docdir="${EPREFIX}"/usr/share/doc/${PF} \
62 - --program-suffix=-${SLOT}
63 -}
64 -
65 -src_install() {
66 - default
67 - prune_libtool_files --all
68 -}
69 -
70 -pkg_postinst() {
71 - if use tools; then
72 - alternatives_auto_makesym /usr/bin/wpd2html "/usr/bin/wpd2html-[0-9].[0-9]"
73 - alternatives_auto_makesym /usr/bin/wpd2raw "/usr/bin/wpd2raw-[0-9].[0-9]"
74 - alternatives_auto_makesym /usr/bin/wpd2text "/usr/bin/wpd2text-[0-9].[0-9]"
75 - fi
76 -}
77 -
78 -pkg_postrm() {
79 - if use tools; then
80 - alternatives_auto_makesym /usr/bin/wpd2html "/usr/bin/wpd2html-[0-9].[0-9]"
81 - alternatives_auto_makesym /usr/bin/wpd2raw "/usr/bin/wpd2raw-[0-9].[0-9]"
82 - alternatives_auto_makesym /usr/bin/wpd2text "/usr/bin/wpd2text-[0-9].[0-9]"
83 - fi
84 -}