Gentoo Archives: gentoo-commits

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