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/libspectre/
Date: Mon, 27 Feb 2023 18:43:04
Message-Id: 1677523353.233dded3ba90d75b287ae088534a1b4409dd702e.asturm@gentoo
1 commit: 233dded3ba90d75b287ae088534a1b4409dd702e
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 27 18:37:21 2023 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 27 18:42:33 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=233dded3
7
8 app-text/libspectre: drop 0.2.10
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 app-text/libspectre/Manifest | 1 -
13 app-text/libspectre/libspectre-0.2.10.ebuild | 46 ----------------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/app-text/libspectre/Manifest b/app-text/libspectre/Manifest
17 index f9f9ef82da0e..83a532983584 100644
18 --- a/app-text/libspectre/Manifest
19 +++ b/app-text/libspectre/Manifest
20 @@ -1,2 +1 @@
21 -DIST libspectre-0.2.10.tar.gz 436690 BLAKE2B 8c1d25225a212b7e8d2bab7cffa4298509450cf727e38d0be22d27ed5fb161a0f838967afa3f8aa265c2bd243431bbfb92976cf51ee52ee7d3b0479000215546 SHA512 01738f452f99878beaa528b15d8df463ca22d625306d636e1a6199ade9f068d284f1def3882e954a06e5f066937343f79d0c2197fbb19ab53ef1ab0540c72f2f
22 DIST libspectre-0.2.11.tar.gz 435887 BLAKE2B 46e289553dafe520c76a779ce64f8f5e320541221d885e5707284dd6d89ace7985a0a658fcf26c5ea750fd2751dd2bab0913333cda563ab5ee29c4132f8c99a5 SHA512 97335bc927006031fad8be55befae44bec33347f058f5b1fcf828a8a8d45a6fae2d51ceae4aaffcfa563c7592fdffe1e5a4993f145d6832ec81019c00ae0e37f
23
24 diff --git a/app-text/libspectre/libspectre-0.2.10.ebuild b/app-text/libspectre/libspectre-0.2.10.ebuild
25 deleted file mode 100644
26 index 50aad4538d17..000000000000
27 --- a/app-text/libspectre/libspectre-0.2.10.ebuild
28 +++ /dev/null
29 @@ -1,46 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DESCRIPTION="Library for rendering Postscript documents"
36 -HOMEPAGE="https://www.freedesktop.org/wiki/Software/libspectre"
37 -SRC_URI="https://libspectre.freedesktop.org/releases/${P}.tar.gz"
38 -
39 -LICENSE="GPL-2"
40 -SLOT="0"
41 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-solaris"
42 -IUSE="debug doc"
43 -
44 -BDEPEND="
45 - virtual/pkgconfig
46 - doc? ( app-doc/doxygen )
47 -"
48 -RDEPEND=">=app-text/ghostscript-gpl-9.53.0:="
49 -DEPEND="${RDEPEND}"
50 -
51 -# does not actually test anything, see bug 362557
52 -RESTRICT="test"
53 -
54 -src_configure() {
55 - local myeconfargs=(
56 - $(use_enable debug asserts)
57 - $(use_enable debug checks)
58 - --disable-static
59 - --disable-test
60 - )
61 - econf "${myeconfargs[@]}"
62 -}
63 -
64 -src_compile() {
65 - emake
66 - if use doc; then
67 - doxygen || die
68 - fi
69 -}
70 -
71 -src_install() {
72 - use doc && local HTML_DOCS=( doc/html/. )
73 - default
74 - find "${D}" -name '*.la' -type f -delete || die
75 -}