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/libetonyek/files/, app-text/libetonyek/
Date: Thu, 10 Jun 2021 15:34:58
Message-Id: 1623339138.38c0862b0b5d6822c569df3d537e2a43975fe88e.asturm@gentoo
1 commit: 38c0862b0b5d6822c569df3d537e2a43975fe88e
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 6 17:02:02 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 10 15:32:18 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38c0862b
7
8 app-text/libetonyek: Drop 0.1.9-r1
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-text/libetonyek/Manifest | 1 -
14 .../files/libetonyek-0.1.9-boost-1.73.patch | 12 ----
15 app-text/libetonyek/libetonyek-0.1.9-r1.ebuild | 66 ----------------------
16 3 files changed, 79 deletions(-)
17
18 diff --git a/app-text/libetonyek/Manifest b/app-text/libetonyek/Manifest
19 index 475aa43f70d..710f9294bb5 100644
20 --- a/app-text/libetonyek/Manifest
21 +++ b/app-text/libetonyek/Manifest
22 @@ -1,2 +1 @@
23 DIST libetonyek-0.1.10.tar.xz 1494000 BLAKE2B 1c47b410050380d134d96b5551f0c9186c24aa0ea52c801e26655e3013f030e92198d8e3f19e8a341744206eeaad2d10ca130f286fd42c8a9c3b56f773cfa7d5 SHA512 516a14fcb7b7b5898484a4263d593a036ac728b90144da9d1c22a5d0fdffc879839e19a7b390f99d924c390d433e64433fb08939b1e04ca24359315571c5772b
24 -DIST libetonyek-0.1.9.tar.xz 1477064 BLAKE2B 088d27c83d4aff41cb208cf840def78e323f378a1b7d456448db3abf51d1e850c8159ace75c8836958b533c2b84e583d5a622e638081230d2f862f6d1d175e98 SHA512 3f439b369d450bb1a4bdb3fe92023bda234b323cf676570f1738318c56867a97910f536280b9b164c3fdaa423a3ee669c935df75a5c700bc1530ea5b9a00391e
25
26 diff --git a/app-text/libetonyek/files/libetonyek-0.1.9-boost-1.73.patch b/app-text/libetonyek/files/libetonyek-0.1.9-boost-1.73.patch
27 deleted file mode 100644
28 index 2992f9f1add..00000000000
29 --- a/app-text/libetonyek/files/libetonyek-0.1.9-boost-1.73.patch
30 +++ /dev/null
31 @@ -1,12 +0,0 @@
32 -diff --git a/src/lib/NUM3Parser.cpp b/src/lib/NUM3Parser.cpp
33 -index 6dc0e9a..6f8e79e 100644
34 ---- a/src/lib/NUM3Parser.cpp
35 -+++ b/src/lib/NUM3Parser.cpp
36 -@@ -7,6 +7,7 @@
37 - * file, You can obtain one at http://mozilla.org/MPL/2.0/.
38 - */
39 -
40 -+#include <algorithm>
41 - #include <functional>
42 -
43 - #include "NUM3Parser.h"
44 \ No newline at end of file
45
46 diff --git a/app-text/libetonyek/libetonyek-0.1.9-r1.ebuild b/app-text/libetonyek/libetonyek-0.1.9-r1.ebuild
47 deleted file mode 100644
48 index 66621ce15c8..00000000000
49 --- a/app-text/libetonyek/libetonyek-0.1.9-r1.ebuild
50 +++ /dev/null
51 @@ -1,66 +0,0 @@
52 -# Copyright 1999-2020 Gentoo Authors
53 -# Distributed under the terms of the GNU General Public License v2
54 -
55 -EAPI=7
56 -
57 -if [[ ${PV} == *9999 ]]; then
58 - EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libetonyek.git"
59 - inherit autotools git-r3
60 -else
61 - SRC_URI="https://dev-www.libreoffice.org/src/libetonyek/${P}.tar.xz"
62 - KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
63 -fi
64 -DESCRIPTION="Library parsing Apple Keynote presentations"
65 -HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek"
66 -
67 -LICENSE="|| ( GPL-2+ LGPL-2.1 MPL-1.1 )"
68 -SLOT="0"
69 -IUSE="doc static-libs test"
70 -RESTRICT="!test? ( test )"
71 -
72 -BDEPEND="
73 - virtual/pkgconfig
74 - doc? ( app-doc/doxygen )
75 -"
76 -RDEPEND="
77 - app-text/liblangtag
78 - dev-libs/librevenge
79 - dev-libs/libxml2
80 - >=dev-util/mdds-1.4.3:1=
81 - sys-libs/zlib
82 -"
83 -DEPEND="${RDEPEND}
84 - dev-libs/boost
85 - media-libs/glm
86 - sys-devel/libtool
87 - test? ( dev-util/cppunit )
88 -"
89 -
90 -PATCHES=( "${FILESDIR}/${P}-boost-1.73.patch" ) # bug 722042
91 -
92 -src_prepare() {
93 - default
94 - [[ -d m4 ]] || mkdir "m4"
95 - [[ ${PV} == *9999 ]] && eautoreconf
96 -}
97 -
98 -src_configure() {
99 - local myeconfargs=(
100 - --disable-werror
101 - $(use_with doc docs)
102 - $(use_enable static-libs static)
103 - $(use_enable test tests)
104 - )
105 - if has_version ">=dev-util/mdds-1.5"; then
106 - myeconfargs+=( --with-mdds=1.5 )
107 - else
108 - myeconfargs+=( --with-mdds=1.4 )
109 - fi
110 -
111 - econf "${myeconfargs[@]}"
112 -}
113 -
114 -src_install() {
115 - default
116 - find "${D}" -name '*.la' -type f -delete || die
117 -}