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/, app-text/libmwaw/files/
Date: Wed, 29 Aug 2018 10:49:55
Message-Id: 1535539778.265e738ca30aa6d0749d2cb508891ca81bf83f6c.asturm@gentoo
1 commit: 265e738ca30aa6d0749d2cb508891ca81bf83f6c
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 29 08:43:15 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 29 10:49:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=265e738c
7
8 app-text/libmwaw: Drop 0.3.13
9
10 Package-Manager: Portage-2.3.48, Repoman-2.3.10
11
12 app-text/libmwaw/Manifest | 1 -
13 .../libmwaw/files/libmwaw-0.3.13-buildfix.patch | 19 --------
14 app-text/libmwaw/libmwaw-0.3.13.ebuild | 51 ----------------------
15 3 files changed, 71 deletions(-)
16
17 diff --git a/app-text/libmwaw/Manifest b/app-text/libmwaw/Manifest
18 index c21376e0610..9bcbbf81b78 100644
19 --- a/app-text/libmwaw/Manifest
20 +++ b/app-text/libmwaw/Manifest
21 @@ -1,2 +1 @@
22 -DIST libmwaw-0.3.13.tar.xz 1258220 BLAKE2B 79cb4d8a91d361ceae70fa7a0145fa9f5e230bbafba1b0a586b10a1375e34511769d2a5d6b8ba9b6b9676a3cffc9ae6d22529a1920ed4bf932ef7e88ca7bae0c SHA512 3d6a5142cc45f6519ac29f935c01418278ed4cc1bdcb0ecb1a190309c43d3f7ee06deab519d29a3e2aec01ef091cb4f4c17809662640b54a8e4fe8d4bd8db5f3
23 DIST libmwaw-0.3.14.tar.xz 1276240 BLAKE2B 34a5b118064dcac37834c83b2b5a61303f3e2eb70e41322845ff7661a5494c0b85db0bb07c6bf1f357c2027cab1c515eade58bb6b4fdf845a81d4d079a414b98 SHA512 6893a7a8a72765a66973a94bc7de8b3b6061aa85fd9cca5e73cb2a4024cbe81f0c030df0b6383f24835643259c361efda5527813bb84a1b08d0089d509215888
24
25 diff --git a/app-text/libmwaw/files/libmwaw-0.3.13-buildfix.patch b/app-text/libmwaw/files/libmwaw-0.3.13-buildfix.patch
26 deleted file mode 100644
27 index 5c9940e8860..00000000000
28 --- a/app-text/libmwaw/files/libmwaw-0.3.13-buildfix.patch
29 +++ /dev/null
30 @@ -1,19 +0,0 @@
31 -commit 4bc8ec0481f89b989b0c34236c9d5d9b8038d4a9
32 -Author: David Tardon <dtardon@××××××.com>
33 -Date: Wed Nov 15 13:15:44 2017 +0100
34 -
35 - fix call of explicit ctor
36 -
37 -diff --git a/src/lib/libmwaw_internal.hxx b/src/lib/libmwaw_internal.hxx
38 -index 2875a0fb..b844a9d5 100644
39 ---- a/src/lib/libmwaw_internal.hxx
40 -+++ b/src/lib/libmwaw_internal.hxx
41 -@@ -1027,7 +1027,7 @@ public:
42 - }
43 - //! generic constructor
44 - template <class U> explicit MWAWBox2(MWAWBox2<U> const &p)
45 -- : m_data(p.min(), p.max())
46 -+ : m_data(MWAWVec2<T>(p.min()), MWAWVec2<T>(p.max()))
47 - {
48 - }
49 -
50
51 diff --git a/app-text/libmwaw/libmwaw-0.3.13.ebuild b/app-text/libmwaw/libmwaw-0.3.13.ebuild
52 deleted file mode 100644
53 index 7fe40d2eb2b..00000000000
54 --- a/app-text/libmwaw/libmwaw-0.3.13.ebuild
55 +++ /dev/null
56 @@ -1,51 +0,0 @@
57 -# Copyright 1999-2017 Gentoo Foundation
58 -# Distributed under the terms of the GNU General Public License v2
59 -
60 -EAPI=6
61 -
62 -EGIT_REPO_URI="git://git.code.sf.net/p/libmwaw/libmwaw"
63 -[[ ${PV} == 9999 ]] && inherit autotools git-r3
64 -
65 -DESCRIPTION="Library parsing many pre-OSX MAC text formats"
66 -HOMEPAGE="https://sourceforge.net/p/libmwaw/wiki/Home/"
67 -[[ ${PV} == 9999 ]] || SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
68 -
69 -LICENSE="LGPL-2.1"
70 -SLOT="0"
71 -
72 -[[ ${PV} == 9999 ]] || \
73 -KEYWORDS="amd64 ~arm ~arm64 x86"
74 -
75 -IUSE="doc static-libs tools"
76 -
77 -RDEPEND="
78 - dev-libs/librevenge
79 - sys-libs/zlib
80 -"
81 -DEPEND="${RDEPEND}
82 - sys-devel/libtool
83 - virtual/pkgconfig
84 - doc? ( app-doc/doxygen )
85 -"
86 -
87 -PATCHES=( "${FILESDIR}/${P}-buildfix.patch" )
88 -
89 -src_prepare() {
90 - default
91 - [[ ${PV} == 9999 ]] && eautoreconf
92 -}
93 -
94 -src_configure() {
95 - # zip is hard enabled as the zlib is dep on the rdeps anyway
96 - econf \
97 - --enable-zip \
98 - --disable-werror \
99 - $(use_with doc docs) \
100 - $(use_enable static-libs static) \
101 - $(use_enable tools)
102 -}
103 -
104 -src_install() {
105 - default
106 - find "${D}" -name '*.la' -delete || die
107 -}