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/sord/
Date: Wed, 29 Jun 2022 18:15:14
Message-Id: 1656526507.05a4dfb0f19e66049b3d0cfa115222156dcfc8bc.fordfrog@gentoo
1 commit: 05a4dfb0f19e66049b3d0cfa115222156dcfc8bc
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 18:12:45 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=05a4dfb0
7
8 dev-libs/sord: dropped obsolete 0.16.8-r1
9
10 Bug: https://bugs.gentoo.org/854975
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 dev-libs/sord/Manifest | 1 -
14 dev-libs/sord/sord-0.16.8-r1.ebuild | 63 -------------------------------------
15 2 files changed, 64 deletions(-)
16
17 diff --git a/dev-libs/sord/Manifest b/dev-libs/sord/Manifest
18 index 708a0c84e813..2cda57b7b30c 100644
19 --- a/dev-libs/sord/Manifest
20 +++ b/dev-libs/sord/Manifest
21 @@ -1,2 +1 @@
22 DIST sord-0.16.10.tar.bz2 524630 BLAKE2B 6737d3495846529e6e4d14cbb2ac47ce4e67d04298381a119ba0107144deb56a53de9aa363397c2e302535f998c7c3ad44d340f52f70ac341ad6b635db608cb6 SHA512 715201eaf4a13a3635337cf8fa7c1a1f229f1d589f70cdf8f67183d90df29cd8b4af180650ce9cd0c651c712d11901bfdc6b51f9b8d7c6e70d8d8f30b1861281
23 -DIST sord-0.16.8.tar.bz2 525038 BLAKE2B 3ba43b2edb69efec64ac68f139a18f23dc1b92290b054f420c400d2907af74fa550b042596374136c53b7cf0db1b775cfc7edd24c771bbf26d25928845787c7b SHA512 24ed50de8e5bb321e557bac6d3e441b2ed49adabf828bf0e1b33a080c89306dde80443dc8b563098fcc184c4d6e53b7e716b523ddccdf56d08301d1b0120f2b2
24
25 diff --git a/dev-libs/sord/sord-0.16.8-r1.ebuild b/dev-libs/sord/sord-0.16.8-r1.ebuild
26 deleted file mode 100644
27 index 7e4fb5a789ae..000000000000
28 --- a/dev-libs/sord/sord-0.16.8-r1.ebuild
29 +++ /dev/null
30 @@ -1,63 +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 storing RDF data in memory"
41 -HOMEPAGE="http://drobilla.net/software/sord/"
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? ( app-doc/doxygen )
53 -"
54 -RDEPEND="
55 - dev-libs/libpcre
56 - dev-libs/serd
57 -"
58 -DEPEND="${RDEPEND}
59 - ${PYTHON_DEPS}
60 -"
61 -DOCS=( "AUTHORS" "NEWS" "README.md" )
62 -
63 -PATCHES=(
64 - "${FILESDIR}/${P}-fix-crash-with-optimized-builds-with-gcc-10.1.0.patch"
65 -)
66 -
67 -src_prepare() {
68 - sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die
69 - default
70 - multilib_copy_sources
71 -}
72 -
73 -multilib_src_configure() {
74 - waf-utils_src_configure \
75 - --docdir=/usr/share/doc/${PF} \
76 - $(multilib_native_usex doc --docs "") \
77 - $(usex test --test "") \
78 - $(usex static-libs --static "")
79 -}
80 -
81 -multilib_src_test() {
82 - ./waf test || die
83 -}
84 -
85 -multilib_src_compile() {
86 - waf-utils_src_compile
87 - default
88 -}
89 -
90 -multilib_src_install() {
91 - waf-utils_src_install
92 - default
93 -}