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: Fri, 04 Nov 2022 07:18:53
Message-Id: 1667546323.15daa3b7548fffc46ae79eb6b190c8d1e6acdcf2.fordfrog@gentoo
1 commit: 15daa3b7548fffc46ae79eb6b190c8d1e6acdcf2
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 4 07:18:43 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 4 07:18:43 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15daa3b7
7
8 dev-libs/serd: dropped obsolete 0.30.14-r1
9
10 Bug: https://bugs.gentoo.org/879119
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 dev-libs/serd/Manifest | 1 -
14 dev-libs/serd/serd-0.30.14-r1.ebuild | 47 ------------------------------------
15 2 files changed, 48 deletions(-)
16
17 diff --git a/dev-libs/serd/Manifest b/dev-libs/serd/Manifest
18 index 72f7a5749eac..3cd710c0523b 100644
19 --- a/dev-libs/serd/Manifest
20 +++ b/dev-libs/serd/Manifest
21 @@ -1,2 +1 @@
22 -DIST serd-0.30.14.tar.xz 168728 BLAKE2B 42ed92e8eed3564c2625dd2f8e9bff55b65d1c8c993f13f2aa7ea0ab41a4c261b6b8fe9d4c61a915157616df1dba11d37f3813cd7bf7cd4571cb535895cb8f9c SHA512 d753bf60d4ff37220e64fda6a5dc6c69dc1a52ef435ab5b1e698f72dc5a7280ea764bb53b015753c3dc0910f252ca96c0ebafcb902a9956fcbf0a4480ce4e1dc
23 DIST serd-0.30.16.tar.xz 173932 BLAKE2B 0021125505bf23565a1cca24dc83eff3496fc11fe6b38dc07b68d800c7bd6a854923bc7c529161b659bd80cb7aa8c3b45e767f0841b57d4803d820e0016e2ed2 SHA512 1bc2e310027d52ea675aa261b52e89c4c1ccb622fa9fef11c874876de7821fe94672918ff58b9edcc7995daa70fc88b7ceb88fae61dd40f601285de1995b39ff
24
25 diff --git a/dev-libs/serd/serd-0.30.14-r1.ebuild b/dev-libs/serd/serd-0.30.14-r1.ebuild
26 deleted file mode 100644
27 index 9564556bf0fc..000000000000
28 --- a/dev-libs/serd/serd-0.30.14-r1.ebuild
29 +++ /dev/null
30 @@ -1,47 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -inherit meson-multilib
37 -
38 -DESCRIPTION="Library for RDF syntax which supports reading and writing Turtle and NTriples"
39 -HOMEPAGE="https://drobilla.net/software/serd.html"
40 -SRC_URI="https://download.drobilla.net/${P}.tar.xz"
41 -
42 -LICENSE="ISC"
43 -SLOT="0"
44 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
45 -IUSE="doc static-libs test +tools"
46 -RESTRICT="!test? ( test )"
47 -
48 -BDEPEND="
49 - doc? (
50 - app-doc/doxygen
51 - dev-python/sphinx
52 - dev-python/sphinx_lv2_theme
53 -)
54 -"
55 -
56 -src_prepare() {
57 - default
58 -
59 - # fix doc installation path
60 - sed -i "s/versioned_name/'${PF}'/g" doc/c/meson.build || die
61 -}
62 -
63 -multilib_src_configure() {
64 - local emesonargs=(
65 - $(meson_native_use_feature doc docs)
66 - $(meson_use static-libs static)
67 - $(meson_feature test tests)
68 - $(meson_feature tools)
69 - )
70 -
71 - meson_src_configure
72 -}
73 -
74 -multilib_src_install_all() {
75 - local DOCS=( AUTHORS NEWS README.md )
76 - einstalldocs
77 -}