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/libmwaw/
Date: Wed, 22 Sep 2021 12:00:16
Message-Id: 1632311992.e980bcfebdbdf1b44e7bdb78fc21177a73b0dd9c.asturm@gentoo
1 commit: e980bcfebdbdf1b44e7bdb78fc21177a73b0dd9c
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 22 11:59:34 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 22 11:59:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e980bcfe
7
8 app-text/libmwaw: Drop 0.3.19
9
10 Package-Manager: Portage-3.0.23, Repoman-3.0.3
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-text/libmwaw/Manifest | 1 -
14 app-text/libmwaw/libmwaw-0.3.19.ebuild | 52 ----------------------------------
15 2 files changed, 53 deletions(-)
16
17 diff --git a/app-text/libmwaw/Manifest b/app-text/libmwaw/Manifest
18 index 1ff60daad3d..148a7da2b6c 100644
19 --- a/app-text/libmwaw/Manifest
20 +++ b/app-text/libmwaw/Manifest
21 @@ -1,2 +1 @@
22 -DIST libmwaw-0.3.19.tar.xz 1401720 BLAKE2B 93e63993dd73d52d1b071c44a5efa4ba2495a370a767cd80fbeb437a56224d333781cfdf32c3ca1c0a3794544da6cdf8c967badf98b6858796fbc8f2ea7878c1 SHA512 a5b74f417366f7e8a8303948e678d54caf9c45e0b51694d39593926b2f2fbbaa5dfea5dee8a6b4a656e5ca5bd880f41a76e7b869f55230690740b7ab75a28f1f
23 DIST libmwaw-0.3.20.tar.xz 1425812 BLAKE2B a708ce4a28a0d5a5a5ee9d178c67119189add0180e61d67af6821c509d95b9f8bfb60eeb1afcdf8e2da5bed26053108b12db57db98912d97dc7e0ef0f7121f18 SHA512 d6cd28629b6482dd61e070036e94568ecc44d9064dddd9c699c7362caa8ef36652ce84cf0f199813854636f2e39ab19d47f4e148990822791b88cd3f17f68b3b
24
25 diff --git a/app-text/libmwaw/libmwaw-0.3.19.ebuild b/app-text/libmwaw/libmwaw-0.3.19.ebuild
26 deleted file mode 100644
27 index 4f07691b3c3..00000000000
28 --- a/app-text/libmwaw/libmwaw-0.3.19.ebuild
29 +++ /dev/null
30 @@ -1,52 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -if [[ ${PV} = 9999 ]]; then
37 - EGIT_REPO_URI="https://git.code.sf.net/p/libmwaw/libmwaw"
38 - inherit autotools git-r3
39 -else
40 - SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
41 - KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
42 -fi
43 -
44 -DESCRIPTION="Library parsing many pre-OSX MAC text formats"
45 -HOMEPAGE="https://sourceforge.net/p/libmwaw/wiki/Home/"
46 -
47 -LICENSE="LGPL-2.1"
48 -SLOT="0"
49 -IUSE="doc tools"
50 -
51 -BDEPEND="
52 - sys-devel/libtool
53 - virtual/pkgconfig
54 - doc? ( app-doc/doxygen )
55 -"
56 -DEPEND="
57 - dev-libs/librevenge
58 - sys-libs/zlib
59 -"
60 -RDEPEND="${DEPEND}"
61 -
62 -src_prepare() {
63 - default
64 - [[ ${PV} == 9999 ]] && eautoreconf
65 -}
66 -
67 -src_configure() {
68 - # zip is hard enabled as the zlib is dep on the rdeps anyway
69 - local myeconfargs=(
70 - --enable-zip
71 - --disable-static
72 - --disable-werror
73 - $(use_with doc docs)
74 - $(use_enable tools)
75 - )
76 - econf "${myeconfargs[@]}"
77 -}
78 -
79 -src_install() {
80 - default
81 - find "${D}" -name '*.la' -type f -delete || die
82 -}