From 2f5e9433321a219e0b85dba00f211d0ee17d59f1 Mon Sep 17 00:00:00 2001 From: Miroslav Šulc Date: Sun, 2 Aug 2020 11:06:04 +0200 Subject: media-libs/lilv: removed patch that changes include dir MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit the patch was used in 2017 to make gst-plugins-lv2 compile but the issue with it was that it modified the include path but it did not update the .pc file which caused include files not found. up to that, it seems the patch is not needed anymore. Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Miroslav Šulc --- media-libs/lilv/files/includedir.patch | 11 ----- media-libs/lilv/lilv-0.24.6-r1.ebuild | 74 ++++++++++++++++++++++++++++++++++ media-libs/lilv/lilv-0.24.6.ebuild | 74 ---------------------------------- media-libs/lilv/lilv-0.24.8-r1.ebuild | 72 +++++++++++++++++++++++++++++++++ media-libs/lilv/lilv-0.24.8.ebuild | 74 ---------------------------------- 5 files changed, 146 insertions(+), 159 deletions(-) delete mode 100644 media-libs/lilv/files/includedir.patch create mode 100644 media-libs/lilv/lilv-0.24.6-r1.ebuild delete mode 100644 media-libs/lilv/lilv-0.24.6.ebuild create mode 100644 media-libs/lilv/lilv-0.24.8-r1.ebuild delete mode 100644 media-libs/lilv/lilv-0.24.8.ebuild (limited to 'media-libs') diff --git a/media-libs/lilv/files/includedir.patch b/media-libs/lilv/files/includedir.patch deleted file mode 100644 index f20357302b23..000000000000 --- a/media-libs/lilv/files/includedir.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/wscript 2017-12-19 20:47:08.288722501 -0600 -+++ b/wscript 2017-12-19 20:46:46.932616417 -0600 -@@ -196,7 +196,7 @@ - - def build(bld): - # C/C++ Headers -+ includedir = '${INCLUDEDIR}/lilv' -- includedir = '${INCLUDEDIR}/lilv-%s/lilv' % LILV_MAJOR_VERSION - bld.install_files(includedir, bld.path.ant_glob('lilv/*.h')) - bld.install_files(includedir, bld.path.ant_glob('lilv/*.hpp')) - diff --git a/media-libs/lilv/lilv-0.24.6-r1.ebuild b/media-libs/lilv/lilv-0.24.6-r1.ebuild new file mode 100644 index 000000000000..58febaec1c0f --- /dev/null +++ b/media-libs/lilv/lilv-0.24.6-r1.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_REQ_USE='threads(+)' + +inherit python-any-r1 waf-utils bash-completion-r1 multilib-build multilib-minimal + +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="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86" +IUSE="doc +dyn-manifest static-libs test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/serd-0.30.0-r1[${MULTILIB_USEDEP}] + >=dev-libs/sord-0.16.0-r1[${MULTILIB_USEDEP}] + media-libs/libsndfile + >=media-libs/lv2-1.16.0[${MULTILIB_USEDEP}] + media-libs/sratom[${MULTILIB_USEDEP}] +" +DEPEND=" + ${RDEPEND} + ${PYTHON_DEPS} + virtual/pkgconfig + doc? ( app-doc/doxygen ) + test? ( dev-python/unittest2 ) +" + +PATCHES=( "${FILESDIR}/includedir.patch" ) + +src_prepare() { + default + sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die + multilib_copy_sources +} + +multilib_src_configure() { + waf-utils_src_configure \ + --docdir="${EPREFIX}"/usr/share/doc/${PF} \ + --no-bash-completion \ + $(multilib_native_usex doc --docs "") \ + $(usex test --test "") \ + $(usex static-libs --static "") \ + $(usex dyn-manifest --dyn-manifest "") +} + +multilib_src_compile() { + ./waf build || die +} + +multilib_src_test() { + ./waf test || die +} + +multilib_src_install() { + waf-utils_src_install +} + +multilib_src_install_all() { + sed -i "/lv2jack/d" utils/lilv.bash_completion + newbashcomp utils/lilv.bash_completion lv2info + + dodir /etc/env.d + echo "LV2_PATH=${EPREFIX}/usr/$(get_libdir)/lv2" > "${ED}/etc/env.d/60lv2" + + python_optimize +} diff --git a/media-libs/lilv/lilv-0.24.6.ebuild b/media-libs/lilv/lilv-0.24.6.ebuild deleted file mode 100644 index 58febaec1c0f..000000000000 --- a/media-libs/lilv/lilv-0.24.6.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{6,7,8} ) -PYTHON_REQ_USE='threads(+)' - -inherit python-any-r1 waf-utils bash-completion-r1 multilib-build multilib-minimal - -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="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86" -IUSE="doc +dyn-manifest static-libs test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-libs/serd-0.30.0-r1[${MULTILIB_USEDEP}] - >=dev-libs/sord-0.16.0-r1[${MULTILIB_USEDEP}] - media-libs/libsndfile - >=media-libs/lv2-1.16.0[${MULTILIB_USEDEP}] - media-libs/sratom[${MULTILIB_USEDEP}] -" -DEPEND=" - ${RDEPEND} - ${PYTHON_DEPS} - virtual/pkgconfig - doc? ( app-doc/doxygen ) - test? ( dev-python/unittest2 ) -" - -PATCHES=( "${FILESDIR}/includedir.patch" ) - -src_prepare() { - default - sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die - multilib_copy_sources -} - -multilib_src_configure() { - waf-utils_src_configure \ - --docdir="${EPREFIX}"/usr/share/doc/${PF} \ - --no-bash-completion \ - $(multilib_native_usex doc --docs "") \ - $(usex test --test "") \ - $(usex static-libs --static "") \ - $(usex dyn-manifest --dyn-manifest "") -} - -multilib_src_compile() { - ./waf build || die -} - -multilib_src_test() { - ./waf test || die -} - -multilib_src_install() { - waf-utils_src_install -} - -multilib_src_install_all() { - sed -i "/lv2jack/d" utils/lilv.bash_completion - newbashcomp utils/lilv.bash_completion lv2info - - dodir /etc/env.d - echo "LV2_PATH=${EPREFIX}/usr/$(get_libdir)/lv2" > "${ED}/etc/env.d/60lv2" - - python_optimize -} diff --git a/media-libs/lilv/lilv-0.24.8-r1.ebuild b/media-libs/lilv/lilv-0.24.8-r1.ebuild new file mode 100644 index 000000000000..9478c738d163 --- /dev/null +++ b/media-libs/lilv/lilv-0.24.8-r1.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_REQ_USE='threads(+)' + +inherit python-any-r1 waf-utils bash-completion-r1 multilib-build multilib-minimal + +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="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc +dyn-manifest static-libs test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/serd-0.30.0-r1[${MULTILIB_USEDEP}] + >=dev-libs/sord-0.16.0-r1[${MULTILIB_USEDEP}] + media-libs/libsndfile + >=media-libs/lv2-1.16.0[${MULTILIB_USEDEP}] + media-libs/sratom[${MULTILIB_USEDEP}] +" +DEPEND=" + ${RDEPEND} + ${PYTHON_DEPS} + virtual/pkgconfig + doc? ( app-doc/doxygen ) + test? ( dev-python/unittest2 ) +" + +src_prepare() { + default + sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die + multilib_copy_sources +} + +multilib_src_configure() { + waf-utils_src_configure \ + --docdir="${EPREFIX}"/usr/share/doc/${PF} \ + --no-bash-completion \ + $(multilib_native_usex doc --docs "") \ + $(usex test --test "") \ + $(usex static-libs --static "") \ + $(usex dyn-manifest --dyn-manifest "") +} + +multilib_src_compile() { + ./waf build || die +} + +multilib_src_test() { + ./waf test || die +} + +multilib_src_install() { + waf-utils_src_install +} + +multilib_src_install_all() { + sed -i "/lv2jack/d" utils/lilv.bash_completion + newbashcomp utils/lilv.bash_completion lv2info + + dodir /etc/env.d + echo "LV2_PATH=${EPREFIX}/usr/$(get_libdir)/lv2" > "${ED}/etc/env.d/60lv2" + + python_optimize +} diff --git a/media-libs/lilv/lilv-0.24.8.ebuild b/media-libs/lilv/lilv-0.24.8.ebuild deleted file mode 100644 index 698ee9385c5b..000000000000 --- a/media-libs/lilv/lilv-0.24.8.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{6,7,8} ) -PYTHON_REQ_USE='threads(+)' - -inherit python-any-r1 waf-utils bash-completion-r1 multilib-build multilib-minimal - -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="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="doc +dyn-manifest static-libs test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-libs/serd-0.30.0-r1[${MULTILIB_USEDEP}] - >=dev-libs/sord-0.16.0-r1[${MULTILIB_USEDEP}] - media-libs/libsndfile - >=media-libs/lv2-1.16.0[${MULTILIB_USEDEP}] - media-libs/sratom[${MULTILIB_USEDEP}] -" -DEPEND=" - ${RDEPEND} - ${PYTHON_DEPS} - virtual/pkgconfig - doc? ( app-doc/doxygen ) - test? ( dev-python/unittest2 ) -" - -PATCHES=( "${FILESDIR}/includedir.patch" ) - -src_prepare() { - default - sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die - multilib_copy_sources -} - -multilib_src_configure() { - waf-utils_src_configure \ - --docdir="${EPREFIX}"/usr/share/doc/${PF} \ - --no-bash-completion \ - $(multilib_native_usex doc --docs "") \ - $(usex test --test "") \ - $(usex static-libs --static "") \ - $(usex dyn-manifest --dyn-manifest "") -} - -multilib_src_compile() { - ./waf build || die -} - -multilib_src_test() { - ./waf test || die -} - -multilib_src_install() { - waf-utils_src_install -} - -multilib_src_install_all() { - sed -i "/lv2jack/d" utils/lilv.bash_completion - newbashcomp utils/lilv.bash_completion lv2info - - dodir /etc/env.d - echo "LV2_PATH=${EPREFIX}/usr/$(get_libdir)/lv2" > "${ED}/etc/env.d/60lv2" - - python_optimize -} -- cgit v1.2.3-65-gdbad