Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/serd/
Date: Wed, 28 Sep 2022 04:40:17
Message-Id: 1664340005.d26e894b974784a8d80a26e0ae43c328e1df1d68.fordfrog@gentoo
1 commit: d26e894b974784a8d80a26e0ae43c328e1df1d68
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 28 04:40:05 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 28 04:40:05 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d26e894b
7
8 dev-libs/serd: dropped obsolete 0.30.12
9
10 Bug: https://bugs.gentoo.org/873109
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 dev-libs/serd/Manifest | 1 -
14 dev-libs/serd/serd-0.30.12.ebuild | 59 ---------------------------------------
15 2 files changed, 60 deletions(-)
16
17 diff --git a/dev-libs/serd/Manifest b/dev-libs/serd/Manifest
18 index 00f147abb5fe..54c70923eabd 100644
19 --- a/dev-libs/serd/Manifest
20 +++ b/dev-libs/serd/Manifest
21 @@ -1,2 +1 @@
22 -DIST serd-0.30.12.tar.bz2 594475 BLAKE2B acd065613494f05d1b2016c2097c1efbd1ebe3a5b901fac3a60d27140fee5c51ec17314df7ac2d3ad89d852dcb016dcf7255271f506f900445ce275335ed7d01 SHA512 c330648eb2c947a6d220f42d0af63fd2744da496301483e58be3cda387da166711d6acd5cee2df8cbb837ab450e1802b3f9a0a2973e5ad6d976b69b863aecb7f
23 DIST serd-0.30.14.tar.xz 168728 BLAKE2B 42ed92e8eed3564c2625dd2f8e9bff55b65d1c8c993f13f2aa7ea0ab41a4c261b6b8fe9d4c61a915157616df1dba11d37f3813cd7bf7cd4571cb535895cb8f9c SHA512 d753bf60d4ff37220e64fda6a5dc6c69dc1a52ef435ab5b1e698f72dc5a7280ea764bb53b015753c3dc0910f252ca96c0ebafcb902a9956fcbf0a4480ce4e1dc
24
25 diff --git a/dev-libs/serd/serd-0.30.12.ebuild b/dev-libs/serd/serd-0.30.12.ebuild
26 deleted file mode 100644
27 index 90054bba64d6..000000000000
28 --- a/dev-libs/serd/serd-0.30.12.ebuild
29 +++ /dev/null
30 @@ -1,59 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{8..11} )
37 -PYTHON_REQ_USE='threads(+)'
38 -inherit python-any-r1 waf-utils multilib-build multilib-minimal
39 -
40 -DESCRIPTION="Library for RDF syntax which supports reading and writing Turtle and NTriples"
41 -HOMEPAGE="http://drobilla.net/software/serd/"
42 -SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
43 -
44 -LICENSE="ISC"
45 -SLOT="0"
46 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
47 -IUSE="doc static-libs test"
48 -RESTRICT="!test? ( test )"
49 -
50 -BDEPEND="
51 - doc? (
52 - app-doc/doxygen
53 - dev-python/sphinx
54 - dev-python/sphinx_lv2_theme
55 -)
56 -"
57 -RDEPEND=""
58 -DEPEND="${RDEPEND}
59 - ${PYTHON_DEPS}
60 -"
61 -DOCS=( "AUTHORS" "NEWS" "README.md" )
62 -
63 -src_prepare() {
64 - sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die
65 - default
66 - multilib_copy_sources
67 -}
68 -
69 -multilib_src_configure() {
70 - waf-utils_src_configure \
71 - --docdir=/usr/share/doc/${PF} \
72 - $(multilib_native_usex doc --docs "") \
73 - $(usex test --test "") \
74 - $(usex static-libs --static "")
75 -}
76 -
77 -multilib_src_test() {
78 - ./waf test || die
79 -}
80 -
81 -multilib_src_compile() {
82 - waf-utils_src_compile
83 - default
84 -}
85 -
86 -multilib_src_install() {
87 - waf-utils_src_install
88 - default
89 -}