summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2018-05-20 13:21:08 +0200
committerJohannes Huber <johu@gentoo.org>2018-05-20 13:22:51 +0200
commitc5d25755cd8cdf39f4e974d1ba5645ae553f0bcb (patch)
tree568143afa2b2898f0b11fdb86dc4ec60122abea6 /media-libs
parentmedia-libs/lilv: Remove 0.20.0 (diff)
downloadgentoo-c5d25755cd8cdf39f4e974d1ba5645ae553f0bcb.tar.gz
gentoo-c5d25755cd8cdf39f4e974d1ba5645ae553f0bcb.tar.bz2
gentoo-c5d25755cd8cdf39f4e974d1ba5645ae553f0bcb.zip
media-libs/lilv: Remove 0.24.0
Uses deprecated EAPI 4, inherits deprecated base eclass and overshadowed by 0.24.2-r2. Package-Manager: Portage-2.3.38, Repoman-2.3.9
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/lilv/Manifest1
-rw-r--r--media-libs/lilv/lilv-0.24.0.ebuild52
2 files changed, 0 insertions, 53 deletions
diff --git a/media-libs/lilv/Manifest b/media-libs/lilv/Manifest
index d2a595544bd5..3aeb5c7ecadf 100644
--- a/media-libs/lilv/Manifest
+++ b/media-libs/lilv/Manifest
@@ -1,2 +1 @@
-DIST lilv-0.24.0.tar.bz2 244079 BLAKE2B d94b830b7439d55c2a44d9c20b1ea7938f3fe75bf273adfd4c11a38f29cbb266d5ff5c35c656adb8d7d80f47e1e733650b37467437b487720742b27d93a2d69d SHA512 2a5523385e4cb3876abb49d8cd4eb7b8f95b886d8e9dd3155588a0bef7b5ffd7486501a70cb852d4965592ffe7ef8335d8e46666f519b5214753dd9ae96a1756
DIST lilv-0.24.2.tar.bz2 244764 BLAKE2B e049354c2ec52116bbc0c588829c8e7d6c780a8325bb050d225e4893a4ca7b3c98b8bddd01dbfa0e67616bb6baadf2483087891d4242ccd4156aa8a8749484ef SHA512 b5d04b6bb1fb4d3a9a58d93b233db502dc2ded75672766a31d252abca657cbf2d170fa590c0c56159b2bac68c7af95d8787a512e318e3a0f30855504bb034659
diff --git a/media-libs/lilv/lilv-0.24.0.ebuild b/media-libs/lilv/lilv-0.24.0.ebuild
deleted file mode 100644
index 41f03c2342f7..000000000000
--- a/media-libs/lilv/lilv-0.24.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-PYTHON_REQ_USE='threads(+)'
-
-inherit base python-any-r1 waf-utils bash-completion-r1
-
-DESCRIPTION="Library to make the use of LV2 plugins as simple as possible for applications"
-HOMEPAGE="http://drobilla.net/software/lilv/"
-SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="doc +dyn-manifest static-libs test"
-
-RDEPEND=">=media-libs/lv2-1.14.0
- >=media-libs/sratom-0.4.0
- >=dev-libs/serd-0.14.0
- >=dev-libs/sord-0.13.0"
-DEPEND="${RDEPEND}
- ${PYTHON_DEPS}
- doc? ( app-doc/doxygen )
- virtual/pkgconfig"
-
-DOCS=( "AUTHORS" "NEWS" "README" )
-
-src_prepare() {
- sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die
-}
-
-src_configure() {
- waf-utils_src_configure \
- --docdir="${EPREFIX}"/usr/share/doc/${PF} \
- --no-bash-completion \
- $(use test && echo "--test") \
- $(use doc && echo "--docs") \
- $(use static-libs && echo "--static") \
- $(use dyn-manifest && echo "--dyn-manifest")
-}
-
-src_test() {
- ./waf test || die
-}
-
-src_install() {
- waf-utils_src_install
- newbashcomp utils/lilv.bash_completion ${PN}
-}