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