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, 09 Oct 2020 12:05:58
Message-Id: 1602245136.1fd21ee3d5d8759b2c2b188487d4c1eff05aca5a.fordfrog@gentoo
1 commit: 1fd21ee3d5d8759b2c2b188487d4c1eff05aca5a
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 9 12:05:36 2020 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 9 12:05:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fd21ee3
7
8 dev-libs/serd: removed obsolete 0.30.2
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 dev-libs/serd/Manifest | 1 -
14 dev-libs/serd/serd-0.30.2.ebuild | 53 ----------------------------------------
15 2 files changed, 54 deletions(-)
16
17 diff --git a/dev-libs/serd/Manifest b/dev-libs/serd/Manifest
18 index 6408219cff5..0f11bd3ae54 100644
19 --- a/dev-libs/serd/Manifest
20 +++ b/dev-libs/serd/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST serd-0.30.2.tar.bz2 590337 BLAKE2B 7b47f4f9940d9d2d37772c034c3f15801fff2bc8a058d30b40891ae900bdee3a631803e25505230a853e4beb083be4c854c627074eb89c0b23781da42fbde2d5 SHA512 b1e18ac883aac2a8146ee0e1de553ac2b512deba5307e5c9fa2733d9011ed0777d67790aa6527e73b3f11c9da0d8c9a98227457bb412897296f4464228cac0f7
23 DIST serd-0.30.4.tar.bz2 605441 BLAKE2B 6b9b561db04a612d04726f29b1b56f535b9af57b7cbcf521c2a6afdafaf63b2ff4a205015d2f4c20bf48340348edda586dfed4a7cff24c57363b0f218d185609 SHA512 4cc032f826d891213c6db787b10a41ffb8f4b2a3357ffa536e34013755dc34db7109d1b42f550a0d559d8651f56c3a5dfb3654c3e2047ee6e609ff9a5fe803d6
24 DIST serd-0.30.6.tar.bz2 609365 BLAKE2B 35a86847642ffe806797ae8dbcd292ce26f08135edfa3b1fd39652f8964c35d73dba8f8627f32dcff399e9cddc332e5484f14a80580a32d52d93977cd9b42912 SHA512 db08d6c67d8627728679d0ed3770b8219a58f3eef82194ef8ba5682d3ff1f1033e2bbc8d6a1115a3fe0e32990f635c707a81ad8b4f457153fa78ff5991c9c30f
25
26 diff --git a/dev-libs/serd/serd-0.30.2.ebuild b/dev-libs/serd/serd-0.30.2.ebuild
27 deleted file mode 100644
28 index b373d009b2a..00000000000
29 --- a/dev-libs/serd/serd-0.30.2.ebuild
30 +++ /dev/null
31 @@ -1,53 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -PYTHON_COMPAT=( python3_{6,7,8} )
38 -PYTHON_REQ_USE='threads(+)'
39 -inherit python-any-r1 waf-utils multilib-build multilib-minimal
40 -
41 -DESCRIPTION="Library for RDF syntax which supports reading and writing Turtle and NTriples"
42 -HOMEPAGE="http://drobilla.net/software/serd/"
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 ~sparc x86"
48 -IUSE="doc static-libs test"
49 -RESTRICT="!test? ( test )"
50 -
51 -RDEPEND=""
52 -DEPEND="${RDEPEND}
53 - ${PYTHON_DEPS}
54 - doc? ( app-doc/doxygen )"
55 -
56 -DOCS=( "AUTHORS" "NEWS" "README.md" )
57 -
58 -src_prepare() {
59 - sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die
60 - default
61 - multilib_copy_sources
62 -}
63 -
64 -multilib_src_configure() {
65 - waf-utils_src_configure \
66 - --docdir=/usr/share/doc/${PF} \
67 - $(multilib_native_usex doc --docs "") \
68 - $(usex test --test "") \
69 - $(usex static-libs --static "")
70 -}
71 -
72 -multilib_src_test() {
73 - ./waf test || die
74 -}
75 -
76 -multilib_src_compile() {
77 - waf-utils_src_compile
78 - default
79 -}
80 -
81 -multilib_src_install() {
82 - waf-utils_src_install
83 - default
84 -}