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, 29 Jun 2022 18:15:14
Message-Id: 1656526507.099062ecc95ac1bc7ee57f1db931a177fd6669dc.fordfrog@gentoo
1 commit: 099062ecc95ac1bc7ee57f1db931a177fd6669dc
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 18:14:11 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 18:15:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=099062ec
7
8 media-libs/sratom: dropped obsolete 0.6.8
9
10 Bug: https://bugs.gentoo.org/854975
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-libs/sratom/Manifest | 1 -
14 media-libs/sratom/sratom-0.6.8.ebuild | 64 -----------------------------------
15 2 files changed, 65 deletions(-)
16
17 diff --git a/media-libs/sratom/Manifest b/media-libs/sratom/Manifest
18 index ef3ac4a725bb..d57e387a4fcd 100644
19 --- a/media-libs/sratom/Manifest
20 +++ b/media-libs/sratom/Manifest
21 @@ -1,2 +1 @@
22 DIST sratom-0.6.10.tar.bz2 327047 BLAKE2B 6205a0269216099556556cd251649eba58fdf1a2c8a80611367f3b9564fe410ed7ff1c565ab7b628743fa99ca893eb7a86fed631872eff86e19de9ba534fae49 SHA512 cc5d2848d61de45a37d1f844b2c741016decf065bcac975214dd01108171ba332f0a51526f2f1078d5f501055af0a48716704515cbe7a9f73526fd878621ca4b
23 -DIST sratom-0.6.8.tar.bz2 327027 BLAKE2B 8e11e03e6a66e9c96f90a0f31f4a65c660ed44304600caa2daad09b955a4829b266f7495b8ed85c62c34adfbc3e7f97790096bd721b51e1038986ac2e3926e60 SHA512 49ec4b230a72005ab7a7a3de0bfa630a27a16f9f811ca8e7f6da7fcf6b34526577217075d428a993f95b813dd2a82a9b6892eeb2e36b66b122ada778fbb3fb95
24
25 diff --git a/media-libs/sratom/sratom-0.6.8.ebuild b/media-libs/sratom/sratom-0.6.8.ebuild
26 deleted file mode 100644
27 index 98534de316d6..000000000000
28 --- a/media-libs/sratom/sratom-0.6.8.ebuild
29 +++ /dev/null
30 @@ -1,64 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -PYTHON_REQ_USE='threads(+)'
38 -inherit python-any-r1 waf-utils multilib-build multilib-minimal
39 -
40 -DESCRIPTION="Library for serialising LV2 atoms to/from RDF, particularly the Turtle syntax"
41 -HOMEPAGE="http://drobilla.net/software/sratom/"
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 - virtual/pkgconfig
52 - doc? (
53 - app-doc/doxygen
54 - dev-python/sphinx
55 - dev-python/sphinx_lv2_theme
56 -)
57 -"
58 -RDEPEND="
59 - dev-libs/serd
60 - dev-libs/sord
61 - media-libs/lv2
62 -"
63 -DEPEND="${RDEPEND}
64 - ${PYTHON_DEPS}
65 -"
66 -DOCS=( "NEWS" "README.md" )
67 -
68 -src_prepare() {
69 - sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die
70 - default
71 - multilib_copy_sources
72 -}
73 -
74 -multilib_src_configure() {
75 - waf-utils_src_configure \
76 - --docdir=/usr/share/doc/${PF} \
77 - $(multilib_native_usex doc --docs "") \
78 - $(usex test --test "") \
79 - $(usex static-libs --static "")
80 -}
81 -
82 -multilib_src_test() {
83 - ./waf test || die
84 -}
85 -
86 -multilib_src_compile() {
87 - waf-utils_src_compile
88 - default
89 -}
90 -
91 -multilib_src_install() {
92 - waf-utils_src_install
93 - default
94 -}