public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2016-11-30  9:25 Alexis Ballier
  0 siblings, 0 replies; 88+ messages in thread
From: Alexis Ballier @ 2016-11-30  9:25 UTC (permalink / raw
  To: gentoo-commits

commit:     4eaba3d3e8fc1b12c632b2bbe6cca7086017427e
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 30 09:12:43 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Nov 30 09:25:32 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eaba3d3

media-libs/lv2: bump to 1.14.0

Package-Manager: portage-2.3.2

 media-libs/lv2/Manifest          |  1 +
 media-libs/lv2/lv2-1.14.0.ebuild | 44 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 45 insertions(+)

diff --git a/media-libs/lv2/Manifest b/media-libs/lv2/Manifest
index b7a8e71..b78f428 100644
--- a/media-libs/lv2/Manifest
+++ b/media-libs/lv2/Manifest
@@ -1,3 +1,4 @@
 DIST lv2-1.10.0.tar.bz2 422018 SHA256 e80c8e4b45d4de3b09f26d76e39d454739b6aff3f444ea1dabe466ab530fa4d5 SHA512 e7704101a3ef95a235e76fde862c94c605769c862e4ffd059e4059245f1a1402e4c2b0e7265797fefb5cfc67d3724c815acf6ef3a31d5eab52162a62a303ee5c WHIRLPOOL 50e1bf06c294391fbab85d0ba276730900e5758b0056a210438c785f387648921093f82dc25081aef09378098166b318600eedd8d1a551bc985f71e60bdd4d62
 DIST lv2-1.12.0.tar.bz2 399666 SHA256 7a4a53138f10ed997174c8bc5a8573d5f5a5d8441aaac2de6cf2178ff90658e9 SHA512 acc5e05eeeb5291fe5b64e30b5c00a6ef7136922fab7846efc05ccacdeff4d7714f705e632d5b3f6a5314cb3a7b847528fd717fc9ebb5d6f39653c53ac261f85 WHIRLPOOL 063b0c6b7d42f010bc6b6914902c00b7e79f534a2dd8100b88010460cee88bb61d10820f537fa035fb358e60ae760de2a66b32bd9de4b34cbda35ace229fdde6
+DIST lv2-1.14.0.tar.bz2 386438 SHA256 b8052683894c04efd748c81b95dd065d274d4e856c8b9e58b7c3da3db4e71d32 SHA512 6991d848ed9f04a48ca3070efc15af83431f680aa8a8559a02b1666f7b8d43af8e089f78c3b14ad3345dac32fd1c8ad0faf3a3f56dddc07c6f0e0aeef4077498 WHIRLPOOL 11aee5cf54786d11b8095a56fd9a93009c617d61a0da63d9cf49ed4ab3dc5d65a8b04e0c0672f4d9f278c50aa0aa9496abf88ba5ee52ed4bbf622083dbde2736
 DIST lv2-1.8.0.tar.bz2 439609 SHA256 a4c90e8f4a8df58c2dd7bc3b9e1a0df94e3c1cc70c95a10da72a40a9deb9b3d7 SHA512 11c80a5c1f81dfa4e43b34859c77b41182f828a27a9f7e539a57320b193f1db6560ee88497051e0f5382bbe77fd496be359c346c5d2534e51c2bdb13737c1845 WHIRLPOOL 3edd51a7f77bf09ec6c0f7287122caee6c6274089fc3ffe804a08a69ba2c7b7177eb741a3cb8eabdd103d79df6de74e61acf363dd7c50043377c07beea4e7b7f

diff --git a/media-libs/lv2/lv2-1.14.0.ebuild b/media-libs/lv2/lv2-1.14.0.ebuild
new file mode 100644
index 00000000..477e67e
--- /dev/null
+++ b/media-libs/lv2/lv2-1.14.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_4} )
+PYTHON_REQ_USE='threads(+)'
+inherit python-single-r1 waf-utils multilib
+
+DESCRIPTION="A simple but extensible successor of LADSPA"
+HOMEPAGE="http://lv2plug.in/"
+SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="doc plugins"
+
+DEPEND="plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )"
+RDEPEND="${DEPEND}
+	dev-python/lxml[${PYTHON_USEDEP}]
+	dev-python/pygments[${PYTHON_USEDEP}]
+	dev-python/rdflib[${PYTHON_USEDEP}]
+	!<media-libs/slv2-0.4.2
+	!media-libs/lv2core
+	!media-libs/lv2-ui"
+DEPEND="${DEPEND}
+	plugins? ( virtual/pkgconfig )
+	doc? ( app-doc/doxygen dev-python/rdflib )"
+DOCS=( "README.md" "NEWS" )
+
+src_configure() {
+	waf-utils_src_configure \
+		--docdir="${EPREFIX}"/usr/share/doc/${PF} \
+		--lv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2 \
+		$(use plugins || echo " --no-plugins") \
+		$(use doc     && echo " --docs"      )
+}
+
+src_install() {
+	waf-utils_src_install
+
+	python_fix_shebang "${D}"
+}


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2017-02-17 20:24 Michał Górny
  0 siblings, 0 replies; 88+ messages in thread
From: Michał Górny @ 2017-02-17 20:24 UTC (permalink / raw
  To: gentoo-commits

commit:     11ea8f3f9242072f5d699df421380ae7218c94de
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 17 19:51:57 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Feb 17 20:24:37 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11ea8f3f

media-libs/lv2: Clean old versions up

 media-libs/lv2/Manifest          |  1 -
 media-libs/lv2/lv2-1.10.0.ebuild | 44 ----------------------------------------
 media-libs/lv2/lv2-1.8.0.ebuild  | 44 ----------------------------------------
 3 files changed, 89 deletions(-)

diff --git a/media-libs/lv2/Manifest b/media-libs/lv2/Manifest
index b78f428fee..a662ef5533 100644
--- a/media-libs/lv2/Manifest
+++ b/media-libs/lv2/Manifest
@@ -1,4 +1,3 @@
 DIST lv2-1.10.0.tar.bz2 422018 SHA256 e80c8e4b45d4de3b09f26d76e39d454739b6aff3f444ea1dabe466ab530fa4d5 SHA512 e7704101a3ef95a235e76fde862c94c605769c862e4ffd059e4059245f1a1402e4c2b0e7265797fefb5cfc67d3724c815acf6ef3a31d5eab52162a62a303ee5c WHIRLPOOL 50e1bf06c294391fbab85d0ba276730900e5758b0056a210438c785f387648921093f82dc25081aef09378098166b318600eedd8d1a551bc985f71e60bdd4d62
 DIST lv2-1.12.0.tar.bz2 399666 SHA256 7a4a53138f10ed997174c8bc5a8573d5f5a5d8441aaac2de6cf2178ff90658e9 SHA512 acc5e05eeeb5291fe5b64e30b5c00a6ef7136922fab7846efc05ccacdeff4d7714f705e632d5b3f6a5314cb3a7b847528fd717fc9ebb5d6f39653c53ac261f85 WHIRLPOOL 063b0c6b7d42f010bc6b6914902c00b7e79f534a2dd8100b88010460cee88bb61d10820f537fa035fb358e60ae760de2a66b32bd9de4b34cbda35ace229fdde6
 DIST lv2-1.14.0.tar.bz2 386438 SHA256 b8052683894c04efd748c81b95dd065d274d4e856c8b9e58b7c3da3db4e71d32 SHA512 6991d848ed9f04a48ca3070efc15af83431f680aa8a8559a02b1666f7b8d43af8e089f78c3b14ad3345dac32fd1c8ad0faf3a3f56dddc07c6f0e0aeef4077498 WHIRLPOOL 11aee5cf54786d11b8095a56fd9a93009c617d61a0da63d9cf49ed4ab3dc5d65a8b04e0c0672f4d9f278c50aa0aa9496abf88ba5ee52ed4bbf622083dbde2736
-DIST lv2-1.8.0.tar.bz2 439609 SHA256 a4c90e8f4a8df58c2dd7bc3b9e1a0df94e3c1cc70c95a10da72a40a9deb9b3d7 SHA512 11c80a5c1f81dfa4e43b34859c77b41182f828a27a9f7e539a57320b193f1db6560ee88497051e0f5382bbe77fd496be359c346c5d2534e51c2bdb13737c1845 WHIRLPOOL 3edd51a7f77bf09ec6c0f7287122caee6c6274089fc3ffe804a08a69ba2c7b7177eb741a3cb8eabdd103d79df6de74e61acf363dd7c50043377c07beea4e7b7f

diff --git a/media-libs/lv2/lv2-1.10.0.ebuild b/media-libs/lv2/lv2-1.10.0.ebuild
deleted file mode 100644
index c18152ad93..0000000000
--- a/media-libs/lv2/lv2-1.10.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-PYTHON_REQ_USE='threads(+)'
-inherit python-single-r1 waf-utils
-
-DESCRIPTION="LV2 is a simple but extensible successor of LADSPA"
-HOMEPAGE="http://lv2plug.in/"
-SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="doc plugins"
-
-DEPEND="plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )"
-RDEPEND="${DEPEND}
-	dev-python/lxml[${PYTHON_USEDEP}]
-	dev-python/pygments[${PYTHON_USEDEP}]
-	dev-python/rdflib[${PYTHON_USEDEP}]
-	!<media-libs/slv2-0.4.2
-	!media-libs/lv2core
-	!media-libs/lv2-ui"
-DEPEND="${DEPEND}
-	plugins? ( virtual/pkgconfig )
-	doc? ( app-doc/doxygen dev-python/rdflib )"
-DOCS=( "README" "NEWS" )
-
-src_configure() {
-	waf-utils_src_configure \
-		--docdir="${EPREFIX}"/usr/share/doc/${PF} \
-		$(use plugins || echo " --no-plugins") \
-		$(use doc     && echo " --docs"      )
-}
-
-src_install() {
-	waf-utils_src_install
-
-	python_fix_shebang "${D}"
-}

diff --git a/media-libs/lv2/lv2-1.8.0.ebuild b/media-libs/lv2/lv2-1.8.0.ebuild
deleted file mode 100644
index c18152ad93..0000000000
--- a/media-libs/lv2/lv2-1.8.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-PYTHON_REQ_USE='threads(+)'
-inherit python-single-r1 waf-utils
-
-DESCRIPTION="LV2 is a simple but extensible successor of LADSPA"
-HOMEPAGE="http://lv2plug.in/"
-SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="doc plugins"
-
-DEPEND="plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )"
-RDEPEND="${DEPEND}
-	dev-python/lxml[${PYTHON_USEDEP}]
-	dev-python/pygments[${PYTHON_USEDEP}]
-	dev-python/rdflib[${PYTHON_USEDEP}]
-	!<media-libs/slv2-0.4.2
-	!media-libs/lv2core
-	!media-libs/lv2-ui"
-DEPEND="${DEPEND}
-	plugins? ( virtual/pkgconfig )
-	doc? ( app-doc/doxygen dev-python/rdflib )"
-DOCS=( "README" "NEWS" )
-
-src_configure() {
-	waf-utils_src_configure \
-		--docdir="${EPREFIX}"/usr/share/doc/${PF} \
-		$(use plugins || echo " --no-plugins") \
-		$(use doc     && echo " --docs"      )
-}
-
-src_install() {
-	waf-utils_src_install
-
-	python_fix_shebang "${D}"
-}


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2017-04-23 11:29 David Seifert
  0 siblings, 0 replies; 88+ messages in thread
From: David Seifert @ 2017-04-23 11:29 UTC (permalink / raw
  To: gentoo-commits

commit:     dbe967cef57717cdfd95dd7efb9238666f887139
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 23 10:12:16 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Apr 23 11:26:42 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbe967ce

media-libs/lv2: [QA] Add missing python metadata variables

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 media-libs/lv2/lv2-1.10.0-r1.ebuild | 8 ++++++--
 media-libs/lv2/lv2-1.12.0.ebuild    | 9 +++++++--
 media-libs/lv2/lv2-1.14.0.ebuild    | 9 +++++++--
 3 files changed, 20 insertions(+), 6 deletions(-)

diff --git a/media-libs/lv2/lv2-1.10.0-r1.ebuild b/media-libs/lv2/lv2-1.10.0-r1.ebuild
index 116d93599d4..36cb1851af5 100644
--- a/media-libs/lv2/lv2-1.10.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.10.0-r1.ebuild
@@ -1,10 +1,11 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
 PYTHON_COMPAT=( python{2_7,3_4} )
 PYTHON_REQ_USE='threads(+)'
+
 inherit python-single-r1 waf-utils
 
 DESCRIPTION="LV2 is a simple but extensible successor of LADSPA"
@@ -15,8 +16,11 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="amd64 ~ppc ~ppc64 x86"
 IUSE="doc plugins"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
-DEPEND="plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )"
+DEPEND="
+	${PYTHON_DEPS}
+	plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )"
 RDEPEND="${DEPEND}
 	dev-python/lxml[${PYTHON_USEDEP}]
 	dev-python/pygments[${PYTHON_USEDEP}]

diff --git a/media-libs/lv2/lv2-1.12.0.ebuild b/media-libs/lv2/lv2-1.12.0.ebuild
index c66968ce40b..284d435f39c 100644
--- a/media-libs/lv2/lv2-1.12.0.ebuild
+++ b/media-libs/lv2/lv2-1.12.0.ebuild
@@ -1,9 +1,11 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
+
 PYTHON_COMPAT=( python{2_7,3_4} )
 PYTHON_REQ_USE='threads(+)'
+
 inherit python-single-r1 waf-utils multilib
 
 DESCRIPTION="A simple but extensible successor of LADSPA"
@@ -14,8 +16,11 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 IUSE="doc plugins"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
-DEPEND="plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )"
+DEPEND="
+	${PYTHON_DEPS}
+	plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )"
 RDEPEND="${DEPEND}
 	dev-python/lxml[${PYTHON_USEDEP}]
 	dev-python/pygments[${PYTHON_USEDEP}]

diff --git a/media-libs/lv2/lv2-1.14.0.ebuild b/media-libs/lv2/lv2-1.14.0.ebuild
index abcae4c123c..284d435f39c 100644
--- a/media-libs/lv2/lv2-1.14.0.ebuild
+++ b/media-libs/lv2/lv2-1.14.0.ebuild
@@ -1,9 +1,11 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
+
 PYTHON_COMPAT=( python{2_7,3_4} )
 PYTHON_REQ_USE='threads(+)'
+
 inherit python-single-r1 waf-utils multilib
 
 DESCRIPTION="A simple but extensible successor of LADSPA"
@@ -14,8 +16,11 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 IUSE="doc plugins"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
-DEPEND="plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )"
+DEPEND="
+	${PYTHON_DEPS}
+	plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )"
 RDEPEND="${DEPEND}
 	dev-python/lxml[${PYTHON_USEDEP}]
 	dev-python/pygments[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2017-04-27 10:14 Agostino Sarubbo
  0 siblings, 0 replies; 88+ messages in thread
From: Agostino Sarubbo @ 2017-04-27 10:14 UTC (permalink / raw
  To: gentoo-commits

commit:     09703c3ecd7bce67431b7ae04e8c4ec427fd3c9e
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 27 10:14:31 2017 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Apr 27 10:14:31 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09703c3e

media-libs/lv2: amd64 stable wrt bug #616454

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 media-libs/lv2/lv2-1.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.14.0.ebuild b/media-libs/lv2/lv2-1.14.0.ebuild
index 284d435f39c..9c451243a8e 100644
--- a/media-libs/lv2/lv2-1.14.0.ebuild
+++ b/media-libs/lv2/lv2-1.14.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2017-04-28 13:22 Agostino Sarubbo
  0 siblings, 0 replies; 88+ messages in thread
From: Agostino Sarubbo @ 2017-04-28 13:22 UTC (permalink / raw
  To: gentoo-commits

commit:     293aca2672941a37efe0fe450cb0a91e46bbca9c
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 28 13:22:35 2017 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Apr 28 13:22:35 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=293aca26

media-libs/lv2: x86 stable wrt bug #616454

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 media-libs/lv2/lv2-1.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.14.0.ebuild b/media-libs/lv2/lv2-1.14.0.ebuild
index 9c451243a8e..df7e334714b 100644
--- a/media-libs/lv2/lv2-1.14.0.ebuild
+++ b/media-libs/lv2/lv2-1.14.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2017-06-15 14:23 Anthony G. Basile
  0 siblings, 0 replies; 88+ messages in thread
From: Anthony G. Basile @ 2017-06-15 14:23 UTC (permalink / raw
  To: gentoo-commits

commit:     26ae43d55940c1a4da7c41135eb4cc661ec781fe
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 15 14:14:03 2017 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Thu Jun 15 14:23:04 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26ae43d5

media-libs/lv2: keyword ~mips

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 media-libs/lv2/lv2-1.10.0-r1.ebuild | 2 +-
 media-libs/lv2/lv2-1.12.0.ebuild    | 2 +-
 media-libs/lv2/lv2-1.14.0.ebuild    | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-libs/lv2/lv2-1.10.0-r1.ebuild b/media-libs/lv2/lv2-1.10.0-r1.ebuild
index 36cb1851af5..d1f7405952a 100644
--- a/media-libs/lv2/lv2-1.10.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.10.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~mips ~ppc ~ppc64 x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 

diff --git a/media-libs/lv2/lv2-1.12.0.ebuild b/media-libs/lv2/lv2-1.12.0.ebuild
index 284d435f39c..c3b77a3eadf 100644
--- a/media-libs/lv2/lv2-1.12.0.ebuild
+++ b/media-libs/lv2/lv2-1.12.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 

diff --git a/media-libs/lv2/lv2-1.14.0.ebuild b/media-libs/lv2/lv2-1.14.0.ebuild
index df7e334714b..ac81ba6d119 100644
--- a/media-libs/lv2/lv2-1.14.0.ebuild
+++ b/media-libs/lv2/lv2-1.14.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~mips ~ppc ~ppc64 x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2017-07-12 14:43 Pacho Ramos
  0 siblings, 0 replies; 88+ messages in thread
From: Pacho Ramos @ 2017-07-12 14:43 UTC (permalink / raw
  To: gentoo-commits

commit:     9531e103bf212336494b6aeb7ae4a5adec81194c
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 12 14:12:07 2017 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Jul 12 14:42:37 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9531e103

media-libs/lv2: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/lv2/lv2-1.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.14.0.ebuild b/media-libs/lv2/lv2-1.14.0.ebuild
index ff7c9f637f0..a3c3d0d5e89 100644
--- a/media-libs/lv2/lv2-1.14.0.ebuild
+++ b/media-libs/lv2/lv2-1.14.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_7,3_4} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 PYTHON_REQ_USE='threads(+)'
 
 inherit python-single-r1 waf-utils multilib


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2017-12-20 23:22 Matt Thode
  0 siblings, 0 replies; 88+ messages in thread
From: Matt Thode @ 2017-12-20 23:22 UTC (permalink / raw
  To: gentoo-commits

commit:     3b23f10a7e64edf1113dbe84a51e79ddff732a6c
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 20 02:41:47 2017 +0000
Commit:     Matt Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Wed Dec 20 23:18:25 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b23f10a

media-libs/lv2: 1.14.0-r1 adds multilib support

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 media-libs/lv2/lv2-1.14.0-r1.ebuild | 56 +++++++++++++++++++++++++++++++++++++
 1 file changed, 56 insertions(+)

diff --git a/media-libs/lv2/lv2-1.14.0-r1.ebuild b/media-libs/lv2/lv2-1.14.0-r1.ebuild
new file mode 100644
index 00000000000..308feb25104
--- /dev/null
+++ b/media-libs/lv2/lv2-1.14.0-r1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+PYTHON_REQ_USE='threads(+)'
+MULTILIB_COMPAT=( abi_x86_{32,64} )
+
+inherit python-single-r1 waf-utils multilib-build multilib-minimal
+
+DESCRIPTION="A simple but extensible successor of LADSPA"
+HOMEPAGE="http://lv2plug.in/"
+SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~x86"
+IUSE="doc plugins"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="
+	${PYTHON_DEPS}
+	plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )"
+RDEPEND="${DEPEND}
+	dev-python/lxml[${PYTHON_USEDEP}]
+	dev-python/pygments[${PYTHON_USEDEP}]
+	dev-python/rdflib[${PYTHON_USEDEP}]
+	!<media-libs/slv2-0.4.2
+	!media-libs/lv2core
+	!media-libs/lv2-ui"
+DEPEND="${DEPEND}
+	plugins? ( virtual/pkgconfig )
+	doc? ( app-doc/doxygen dev-python/rdflib )"
+DOCS=( "README.md" "NEWS" )
+
+src_prepare() {
+	default
+	multilib_copy_sources
+}
+
+multilib_src_configure() {
+	waf-utils_src_configure \
+		--docdir="${EPREFIX}"/usr/share/doc/${PF} \
+		--lv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2 \
+		$(use plugins || echo " --no-plugins") \
+		$(multilib_native_usex doc --docs "")
+}
+
+multilib_src_install() {
+	waf-utils_src_install
+}
+
+multilib_src_install_all() {
+	python_fix_shebang "${D}"
+}


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2017-12-21  7:39 Matt Thode
  0 siblings, 0 replies; 88+ messages in thread
From: Matt Thode @ 2017-12-21  7:39 UTC (permalink / raw
  To: gentoo-commits

commit:     61910bdfe230eb71bcf589908df23650a1b966aa
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 21 07:39:19 2017 +0000
Commit:     Matt Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Thu Dec 21 07:39:19 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61910bdf

media-libs/lv2: remove setting MULTILIB_COMPAT for GLEP73Immutability bug

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 media-libs/lv2/lv2-1.14.0-r1.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r1.ebuild b/media-libs/lv2/lv2-1.14.0-r1.ebuild
index 308feb25104..ef7903ae287 100644
--- a/media-libs/lv2/lv2-1.14.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r1.ebuild
@@ -5,7 +5,6 @@ EAPI=6
 
 PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 PYTHON_REQ_USE='threads(+)'
-MULTILIB_COMPAT=( abi_x86_{32,64} )
 
 inherit python-single-r1 waf-utils multilib-build multilib-minimal
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2018-03-29  6:17 Sergei Trofimovich
  0 siblings, 0 replies; 88+ messages in thread
From: Sergei Trofimovich @ 2018-03-29  6:17 UTC (permalink / raw
  To: gentoo-commits

commit:     4b2ece45d0fab3bb801c1b8d8975756b8bee004b
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 29 06:17:08 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu Mar 29 06:17:08 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b2ece45

media-libs/lv2: stable 1.14.0-r1 for ppc, bug #645152

Package-Manager: Portage-2.3.26, Repoman-2.3.7
RepoMan-Options: --include-arches="ppc"

 media-libs/lv2/lv2-1.14.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r1.ebuild b/media-libs/lv2/lv2-1.14.0-r1.ebuild
index cd3f64dc7a2..d1a1ff26b74 100644
--- a/media-libs/lv2/lv2-1.14.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~mips ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~mips ppc ~ppc64 ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2018-03-30 17:26 Sergei Trofimovich
  0 siblings, 0 replies; 88+ messages in thread
From: Sergei Trofimovich @ 2018-03-30 17:26 UTC (permalink / raw
  To: gentoo-commits

commit:     f4db7a586f59c8120ac9746f12d3ad34151dd9e8
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 30 17:19:32 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Mar 30 17:26:42 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4db7a58

media-libs/lv2: stable 1.14.0-r1 for ppc64, bug #645152

Package-Manager: Portage-2.3.26, Repoman-2.3.7
RepoMan-Options: --include-arches="ppc64"

 media-libs/lv2/lv2-1.14.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r1.ebuild b/media-libs/lv2/lv2-1.14.0-r1.ebuild
index d1a1ff26b74..9c8cc3b2480 100644
--- a/media-libs/lv2/lv2-1.14.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~mips ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~mips ppc ppc64 ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2018-05-01 11:47 Jeroen Roovers
  0 siblings, 0 replies; 88+ messages in thread
From: Jeroen Roovers @ 2018-05-01 11:47 UTC (permalink / raw
  To: gentoo-commits

commit:     914b10653b508dd4c2c65f32a8cfeadd365ce563
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Tue May  1 11:37:55 2018 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Tue May  1 11:47:31 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=914b1065

media-libs/lv2: Mark ~hppa too.

Package-Manager: Portage-2.3.31, Repoman-2.3.9
RepoMan-Options: --ignore-arches

 media-libs/lv2/lv2-1.14.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r1.ebuild b/media-libs/lv2/lv2-1.14.0-r1.ebuild
index 9c8cc3b2480..617f2a434fa 100644
--- a/media-libs/lv2/lv2-1.14.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~mips ppc ppc64 ~x86"
+KEYWORDS="amd64 ~hppa ~mips ppc ppc64 ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2018-05-05 12:52 Sergei Trofimovich
  0 siblings, 0 replies; 88+ messages in thread
From: Sergei Trofimovich @ 2018-05-05 12:52 UTC (permalink / raw
  To: gentoo-commits

commit:     f637f4ca0d59fc11caa41cbfaad0855625f1e47c
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat May  5 11:49:16 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat May  5 12:52:26 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f637f4ca

media-libs/lv2: keyworded 1.14.0-r1 for ia64, bug #653676

Bug: https://bugs.gentoo.org/653676
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 media-libs/lv2/lv2-1.14.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r1.ebuild b/media-libs/lv2/lv2-1.14.0-r1.ebuild
index 617f2a434fa..f0ff612f42a 100644
--- a/media-libs/lv2/lv2-1.14.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~mips ppc ppc64 ~x86"
+KEYWORDS="amd64 ~hppa ~ia64 ~mips ppc ppc64 ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2018-05-17 13:52 Thomas Deutschmann
  0 siblings, 0 replies; 88+ messages in thread
From: Thomas Deutschmann @ 2018-05-17 13:52 UTC (permalink / raw
  To: gentoo-commits

commit:     6a69e2ad6936aaddbed1116ef0c90e7f8d311a3c
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu May 17 13:41:28 2018 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu May 17 13:52:26 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a69e2ad

media-libs/lv2: x86 stable (bug #645152)

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 media-libs/lv2/lv2-1.14.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r1.ebuild b/media-libs/lv2/lv2-1.14.0-r1.ebuild
index f0ff612f42a..bc2eba9fff5 100644
--- a/media-libs/lv2/lv2-1.14.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ia64 ~mips ppc ppc64 ~x86"
+KEYWORDS="amd64 ~hppa ~ia64 ~mips ppc ppc64 x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2018-07-22  1:55 Mikle Kolyada
  0 siblings, 0 replies; 88+ messages in thread
From: Mikle Kolyada @ 2018-07-22  1:55 UTC (permalink / raw
  To: gentoo-commits

commit:     ed0bfd82fda81e5469ee9c41f612a3cd386bf760
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 22 01:53:25 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Jul 22 01:53:25 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed0bfd82

media-libs/lv2: Add ~arm keyword wrt bug #653676

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-libs/lv2/lv2-1.14.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r1.ebuild b/media-libs/lv2/lv2-1.14.0-r1.ebuild
index bc2eba9fff5..51bbb4a8ba1 100644
--- a/media-libs/lv2/lv2-1.14.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ia64 ~mips ppc ppc64 x86"
+KEYWORDS="amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2018-08-25 21:30 Andreas Sturmlechner
  0 siblings, 0 replies; 88+ messages in thread
From: Andreas Sturmlechner @ 2018-08-25 21:30 UTC (permalink / raw
  To: gentoo-commits

commit:     9d44cadbabd7179b721ab7151318ea298045cb91
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 22 18:53:23 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Aug 25 21:29:51 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d44cadb

media-libs/lv2: Drop old

Package-Manager: Portage-2.3.48, Repoman-2.3.10

 media-libs/lv2/Manifest             |  2 --
 media-libs/lv2/lv2-1.10.0-r1.ebuild | 47 ------------------------------------
 media-libs/lv2/lv2-1.12.0.ebuild    | 48 -------------------------------------
 media-libs/lv2/lv2-1.14.0.ebuild    | 48 -------------------------------------
 4 files changed, 145 deletions(-)

diff --git a/media-libs/lv2/Manifest b/media-libs/lv2/Manifest
index 70da77124a7..18a19362a84 100644
--- a/media-libs/lv2/Manifest
+++ b/media-libs/lv2/Manifest
@@ -1,3 +1 @@
-DIST lv2-1.10.0.tar.bz2 422018 BLAKE2B ea624a3be78da242bf4f4a79c6c33ddf473df1e4a861f3431b0eaabdd560b1e631825a5275bbb3fdb312e63c82aa0cc29b511e4af61d0076aab115d39c9dd87f SHA512 e7704101a3ef95a235e76fde862c94c605769c862e4ffd059e4059245f1a1402e4c2b0e7265797fefb5cfc67d3724c815acf6ef3a31d5eab52162a62a303ee5c
-DIST lv2-1.12.0.tar.bz2 399666 BLAKE2B 6a28f9b2971c6f3077859fdcd097ebada445a607bdd2d410459c410d67c065daefe666b02f45b1d9169a4bd72e72a82de7046e8edc080c079ecd11d230339470 SHA512 acc5e05eeeb5291fe5b64e30b5c00a6ef7136922fab7846efc05ccacdeff4d7714f705e632d5b3f6a5314cb3a7b847528fd717fc9ebb5d6f39653c53ac261f85
 DIST lv2-1.14.0.tar.bz2 386438 BLAKE2B e09e6c2b1bbf24d5896e7803b970fd8877a5b6a9ded0fcf294561c365d5f0b2e89503c0306b02dd956f7ac6ebd9df4ca0c0a17564ef3851443d81847dd41b261 SHA512 6991d848ed9f04a48ca3070efc15af83431f680aa8a8559a02b1666f7b8d43af8e089f78c3b14ad3345dac32fd1c8ad0faf3a3f56dddc07c6f0e0aeef4077498

diff --git a/media-libs/lv2/lv2-1.10.0-r1.ebuild b/media-libs/lv2/lv2-1.10.0-r1.ebuild
deleted file mode 100644
index d1f7405952a..00000000000
--- a/media-libs/lv2/lv2-1.10.0-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-PYTHON_REQ_USE='threads(+)'
-
-inherit python-single-r1 waf-utils
-
-DESCRIPTION="LV2 is a simple but extensible successor of LADSPA"
-HOMEPAGE="http://lv2plug.in/"
-SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~mips ~ppc ~ppc64 x86"
-IUSE="doc plugins"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="
-	${PYTHON_DEPS}
-	plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )"
-RDEPEND="${DEPEND}
-	dev-python/lxml[${PYTHON_USEDEP}]
-	dev-python/pygments[${PYTHON_USEDEP}]
-	dev-python/rdflib[${PYTHON_USEDEP}]
-	!<media-libs/slv2-0.4.2
-	!media-libs/lv2core
-	!media-libs/lv2-ui"
-DEPEND="${DEPEND}
-	plugins? ( virtual/pkgconfig )
-	doc? ( app-doc/doxygen dev-python/rdflib )"
-DOCS=( "README" "NEWS" )
-
-src_configure() {
-	waf-utils_src_configure \
-		--docdir="${EPREFIX}"/usr/share/doc/${PF} \
-		$(use plugins || echo " --no-plugins") \
-		$(use doc     && echo " --docs"      )
-}
-
-src_install() {
-	waf-utils_src_install
-
-	python_fix_shebang "${D}"
-}

diff --git a/media-libs/lv2/lv2-1.12.0.ebuild b/media-libs/lv2/lv2-1.12.0.ebuild
deleted file mode 100644
index c3b77a3eadf..00000000000
--- a/media-libs/lv2/lv2-1.12.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-PYTHON_REQ_USE='threads(+)'
-
-inherit python-single-r1 waf-utils multilib
-
-DESCRIPTION="A simple but extensible successor of LADSPA"
-HOMEPAGE="http://lv2plug.in/"
-SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~x86"
-IUSE="doc plugins"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="
-	${PYTHON_DEPS}
-	plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )"
-RDEPEND="${DEPEND}
-	dev-python/lxml[${PYTHON_USEDEP}]
-	dev-python/pygments[${PYTHON_USEDEP}]
-	dev-python/rdflib[${PYTHON_USEDEP}]
-	!<media-libs/slv2-0.4.2
-	!media-libs/lv2core
-	!media-libs/lv2-ui"
-DEPEND="${DEPEND}
-	plugins? ( virtual/pkgconfig )
-	doc? ( app-doc/doxygen dev-python/rdflib )"
-DOCS=( "README.md" "NEWS" )
-
-src_configure() {
-	waf-utils_src_configure \
-		--docdir="${EPREFIX}"/usr/share/doc/${PF} \
-		--lv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2 \
-		$(use plugins || echo " --no-plugins") \
-		$(use doc     && echo " --docs"      )
-}
-
-src_install() {
-	waf-utils_src_install
-
-	python_fix_shebang "${D}"
-}

diff --git a/media-libs/lv2/lv2-1.14.0.ebuild b/media-libs/lv2/lv2-1.14.0.ebuild
deleted file mode 100644
index a3c3d0d5e89..00000000000
--- a/media-libs/lv2/lv2-1.14.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-PYTHON_REQ_USE='threads(+)'
-
-inherit python-single-r1 waf-utils multilib
-
-DESCRIPTION="A simple but extensible successor of LADSPA"
-HOMEPAGE="http://lv2plug.in/"
-SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~mips ppc ppc64 x86"
-IUSE="doc plugins"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="
-	${PYTHON_DEPS}
-	plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )"
-RDEPEND="${DEPEND}
-	dev-python/lxml[${PYTHON_USEDEP}]
-	dev-python/pygments[${PYTHON_USEDEP}]
-	dev-python/rdflib[${PYTHON_USEDEP}]
-	!<media-libs/slv2-0.4.2
-	!media-libs/lv2core
-	!media-libs/lv2-ui"
-DEPEND="${DEPEND}
-	plugins? ( virtual/pkgconfig )
-	doc? ( app-doc/doxygen dev-python/rdflib )"
-DOCS=( "README.md" "NEWS" )
-
-src_configure() {
-	waf-utils_src_configure \
-		--docdir="${EPREFIX}"/usr/share/doc/${PF} \
-		--lv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2 \
-		$(use plugins || echo " --no-plugins") \
-		$(use doc     && echo " --docs"      )
-}
-
-src_install() {
-	waf-utils_src_install
-
-	python_fix_shebang "${D}"
-}


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2018-12-23  3:25 Matt Turner
  0 siblings, 0 replies; 88+ messages in thread
From: Matt Turner @ 2018-12-23  3:25 UTC (permalink / raw
  To: gentoo-commits

commit:     59547dc46f4308bca62970eb503c5e5631ec2a22
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 23 03:23:31 2018 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Dec 23 03:23:46 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59547dc4

media-libs/lv2-1.14.0-r1: added ~alpha, bug 653676

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 media-libs/lv2/lv2-1.14.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r1.ebuild b/media-libs/lv2/lv2-1.14.0-r1.ebuild
index 51bbb4a8ba1..81025336102 100644
--- a/media-libs/lv2/lv2-1.14.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2019-02-18 19:24 Alexis Ballier
  0 siblings, 0 replies; 88+ messages in thread
From: Alexis Ballier @ 2019-02-18 19:24 UTC (permalink / raw
  To: gentoo-commits

commit:     0ededcff2352aaaf728b9b7fb9364f8459facf52
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 18 19:24:08 2019 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Feb 18 19:24:08 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ededcff

media-libs/lv2: keyword ~arm64

Package-Manager: Portage-2.3.61, Repoman-2.3.12
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 media-libs/lv2/lv2-1.14.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r1.ebuild b/media-libs/lv2/lv2-1.14.0-r1.ebuild
index 81025336102..9ad136d8841 100644
--- a/media-libs/lv2/lv2-1.14.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2019-05-21 21:50 Aaron Bauman
  0 siblings, 0 replies; 88+ messages in thread
From: Aaron Bauman @ 2019-05-21 21:50 UTC (permalink / raw
  To: gentoo-commits

commit:     df6124d093000d91dff83114c77a2cd0d5023133
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Tue May 21 21:08:35 2019 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Tue May 21 21:49:46 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df6124d0

media-libs/lv2: arm64 stable

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.12
RepoMan-Options: --include-arches="arm64"

 media-libs/lv2/lv2-1.14.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r1.ebuild b/media-libs/lv2/lv2-1.14.0-r1.ebuild
index e5aff379a1e..4e83f368f3a 100644
--- a/media-libs/lv2/lv2-1.14.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2019-05-24 20:18 Sergei Trofimovich
  0 siblings, 0 replies; 88+ messages in thread
From: Sergei Trofimovich @ 2019-05-24 20:18 UTC (permalink / raw
  To: gentoo-commits

commit:     ef8164a2a1e73386159634c005957f207db6399a
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Fri May 24 20:14:51 2019 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri May 24 20:14:51 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef8164a2

media-libs/lv2: stable 1.14.0-r1 for ia64, bug #686594

Package-Manager: Portage-2.3.66, Repoman-2.3.12
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 media-libs/lv2/lv2-1.14.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r1.ebuild b/media-libs/lv2/lv2-1.14.0-r1.ebuild
index 4e83f368f3a..29d679d7f4b 100644
--- a/media-libs/lv2/lv2-1.14.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~mips ppc ppc64 x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2019-05-26 11:10 Mikle Kolyada
  0 siblings, 0 replies; 88+ messages in thread
From: Mikle Kolyada @ 2019-05-26 11:10 UTC (permalink / raw
  To: gentoo-commits

commit:     aaafc2f72b758fccad9ba651be3e818fb98fe740
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun May 26 11:09:58 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun May 26 11:09:58 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaafc2f7

media-libs/lv2: arm stable wrt bug #686594

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="arm"

 media-libs/lv2/lv2-1.14.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r1.ebuild b/media-libs/lv2/lv2-1.14.0-r1.ebuild
index 29d679d7f4b..6c55e729105 100644
--- a/media-libs/lv2/lv2-1.14.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~mips ppc ppc64 x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2019-06-06  6:46 Agostino Sarubbo
  0 siblings, 0 replies; 88+ messages in thread
From: Agostino Sarubbo @ 2019-06-06  6:46 UTC (permalink / raw
  To: gentoo-commits

commit:     2a765c90caeca18b0ab6daf66bc7bf77747c1733
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Jun  6 06:44:49 2019 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Jun  6 06:44:49 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a765c90

media-libs/lv2: alpha stable wrt bug #686594

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="alpha"

 media-libs/lv2/lv2-1.14.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r1.ebuild b/media-libs/lv2/lv2-1.14.0-r1.ebuild
index 6c55e729105..b2376708fca 100644
--- a/media-libs/lv2/lv2-1.14.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 x86"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2019-06-20 18:04 Sergei Trofimovich
  0 siblings, 0 replies; 88+ messages in thread
From: Sergei Trofimovich @ 2019-06-20 18:04 UTC (permalink / raw
  To: gentoo-commits

commit:     11298cdc2bcc27374ac341aa8202ac32adc8023a
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Thu Jun 20 16:06:57 2019 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu Jun 20 18:03:47 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11298cdc

media-libs/lv2: stable 1.14.0-r1 for hppa, bug #686594

Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 media-libs/lv2/lv2-1.14.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r1.ebuild b/media-libs/lv2/lv2-1.14.0-r1.ebuild
index b2376708fca..05452429abc 100644
--- a/media-libs/lv2/lv2-1.14.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2019-09-14  5:03 Matt Turner
  0 siblings, 0 replies; 88+ messages in thread
From: Matt Turner @ 2019-09-14  5:03 UTC (permalink / raw
  To: gentoo-commits

commit:     d3d282deb77d24a819e6185eda97e859d76b2d34
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 14 05:02:58 2019 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Sep 14 05:02:58 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3d282de

media-libs/lv2-1.14.0-r1: add ~sparc

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 media-libs/lv2/lv2-1.14.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r1.ebuild b/media-libs/lv2/lv2-1.14.0-r1.ebuild
index 05452429abc..e1a94a58d6a 100644
--- a/media-libs/lv2/lv2-1.14.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2019-12-14 13:01 Miroslav Šulc
  0 siblings, 0 replies; 88+ messages in thread
From: Miroslav Šulc @ 2019-12-14 13:01 UTC (permalink / raw
  To: gentoo-commits

commit:     d90068a809652013e68f5d44aa555bdcbf47158c
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 14 12:58:29 2019 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sat Dec 14 13:01:40 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d90068a8

media-libs/lv2-1.16.0: bump

1) removed python2_7, added python3_7
2) reorganized deps, removed obsolete blockers

Closes: https://bugs.gentoo.org/696394
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/lv2/Manifest          |  1 +
 media-libs/lv2/lv2-1.16.0.ebuild | 57 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 58 insertions(+)

diff --git a/media-libs/lv2/Manifest b/media-libs/lv2/Manifest
index 18a19362a84..3f3b100127d 100644
--- a/media-libs/lv2/Manifest
+++ b/media-libs/lv2/Manifest
@@ -1 +1,2 @@
 DIST lv2-1.14.0.tar.bz2 386438 BLAKE2B e09e6c2b1bbf24d5896e7803b970fd8877a5b6a9ded0fcf294561c365d5f0b2e89503c0306b02dd956f7ac6ebd9df4ca0c0a17564ef3851443d81847dd41b261 SHA512 6991d848ed9f04a48ca3070efc15af83431f680aa8a8559a02b1666f7b8d43af8e089f78c3b14ad3345dac32fd1c8ad0faf3a3f56dddc07c6f0e0aeef4077498
+DIST lv2-1.16.0.tar.bz2 502116 BLAKE2B 00b364311f61b1a9f251d8eb3e27b66d4a59e313006df549dbb80fc6a1106b588bc59c7766910037ee093254d96e508f8538615666833b0c00c8282301bfe0e4 SHA512 ead6d590cded5dd7a548d6ffe0f2f9f8efadfa7bb9e8b4fa0aea6664ccdfbb3ca697514bddebe695a9442fba5b62714b5cd45c1bf7d0aaef12ffe50972c2d88c

diff --git a/media-libs/lv2/lv2-1.16.0.ebuild b/media-libs/lv2/lv2-1.16.0.ebuild
new file mode 100644
index 00000000000..2dc4fcf3dd6
--- /dev/null
+++ b/media-libs/lv2/lv2-1.16.0.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{5,6,7} )
+PYTHON_REQ_USE='threads(+)'
+
+inherit python-single-r1 waf-utils multilib-build multilib-minimal
+
+DESCRIPTION="A simple but extensible successor of LADSPA"
+HOMEPAGE="http://lv2plug.in/"
+SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc plugins"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+BDEPEND="
+	plugins? ( virtual/pkgconfig )
+	doc? ( app-doc/doxygen dev-python/rdflib )
+"
+CDEPEND="
+	${PYTHON_DEPS}
+	plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )
+"
+DEPEND="${CDEPEND}"
+RDEPEND="
+	${CDEPEND}
+	dev-python/lxml[${PYTHON_USEDEP}]
+	dev-python/pygments[${PYTHON_USEDEP}]
+	dev-python/rdflib[${PYTHON_USEDEP}]
+"
+DOCS=( "README.md" "NEWS" )
+
+src_prepare() {
+	default
+	multilib_copy_sources
+}
+
+multilib_src_configure() {
+	waf-utils_src_configure \
+		--docdir="${EPREFIX}"/usr/share/doc/${PF} \
+		--lv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2 \
+		$(use plugins || echo " --no-plugins") \
+		$(multilib_native_usex doc --docs "")
+}
+
+multilib_src_install() {
+	waf-utils_src_install
+}
+
+multilib_src_install_all() {
+	python_fix_shebang "${D}"
+}


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-01-17  9:29 Agostino Sarubbo
  0 siblings, 0 replies; 88+ messages in thread
From: Agostino Sarubbo @ 2020-01-17  9:29 UTC (permalink / raw
  To: gentoo-commits

commit:     c7079ca577ea4aa239ec089549c59172f19a8d3c
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 17 09:29:31 2020 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jan 17 09:29:54 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7079ca5

media-libs/lv2: amd64 stable wrt bug #705616

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 media-libs/lv2/lv2-1.16.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.16.0.ebuild b/media-libs/lv2/lv2-1.16.0.ebuild
index 73231267157..d3b44952a6c 100644
--- a/media-libs/lv2/lv2-1.16.0.ebuild
+++ b/media-libs/lv2/lv2-1.16.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-01-17  9:33 Agostino Sarubbo
  0 siblings, 0 replies; 88+ messages in thread
From: Agostino Sarubbo @ 2020-01-17  9:33 UTC (permalink / raw
  To: gentoo-commits

commit:     7bdf1041bf558c39ee881b3b4ebc9bebc877a3ca
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 17 09:33:21 2020 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jan 17 09:33:21 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bdf1041

media-libs/lv2: ppc stable wrt bug #705616

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 media-libs/lv2/lv2-1.16.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.16.0.ebuild b/media-libs/lv2/lv2-1.16.0.ebuild
index d3b44952a6c..5a094ec6c88 100644
--- a/media-libs/lv2/lv2-1.16.0.ebuild
+++ b/media-libs/lv2/lv2-1.16.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-01-17 10:27 Agostino Sarubbo
  0 siblings, 0 replies; 88+ messages in thread
From: Agostino Sarubbo @ 2020-01-17 10:27 UTC (permalink / raw
  To: gentoo-commits

commit:     32c799c3ae489c13d6f3f0407b621d085d84c4db
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 17 10:27:02 2020 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jan 17 10:27:02 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32c799c3

media-libs/lv2: ppc64 stable wrt bug #705616

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 media-libs/lv2/lv2-1.16.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.16.0.ebuild b/media-libs/lv2/lv2-1.16.0.ebuild
index 5a094ec6c88..fffcb391f64 100644
--- a/media-libs/lv2/lv2-1.16.0.ebuild
+++ b/media-libs/lv2/lv2-1.16.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-01-17 10:45 Agostino Sarubbo
  0 siblings, 0 replies; 88+ messages in thread
From: Agostino Sarubbo @ 2020-01-17 10:45 UTC (permalink / raw
  To: gentoo-commits

commit:     0cd240e1a3baa43f4cb6e16f4a48eccde79bc175
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 17 10:45:08 2020 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jan 17 10:45:08 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cd240e1

media-libs/lv2: x86 stable wrt bug #705616

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 media-libs/lv2/lv2-1.16.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.16.0.ebuild b/media-libs/lv2/lv2-1.16.0.ebuild
index fffcb391f64..4cf0c0da07a 100644
--- a/media-libs/lv2/lv2-1.16.0.ebuild
+++ b/media-libs/lv2/lv2-1.16.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-01-17 12:25 Agostino Sarubbo
  0 siblings, 0 replies; 88+ messages in thread
From: Agostino Sarubbo @ 2020-01-17 12:25 UTC (permalink / raw
  To: gentoo-commits

commit:     15e171c8a6536bce8e02d24158696d2bbc23c934
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 17 12:25:16 2020 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jan 17 12:25:16 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15e171c8

media-libs/lv2: ia64 stable wrt bug #705616

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 media-libs/lv2/lv2-1.16.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.16.0.ebuild b/media-libs/lv2/lv2-1.16.0.ebuild
index 4cf0c0da07a..074b6fe2d2c 100644
--- a/media-libs/lv2/lv2-1.16.0.ebuild
+++ b/media-libs/lv2/lv2-1.16.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-01-20 22:11 Sergei Trofimovich
  0 siblings, 0 replies; 88+ messages in thread
From: Sergei Trofimovich @ 2020-01-20 22:11 UTC (permalink / raw
  To: gentoo-commits

commit:     94a269ee239ab17d2c06c189f5e808a56d546472
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 20 22:10:23 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Jan 20 22:10:23 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94a269ee

media-libs/lv2: stable 1.16.0 for hppa, bug #705616

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 media-libs/lv2/lv2-1.16.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.16.0.ebuild b/media-libs/lv2/lv2-1.16.0.ebuild
index 074b6fe2d2c..996f3ba4b61 100644
--- a/media-libs/lv2/lv2-1.16.0.ebuild
+++ b/media-libs/lv2/lv2-1.16.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-01-27 12:29 Mikle Kolyada
  0 siblings, 0 replies; 88+ messages in thread
From: Mikle Kolyada @ 2020-01-27 12:29 UTC (permalink / raw
  To: gentoo-commits

commit:     0cc131e154dfbd44a56b8a77db5a9bc9859f7ddb
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 27 12:29:11 2020 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Mon Jan 27 12:29:52 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cc131e1

media-libs/lv2: arm stable wrt bug #705616

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="arm"
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 media-libs/lv2/lv2-1.16.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.16.0.ebuild b/media-libs/lv2/lv2-1.16.0.ebuild
index 996f3ba4b61..ea755948b20 100644
--- a/media-libs/lv2/lv2-1.16.0.ebuild
+++ b/media-libs/lv2/lv2-1.16.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-02-09 16:29 Michał Górny
  0 siblings, 0 replies; 88+ messages in thread
From: Michał Górny @ 2020-02-09 16:29 UTC (permalink / raw
  To: gentoo-commits

commit:     97597964ca0fea331536a5dea170fba57c2e9270
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Feb  7 16:39:45 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Feb  9 16:27:00 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97597964

media-libs/lv2: Switch to PYTHON_MULTI_USEDEP API

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 media-libs/lv2/{lv2-1.14.0-r1.ebuild => lv2-1.14.0-r2.ebuild} | 8 +++++---
 media-libs/lv2/{lv2-1.16.0.ebuild => lv2-1.16.0-r1.ebuild}    | 8 +++++---
 2 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r1.ebuild b/media-libs/lv2/lv2-1.14.0-r2.ebuild
similarity index 88%
rename from media-libs/lv2/lv2-1.14.0-r1.ebuild
rename to media-libs/lv2/lv2-1.14.0-r2.ebuild
index 9c33a5afd09..fd9a5fe44ea 100644
--- a/media-libs/lv2/lv2-1.14.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r2.ebuild
@@ -22,9 +22,11 @@ DEPEND="
 	${PYTHON_DEPS}
 	plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )"
 RDEPEND="${DEPEND}
-	dev-python/lxml[${PYTHON_USEDEP}]
-	dev-python/pygments[${PYTHON_USEDEP}]
-	dev-python/rdflib[${PYTHON_USEDEP}]
+	$(python_gen_cond_dep '
+		dev-python/lxml[${PYTHON_MULTI_USEDEP}]
+		dev-python/pygments[${PYTHON_MULTI_USEDEP}]
+		dev-python/rdflib[${PYTHON_MULTI_USEDEP}]
+	')
 	!<media-libs/slv2-0.4.2
 	!media-libs/lv2core
 	!media-libs/lv2-ui"

diff --git a/media-libs/lv2/lv2-1.16.0.ebuild b/media-libs/lv2/lv2-1.16.0-r1.ebuild
similarity index 88%
rename from media-libs/lv2/lv2-1.16.0.ebuild
rename to media-libs/lv2/lv2-1.16.0-r1.ebuild
index ea755948b20..135b11725f7 100644
--- a/media-libs/lv2/lv2-1.16.0.ebuild
+++ b/media-libs/lv2/lv2-1.16.0-r1.ebuild
@@ -29,9 +29,11 @@ CDEPEND="
 DEPEND="${CDEPEND}"
 RDEPEND="
 	${CDEPEND}
-	dev-python/lxml[${PYTHON_USEDEP}]
-	dev-python/pygments[${PYTHON_USEDEP}]
-	dev-python/rdflib[${PYTHON_USEDEP}]
+	$(python_gen_cond_dep '
+		dev-python/lxml[${PYTHON_MULTI_USEDEP}]
+		dev-python/pygments[${PYTHON_MULTI_USEDEP}]
+		dev-python/rdflib[${PYTHON_MULTI_USEDEP}]
+	')
 "
 DOCS=( "README.md" "NEWS" )
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-02-10 12:12 Michał Górny
  0 siblings, 0 replies; 88+ messages in thread
From: Michał Górny @ 2020-02-10 12:12 UTC (permalink / raw
  To: gentoo-commits

commit:     a1bd6727fd7d1542d1fafefbb34627a12b7e8837
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 10 11:58:01 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Feb 10 12:12:32 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1bd6727

media-libs/lv2: Remove py2

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 media-libs/lv2/lv2-1.14.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r2.ebuild b/media-libs/lv2/lv2-1.14.0-r2.ebuild
index fd9a5fe44ea..d44fb841aaa 100644
--- a/media-libs/lv2/lv2-1.14.0-r2.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python{2_7,3_6} )
+PYTHON_COMPAT=( python3_6 )
 PYTHON_REQ_USE='threads(+)'
 
 inherit python-single-r1 waf-utils multilib-build multilib-minimal


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-04-01 21:01 Mart Raudsepp
  0 siblings, 0 replies; 88+ messages in thread
From: Mart Raudsepp @ 2020-04-01 21:01 UTC (permalink / raw
  To: gentoo-commits

commit:     297cecdfa74734406a38db5d083193b8892942b3
Author:     Sam James (sam_c) <sam <AT> cmpct <DOT> info>
AuthorDate: Wed Apr  1 18:10:51 2020 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Wed Apr  1 20:59:30 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=297cecdf

media-libs/lv2: arm64 stable (bug #705616)

Signed-off-by: Sam James (sam_c) <sam <AT> cmpct.info>
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>

 media-libs/lv2/lv2-1.16.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.16.0-r1.ebuild b/media-libs/lv2/lv2-1.16.0-r1.ebuild
index 135b11725f7..91a2e1d8a0d 100644
--- a/media-libs/lv2/lv2-1.16.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.16.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-04-13 13:05 Sergei Trofimovich
  0 siblings, 0 replies; 88+ messages in thread
From: Sergei Trofimovich @ 2020-04-13 13:05 UTC (permalink / raw
  To: gentoo-commits

commit:     2d7402d842bbb8a3471ffaf7078a594d98df03c7
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Mon Apr 13 08:43:37 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Apr 13 13:05:39 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d7402d8

media-libs/lv2: drop to ~hppa

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 media-libs/lv2/lv2-1.14.0-r2.ebuild | 2 +-
 media-libs/lv2/lv2-1.16.0-r1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r2.ebuild b/media-libs/lv2/lv2-1.14.0-r2.ebuild
index cb3a8bc5229..b7351ced68e 100644
--- a/media-libs/lv2/lv2-1.14.0-r2.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 

diff --git a/media-libs/lv2/lv2-1.16.0-r1.ebuild b/media-libs/lv2/lv2-1.16.0-r1.ebuild
index d058971ab84..f55b702ccae 100644
--- a/media-libs/lv2/lv2-1.16.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.16.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-06-04  9:06 David Seifert
  0 siblings, 0 replies; 88+ messages in thread
From: David Seifert @ 2020-06-04  9:06 UTC (permalink / raw
  To: gentoo-commits

commit:     2585619faf26f17cfcf32ae26baf61a1573f2809
Author:     Alexey Sokolov <sokolov <AT> google <DOT> com>
AuthorDate: Thu Jun  4 09:06:00 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jun  4 09:06:00 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2585619f

media-libs/lv2: update homepage

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alexey Sokolov <sokolov <AT> google.com>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 media-libs/lv2/lv2-1.14.0-r2.ebuild | 4 ++--
 media-libs/lv2/lv2-1.16.0-r1.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-libs/lv2/lv2-1.14.0-r2.ebuild b/media-libs/lv2/lv2-1.14.0-r2.ebuild
index b7351ced68e..766c421292c 100644
--- a/media-libs/lv2/lv2-1.14.0-r2.ebuild
+++ b/media-libs/lv2/lv2-1.14.0-r2.ebuild
@@ -9,8 +9,8 @@ PYTHON_REQ_USE='threads(+)'
 inherit python-single-r1 waf-utils multilib-build multilib-minimal
 
 DESCRIPTION="A simple but extensible successor of LADSPA"
-HOMEPAGE="http://lv2plug.in/"
-SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
+HOMEPAGE="https://lv2plug.in/"
+SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"

diff --git a/media-libs/lv2/lv2-1.16.0-r1.ebuild b/media-libs/lv2/lv2-1.16.0-r1.ebuild
index f55b702ccae..d7b0d73f20b 100644
--- a/media-libs/lv2/lv2-1.16.0-r1.ebuild
+++ b/media-libs/lv2/lv2-1.16.0-r1.ebuild
@@ -9,8 +9,8 @@ PYTHON_REQ_USE='threads(+)'
 inherit python-single-r1 waf-utils multilib-build multilib-minimal
 
 DESCRIPTION="A simple but extensible successor of LADSPA"
-HOMEPAGE="http://lv2plug.in/"
-SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"
+HOMEPAGE="https://lv2plug.in/"
+SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-06-10  7:19 Miroslav Šulc
  0 siblings, 0 replies; 88+ messages in thread
From: Miroslav Šulc @ 2020-06-10  7:19 UTC (permalink / raw
  To: gentoo-commits

commit:     d6c27bde2d48a768284adf8b53d39fe43bcb720d
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 10 07:18:59 2020 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Wed Jun 10 07:18:59 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6c27bde

media-libs/lv2: removed obsolete 1.14.0-r2

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/lv2/Manifest             |  1 -
 media-libs/lv2/lv2-1.14.0-r2.ebuild | 57 -------------------------------------
 2 files changed, 58 deletions(-)

diff --git a/media-libs/lv2/Manifest b/media-libs/lv2/Manifest
index 3f3b100127d..034ed6c8906 100644
--- a/media-libs/lv2/Manifest
+++ b/media-libs/lv2/Manifest
@@ -1,2 +1 @@
-DIST lv2-1.14.0.tar.bz2 386438 BLAKE2B e09e6c2b1bbf24d5896e7803b970fd8877a5b6a9ded0fcf294561c365d5f0b2e89503c0306b02dd956f7ac6ebd9df4ca0c0a17564ef3851443d81847dd41b261 SHA512 6991d848ed9f04a48ca3070efc15af83431f680aa8a8559a02b1666f7b8d43af8e089f78c3b14ad3345dac32fd1c8ad0faf3a3f56dddc07c6f0e0aeef4077498
 DIST lv2-1.16.0.tar.bz2 502116 BLAKE2B 00b364311f61b1a9f251d8eb3e27b66d4a59e313006df549dbb80fc6a1106b588bc59c7766910037ee093254d96e508f8538615666833b0c00c8282301bfe0e4 SHA512 ead6d590cded5dd7a548d6ffe0f2f9f8efadfa7bb9e8b4fa0aea6664ccdfbb3ca697514bddebe695a9442fba5b62714b5cd45c1bf7d0aaef12ffe50972c2d88c

diff --git a/media-libs/lv2/lv2-1.14.0-r2.ebuild b/media-libs/lv2/lv2-1.14.0-r2.ebuild
deleted file mode 100644
index 766c421292c..00000000000
--- a/media-libs/lv2/lv2-1.14.0-r2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-PYTHON_REQ_USE='threads(+)'
-
-inherit python-single-r1 waf-utils multilib-build multilib-minimal
-
-DESCRIPTION="A simple but extensible successor of LADSPA"
-HOMEPAGE="https://lv2plug.in/"
-SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
-IUSE="doc plugins"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="
-	${PYTHON_DEPS}
-	plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )"
-RDEPEND="${DEPEND}
-	$(python_gen_cond_dep '
-		dev-python/lxml[${PYTHON_MULTI_USEDEP}]
-		dev-python/pygments[${PYTHON_MULTI_USEDEP}]
-		dev-python/rdflib[${PYTHON_MULTI_USEDEP}]
-	')
-	!<media-libs/slv2-0.4.2
-	!media-libs/lv2core
-	!media-libs/lv2-ui"
-DEPEND="${DEPEND}
-	plugins? ( virtual/pkgconfig )
-	doc? ( app-doc/doxygen dev-python/rdflib )"
-DOCS=( "README.md" "NEWS" )
-
-src_prepare() {
-	default
-	multilib_copy_sources
-}
-
-multilib_src_configure() {
-	waf-utils_src_configure \
-		--docdir="${EPREFIX}"/usr/share/doc/${PF} \
-		--lv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2 \
-		$(use plugins || echo " --no-plugins") \
-		$(multilib_native_usex doc --docs "")
-}
-
-multilib_src_install() {
-	waf-utils_src_install
-}
-
-multilib_src_install_all() {
-	python_fix_shebang "${D}"
-}


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-06-10  7:53 Miroslav Šulc
  0 siblings, 0 replies; 88+ messages in thread
From: Miroslav Šulc @ 2020-06-10  7:53 UTC (permalink / raw
  To: gentoo-commits

commit:     ba53ca566d07727941f76217bcf8d838fc4b9e35
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 10 07:52:46 2020 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Wed Jun 10 07:53:10 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba53ca56

media-libs/lv2: bumped to 1.18.0

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/lv2/Manifest          |  1 +
 media-libs/lv2/lv2-1.18.0.ebuild | 59 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)

diff --git a/media-libs/lv2/Manifest b/media-libs/lv2/Manifest
index 034ed6c8906..67264353892 100644
--- a/media-libs/lv2/Manifest
+++ b/media-libs/lv2/Manifest
@@ -1 +1,2 @@
 DIST lv2-1.16.0.tar.bz2 502116 BLAKE2B 00b364311f61b1a9f251d8eb3e27b66d4a59e313006df549dbb80fc6a1106b588bc59c7766910037ee093254d96e508f8538615666833b0c00c8282301bfe0e4 SHA512 ead6d590cded5dd7a548d6ffe0f2f9f8efadfa7bb9e8b4fa0aea6664ccdfbb3ca697514bddebe695a9442fba5b62714b5cd45c1bf7d0aaef12ffe50972c2d88c
+DIST lv2-1.18.0.tar.bz2 530172 BLAKE2B 2d9c7fe6e4de1d68762445061907873ff98871277fe0e423c34b0e9586cc8bfc7674787c020f3c01731204e80262a52902676f6cec8c8a6c18a97953cc626d3e SHA512 9e8dd9c1f30371260d21efc105b1d4d4ad03d9e332d4d3877d873f20b9527bcd0e917ff23fc6e0a9cc4337bda85882c742f225f7cf4fbc8a8a0964565c91f9d9

diff --git a/media-libs/lv2/lv2-1.18.0.ebuild b/media-libs/lv2/lv2-1.18.0.ebuild
new file mode 100644
index 00000000000..619c9ed011b
--- /dev/null
+++ b/media-libs/lv2/lv2-1.18.0.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_REQ_USE='threads(+)'
+
+inherit python-single-r1 waf-utils multilib-build multilib-minimal
+
+DESCRIPTION="A simple but extensible successor of LADSPA"
+HOMEPAGE="https://lv2plug.in/"
+SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc plugins"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+BDEPEND="
+	plugins? ( virtual/pkgconfig )
+	doc? ( app-doc/doxygen dev-python/rdflib )
+"
+CDEPEND="
+	${PYTHON_DEPS}
+	plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )
+"
+DEPEND="${CDEPEND}"
+RDEPEND="
+	${CDEPEND}
+	$(python_gen_cond_dep '
+		dev-python/lxml[${PYTHON_MULTI_USEDEP}]
+		dev-python/pygments[${PYTHON_MULTI_USEDEP}]
+		dev-python/rdflib[${PYTHON_MULTI_USEDEP}]
+	')
+"
+DOCS=( "README.md" "NEWS" )
+
+src_prepare() {
+	default
+	multilib_copy_sources
+}
+
+multilib_src_configure() {
+	waf-utils_src_configure \
+		--docdir="${EPREFIX}"/usr/share/doc/${PF} \
+		--lv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2 \
+		$(use plugins || echo " --no-plugins") \
+		$(multilib_native_usex doc --docs "")
+}
+
+multilib_src_install() {
+	waf-utils_src_install
+}
+
+multilib_src_install_all() {
+	python_fix_shebang "${D}"
+}


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-06-20 10:34 Miroslav Šulc
  0 siblings, 0 replies; 88+ messages in thread
From: Miroslav Šulc @ 2020-06-20 10:34 UTC (permalink / raw
  To: gentoo-commits

commit:     2ce0ce31a24044dcd300f520da9751794d881e87
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 20 10:34:12 2020 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sat Jun 20 10:34:31 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ce0ce31

media-libs/lv2: added python 3.8 and 3.9 to 1.18.0

Closes: https://bugs.gentoo.org/727376
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.0.ebuild b/media-libs/lv2/lv2-1.18.0.ebuild
index 619c9ed011b..a3daaf8fa59 100644
--- a/media-libs/lv2/lv2-1.18.0.ebuild
+++ b/media-libs/lv2/lv2-1.18.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 PYTHON_REQ_USE='threads(+)'
 
 inherit python-single-r1 waf-utils multilib-build multilib-minimal


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-07-10 12:09 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2020-07-10 12:09 UTC (permalink / raw
  To: gentoo-commits

commit:     4b362437fb7c17f836895ed1249c35b2849ad0cc
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 10 12:04:50 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 10 12:09:18 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b362437

media-libs/lv2: arm64 stable (bug #732058)

Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.0.ebuild b/media-libs/lv2/lv2-1.18.0.ebuild
index a3daaf8fa59..429b8c5aa4b 100644
--- a/media-libs/lv2/lv2-1.18.0.ebuild
+++ b/media-libs/lv2/lv2-1.18.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-07-11 19:55 Sergei Trofimovich
  0 siblings, 0 replies; 88+ messages in thread
From: Sergei Trofimovich @ 2020-07-11 19:55 UTC (permalink / raw
  To: gentoo-commits

commit:     64627365ba24a33b4d787dae73bcb0ed5db7a686
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 11 19:53:06 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Jul 11 19:54:03 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64627365

media-libs/lv2: stable 1.18.0 for ppc64

stable wrt bug #732058

Package-Manager: Portage-2.3.103, Repoman-2.3.23
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.0.ebuild b/media-libs/lv2/lv2-1.18.0.ebuild
index 429b8c5aa4b..66350344046 100644
--- a/media-libs/lv2/lv2-1.18.0.ebuild
+++ b/media-libs/lv2/lv2-1.18.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-07-15 12:19 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2020-07-15 12:19 UTC (permalink / raw
  To: gentoo-commits

commit:     d83c9b6204527125dc42d3c85146a4518f0b165f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 15 12:18:58 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 15 12:18:58 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d83c9b62

media-libs/lv2: arm stable (bug #732058)

Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.0.ebuild b/media-libs/lv2/lv2-1.18.0.ebuild
index 66350344046..f972e170932 100644
--- a/media-libs/lv2/lv2-1.18.0.ebuild
+++ b/media-libs/lv2/lv2-1.18.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-07-17  7:21 Agostino Sarubbo
  0 siblings, 0 replies; 88+ messages in thread
From: Agostino Sarubbo @ 2020-07-17  7:21 UTC (permalink / raw
  To: gentoo-commits

commit:     7948dd739e26dbd8157b9991409ce500d1d40276
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 17 07:20:24 2020 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jul 17 07:20:24 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7948dd73

media-libs/lv2: amd64 stable wrt bug #732058

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.0.ebuild b/media-libs/lv2/lv2-1.18.0.ebuild
index f972e170932..0084bae0501 100644
--- a/media-libs/lv2/lv2-1.18.0.ebuild
+++ b/media-libs/lv2/lv2-1.18.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-07-17  7:40 Agostino Sarubbo
  0 siblings, 0 replies; 88+ messages in thread
From: Agostino Sarubbo @ 2020-07-17  7:40 UTC (permalink / raw
  To: gentoo-commits

commit:     909659805218de610c1098d246049b4e45a65663
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 17 07:40:10 2020 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jul 17 07:40:10 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90965980

media-libs/lv2: ppc stable wrt bug #732058

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.0.ebuild b/media-libs/lv2/lv2-1.18.0.ebuild
index 0084bae0501..7868debe22d 100644
--- a/media-libs/lv2/lv2-1.18.0.ebuild
+++ b/media-libs/lv2/lv2-1.18.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-07-17  7:44 Agostino Sarubbo
  0 siblings, 0 replies; 88+ messages in thread
From: Agostino Sarubbo @ 2020-07-17  7:44 UTC (permalink / raw
  To: gentoo-commits

commit:     c6899e6672d6986b5b3822b1bf2613030e7ee256
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 17 07:43:30 2020 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jul 17 07:43:30 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6899e66

media-libs/lv2: x86 stable wrt bug #732058

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.0.ebuild b/media-libs/lv2/lv2-1.18.0.ebuild
index 7868debe22d..23c3b01dc20 100644
--- a/media-libs/lv2/lv2-1.18.0.ebuild
+++ b/media-libs/lv2/lv2-1.18.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2020-07-22  7:07 Miroslav Šulc
  0 siblings, 0 replies; 88+ messages in thread
From: Miroslav Šulc @ 2020-07-22  7:07 UTC (permalink / raw
  To: gentoo-commits

commit:     1007e52dc664f1424ba3d10f92f118312247b151
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 22 07:06:56 2020 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Wed Jul 22 07:07:16 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1007e52d

media-libs/lv2: added missing dep to 1.18.0

Closes: https://bugs.gentoo.org/733158
Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.0.ebuild | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.0.ebuild b/media-libs/lv2/lv2-1.18.0.ebuild
index 23c3b01dc20..bde6301c881 100644
--- a/media-libs/lv2/lv2-1.18.0.ebuild
+++ b/media-libs/lv2/lv2-1.18.0.ebuild
@@ -26,7 +26,10 @@ CDEPEND="
 	${PYTHON_DEPS}
 	plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )
 "
-DEPEND="${CDEPEND}"
+DEPEND="
+	${CDEPEND}
+	doc? ( dev-python/markdown )
+"
 RDEPEND="
 	${CDEPEND}
 	$(python_gen_cond_dep '


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2021-01-08 12:32 Miroslav Šulc
  0 siblings, 0 replies; 88+ messages in thread
From: Miroslav Šulc @ 2021-01-08 12:32 UTC (permalink / raw
  To: gentoo-commits

commit:     749e2c6474ca3e1824fa48d93c24294f7683bcb6
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  8 12:31:59 2021 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Fri Jan  8 12:31:59 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=749e2c64

media-libs/lv2: bump to 1.18.2

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/lv2/Manifest          |  1 +
 media-libs/lv2/lv2-1.18.2.ebuild | 62 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 63 insertions(+)

diff --git a/media-libs/lv2/Manifest b/media-libs/lv2/Manifest
index 86c0983182a..464aad05f41 100644
--- a/media-libs/lv2/Manifest
+++ b/media-libs/lv2/Manifest
@@ -1 +1,2 @@
 DIST lv2-1.18.0.tar.bz2 530172 BLAKE2B 2d9c7fe6e4de1d68762445061907873ff98871277fe0e423c34b0e9586cc8bfc7674787c020f3c01731204e80262a52902676f6cec8c8a6c18a97953cc626d3e SHA512 9e8dd9c1f30371260d21efc105b1d4d4ad03d9e332d4d3877d873f20b9527bcd0e917ff23fc6e0a9cc4337bda85882c742f225f7cf4fbc8a8a0964565c91f9d9
+DIST lv2-1.18.2.tar.bz2 538345 BLAKE2B 824c7bc2ce62de858308d856d0f89c6285c183764be3727eba5074f42543a1bb8a5e1cdd8a85bf0a4ba1103e1243c843013bd516d2d6e7ade09c46380bca3cee SHA512 d5bdcf94d3cf9a569e29964002a038ae73cd6ae7f09f7d973f8fd74858c8cf9d01bbed85ae8bf0a00efcb2b3611357a64571222a89972091941449c36d76b0ef

diff --git a/media-libs/lv2/lv2-1.18.2.ebuild b/media-libs/lv2/lv2-1.18.2.ebuild
new file mode 100644
index 00000000000..27b679b1caf
--- /dev/null
+++ b/media-libs/lv2/lv2-1.18.2.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8,9} )
+PYTHON_REQ_USE='threads(+)'
+
+inherit python-single-r1 waf-utils multilib-build multilib-minimal
+
+DESCRIPTION="A simple but extensible successor of LADSPA"
+HOMEPAGE="https://lv2plug.in/"
+SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc plugins"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+BDEPEND="
+	plugins? ( virtual/pkgconfig )
+	doc? ( app-doc/doxygen dev-python/rdflib )
+"
+CDEPEND="
+	${PYTHON_DEPS}
+	plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )
+"
+DEPEND="
+	${CDEPEND}
+	doc? ( dev-python/markdown )
+"
+RDEPEND="
+	${CDEPEND}
+	$(python_gen_cond_dep '
+		dev-python/lxml[${PYTHON_MULTI_USEDEP}]
+		dev-python/pygments[${PYTHON_MULTI_USEDEP}]
+		dev-python/rdflib[${PYTHON_MULTI_USEDEP}]
+	')
+"
+DOCS=( "README.md" "NEWS" )
+
+src_prepare() {
+	default
+	multilib_copy_sources
+}
+
+multilib_src_configure() {
+	waf-utils_src_configure \
+		--docdir="${EPREFIX}"/usr/share/doc/${PF} \
+		--lv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2 \
+		$(use plugins || echo " --no-plugins") \
+		$(multilib_native_usex doc --docs "")
+}
+
+multilib_src_install() {
+	waf-utils_src_install
+}
+
+multilib_src_install_all() {
+	python_fix_shebang "${D}"
+}


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2021-02-08 17:25 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2021-02-08 17:25 UTC (permalink / raw
  To: gentoo-commits

commit:     bf18d2964571fc67c3b7fb4130f891ce53b0d0ba
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  8 17:24:39 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb  8 17:24:39 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf18d296

media-libs/lv2: Stabilize 1.18.2 amd64, #769425

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.2.ebuild b/media-libs/lv2/lv2-1.18.2.ebuild
index b1835718271..b40a89a2365 100644
--- a/media-libs/lv2/lv2-1.18.2.ebuild
+++ b/media-libs/lv2/lv2-1.18.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2021-02-08 17:26 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2021-02-08 17:26 UTC (permalink / raw
  To: gentoo-commits

commit:     a0aa31a146ae4ba3cd4f98158f701f027b5ce238
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  8 17:26:02 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb  8 17:26:02 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0aa31a1

media-libs/lv2: Stabilize 1.18.2 x86, #769425

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.2.ebuild b/media-libs/lv2/lv2-1.18.2.ebuild
index b40a89a2365..f4c3ee9edfd 100644
--- a/media-libs/lv2/lv2-1.18.2.ebuild
+++ b/media-libs/lv2/lv2-1.18.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2021-02-09  6:15 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2021-02-09  6:15 UTC (permalink / raw
  To: gentoo-commits

commit:     c443350db9b5cb212a8cbb69e36271867585e950
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  9 06:14:59 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Feb  9 06:14:59 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c443350d

media-libs/lv2: Stabilize 1.18.2 ppc64, #769425

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.2.ebuild b/media-libs/lv2/lv2-1.18.2.ebuild
index f4c3ee9edfd..834996898bd 100644
--- a/media-libs/lv2/lv2-1.18.2.ebuild
+++ b/media-libs/lv2/lv2-1.18.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2021-02-14 14:53 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2021-02-14 14:53 UTC (permalink / raw
  To: gentoo-commits

commit:     df6efdd5faa12bf012f331d681388ba2c2e61295
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 14 14:52:41 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 14 14:52:41 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df6efdd5

media-libs/lv2: Stabilize 1.18.2 arm64, #769425

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.2.ebuild b/media-libs/lv2/lv2-1.18.2.ebuild
index 834996898bd..e8ea904aca2 100644
--- a/media-libs/lv2/lv2-1.18.2.ebuild
+++ b/media-libs/lv2/lv2-1.18.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2021-02-15  6:03 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2021-02-15  6:03 UTC (permalink / raw
  To: gentoo-commits

commit:     2ddab7a023b9e27fde38fe3d5b29a2126ead04ac
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 15 06:03:01 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb 15 06:03:15 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ddab7a0

media-libs/lv2: Stabilize 1.18.2 arm, #769425

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.2.ebuild b/media-libs/lv2/lv2-1.18.2.ebuild
index e8ea904aca2..dcc800cef13 100644
--- a/media-libs/lv2/lv2-1.18.2.ebuild
+++ b/media-libs/lv2/lv2-1.18.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2021-02-17  9:40 Miroslav Šulc
  0 siblings, 0 replies; 88+ messages in thread
From: Miroslav Šulc @ 2021-02-17  9:40 UTC (permalink / raw
  To: gentoo-commits

commit:     4e11b69a25b686ba72c4d13cecaf5659214a7798
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 17 09:39:44 2021 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Wed Feb 17 09:40:04 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e11b69a

media-libs/lv2: removed obsolete 1.18.0

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/lv2/Manifest          |  1 -
 media-libs/lv2/lv2-1.18.0.ebuild | 62 ----------------------------------------
 2 files changed, 63 deletions(-)

diff --git a/media-libs/lv2/Manifest b/media-libs/lv2/Manifest
index 464aad05f41..ad4c47784cb 100644
--- a/media-libs/lv2/Manifest
+++ b/media-libs/lv2/Manifest
@@ -1,2 +1 @@
-DIST lv2-1.18.0.tar.bz2 530172 BLAKE2B 2d9c7fe6e4de1d68762445061907873ff98871277fe0e423c34b0e9586cc8bfc7674787c020f3c01731204e80262a52902676f6cec8c8a6c18a97953cc626d3e SHA512 9e8dd9c1f30371260d21efc105b1d4d4ad03d9e332d4d3877d873f20b9527bcd0e917ff23fc6e0a9cc4337bda85882c742f225f7cf4fbc8a8a0964565c91f9d9
 DIST lv2-1.18.2.tar.bz2 538345 BLAKE2B 824c7bc2ce62de858308d856d0f89c6285c183764be3727eba5074f42543a1bb8a5e1cdd8a85bf0a4ba1103e1243c843013bd516d2d6e7ade09c46380bca3cee SHA512 d5bdcf94d3cf9a569e29964002a038ae73cd6ae7f09f7d973f8fd74858c8cf9d01bbed85ae8bf0a00efcb2b3611357a64571222a89972091941449c36d76b0ef

diff --git a/media-libs/lv2/lv2-1.18.0.ebuild b/media-libs/lv2/lv2-1.18.0.ebuild
deleted file mode 100644
index 8f6e3688728..00000000000
--- a/media-libs/lv2/lv2-1.18.0.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-PYTHON_REQ_USE='threads(+)'
-
-inherit python-single-r1 waf-utils multilib-build multilib-minimal
-
-DESCRIPTION="A simple but extensible successor of LADSPA"
-HOMEPAGE="https://lv2plug.in/"
-SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
-IUSE="doc plugins"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-BDEPEND="
-	plugins? ( virtual/pkgconfig )
-	doc? ( app-doc/doxygen dev-python/rdflib )
-"
-CDEPEND="
-	${PYTHON_DEPS}
-	plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )
-"
-DEPEND="
-	${CDEPEND}
-	doc? ( dev-python/markdown )
-"
-RDEPEND="
-	${CDEPEND}
-	$(python_gen_cond_dep '
-		dev-python/lxml[${PYTHON_MULTI_USEDEP}]
-		dev-python/pygments[${PYTHON_MULTI_USEDEP}]
-		dev-python/rdflib[${PYTHON_MULTI_USEDEP}]
-	')
-"
-DOCS=( "README.md" "NEWS" )
-
-src_prepare() {
-	default
-	multilib_copy_sources
-}
-
-multilib_src_configure() {
-	waf-utils_src_configure \
-		--docdir="${EPREFIX}"/usr/share/doc/${PF} \
-		--lv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2 \
-		$(use plugins || echo " --no-plugins") \
-		$(multilib_native_usex doc --docs "")
-}
-
-multilib_src_install() {
-	waf-utils_src_install
-}
-
-multilib_src_install_all() {
-	python_fix_shebang "${D}"
-}


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2021-08-24 21:02 Marek Szuba
  0 siblings, 0 replies; 88+ messages in thread
From: Marek Szuba @ 2021-08-24 21:02 UTC (permalink / raw
  To: gentoo-commits

commit:     0952e395aed0f64bc7af9cfb9b8af4f6b2078aeb
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 24 15:43:29 2021 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Tue Aug 24 21:01:57 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0952e395

media-libs/lv2: keyword 1.18.2 for ~riscv

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.2.ebuild b/media-libs/lv2/lv2-1.18.2.ebuild
index 24693c0ff46..7c9f510ca0a 100644
--- a/media-libs/lv2/lv2-1.18.2.ebuild
+++ b/media-libs/lv2/lv2-1.18.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2022-05-01 17:16 Arthur Zamarin
  0 siblings, 0 replies; 88+ messages in thread
From: Arthur Zamarin @ 2022-05-01 17:16 UTC (permalink / raw
  To: gentoo-commits

commit:     4779de77c03d08b4a6b936eefc9cd781e05fad7b
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun May  1 17:15:57 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun May  1 17:15:57 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4779de77

media-libs/lv2: enable py3.10

Closes: https://bugs.gentoo.org/829440
Closes: https://github.com/gentoo/gentoo/pull/23377
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/lv2/lv2-1.18.2.ebuild b/media-libs/lv2/lv2-1.18.2.ebuild
index 7c9f510ca0a5..515e321d0440 100644
--- a/media-libs/lv2/lv2-1.18.2.ebuild
+++ b/media-libs/lv2/lv2-1.18.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{8,9} )
+PYTHON_COMPAT=( python3_{8..10} )
 PYTHON_REQ_USE='threads(+)'
 
 inherit python-single-r1 waf-utils multilib-build multilib-minimal


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2022-05-29  6:35 Miroslav Šulc
  0 siblings, 0 replies; 88+ messages in thread
From: Miroslav Šulc @ 2022-05-29  6:35 UTC (permalink / raw
  To: gentoo-commits

commit:     b2a8689f6c5b63e066c3ff0fbdc91f5928b9b42b
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Sun May 29 06:29:58 2022 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sun May 29 06:29:58 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2a8689f

media-libs/lv2: bump to 1.18.4

Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/lv2/Manifest          |  1 +
 media-libs/lv2/lv2-1.18.4.ebuild | 62 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 63 insertions(+)

diff --git a/media-libs/lv2/Manifest b/media-libs/lv2/Manifest
index ad4c47784cb3..4c416390f82e 100644
--- a/media-libs/lv2/Manifest
+++ b/media-libs/lv2/Manifest
@@ -1 +1,2 @@
 DIST lv2-1.18.2.tar.bz2 538345 BLAKE2B 824c7bc2ce62de858308d856d0f89c6285c183764be3727eba5074f42543a1bb8a5e1cdd8a85bf0a4ba1103e1243c843013bd516d2d6e7ade09c46380bca3cee SHA512 d5bdcf94d3cf9a569e29964002a038ae73cd6ae7f09f7d973f8fd74858c8cf9d01bbed85ae8bf0a00efcb2b3611357a64571222a89972091941449c36d76b0ef
+DIST lv2-1.18.4.tar.bz2 540611 BLAKE2B 84bcb5578110ff933b37b398029ed062c9393e17f17ddaa6329638f3c71e2b17b424f84987c00bc2c5699ffc15649362b98d5b238521e593c578c67450ecfeec SHA512 8095a1f3dcf70cf8cefff18c40b52c1dffeab0fe1f6bfb083c9f0e48a9617d3c8647b3f4db567ac1f5f33564399ffe1023774ad9bacb1bb0133f182422f22d6a

diff --git a/media-libs/lv2/lv2-1.18.4.ebuild b/media-libs/lv2/lv2-1.18.4.ebuild
new file mode 100644
index 000000000000..515e321d0440
--- /dev/null
+++ b/media-libs/lv2/lv2-1.18.4.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_REQ_USE='threads(+)'
+
+inherit python-single-r1 waf-utils multilib-build multilib-minimal
+
+DESCRIPTION="A simple but extensible successor of LADSPA"
+HOMEPAGE="https://lv2plug.in/"
+SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86"
+IUSE="doc plugins"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+BDEPEND="
+	plugins? ( virtual/pkgconfig )
+	doc? ( app-doc/doxygen dev-python/rdflib )
+"
+CDEPEND="
+	${PYTHON_DEPS}
+	plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )
+"
+DEPEND="
+	${CDEPEND}
+	doc? ( dev-python/markdown )
+"
+RDEPEND="
+	${CDEPEND}
+	$(python_gen_cond_dep '
+		dev-python/lxml[${PYTHON_USEDEP}]
+		dev-python/pygments[${PYTHON_USEDEP}]
+		dev-python/rdflib[${PYTHON_USEDEP}]
+	')
+"
+DOCS=( "README.md" "NEWS" )
+
+src_prepare() {
+	default
+	multilib_copy_sources
+}
+
+multilib_src_configure() {
+	waf-utils_src_configure \
+		--docdir="${EPREFIX}"/usr/share/doc/${PF} \
+		--lv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2 \
+		$(use plugins || echo " --no-plugins") \
+		$(multilib_native_usex doc --docs "")
+}
+
+multilib_src_install() {
+	waf-utils_src_install
+}
+
+multilib_src_install_all() {
+	python_fix_shebang "${D}"
+}


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2022-07-21  3:39 Miroslav Šulc
  0 siblings, 0 replies; 88+ messages in thread
From: Miroslav Šulc @ 2022-07-21  3:39 UTC (permalink / raw
  To: gentoo-commits

commit:     adc257c8a108cc6044dc85b98fcf45ffa0af19e8
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 21 03:37:53 2022 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Thu Jul 21 03:37:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adc257c8

media-libs/lv2: removed obsolete 1.18.2

Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/lv2/Manifest          |  1 -
 media-libs/lv2/lv2-1.18.2.ebuild | 62 ----------------------------------------
 2 files changed, 63 deletions(-)

diff --git a/media-libs/lv2/Manifest b/media-libs/lv2/Manifest
index 4c416390f82e..7ba010202b57 100644
--- a/media-libs/lv2/Manifest
+++ b/media-libs/lv2/Manifest
@@ -1,2 +1 @@
-DIST lv2-1.18.2.tar.bz2 538345 BLAKE2B 824c7bc2ce62de858308d856d0f89c6285c183764be3727eba5074f42543a1bb8a5e1cdd8a85bf0a4ba1103e1243c843013bd516d2d6e7ade09c46380bca3cee SHA512 d5bdcf94d3cf9a569e29964002a038ae73cd6ae7f09f7d973f8fd74858c8cf9d01bbed85ae8bf0a00efcb2b3611357a64571222a89972091941449c36d76b0ef
 DIST lv2-1.18.4.tar.bz2 540611 BLAKE2B 84bcb5578110ff933b37b398029ed062c9393e17f17ddaa6329638f3c71e2b17b424f84987c00bc2c5699ffc15649362b98d5b238521e593c578c67450ecfeec SHA512 8095a1f3dcf70cf8cefff18c40b52c1dffeab0fe1f6bfb083c9f0e48a9617d3c8647b3f4db567ac1f5f33564399ffe1023774ad9bacb1bb0133f182422f22d6a

diff --git a/media-libs/lv2/lv2-1.18.2.ebuild b/media-libs/lv2/lv2-1.18.2.ebuild
deleted file mode 100644
index 515e321d0440..000000000000
--- a/media-libs/lv2/lv2-1.18.2.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} )
-PYTHON_REQ_USE='threads(+)'
-
-inherit python-single-r1 waf-utils multilib-build multilib-minimal
-
-DESCRIPTION="A simple but extensible successor of LADSPA"
-HOMEPAGE="https://lv2plug.in/"
-SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86"
-IUSE="doc plugins"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-BDEPEND="
-	plugins? ( virtual/pkgconfig )
-	doc? ( app-doc/doxygen dev-python/rdflib )
-"
-CDEPEND="
-	${PYTHON_DEPS}
-	plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )
-"
-DEPEND="
-	${CDEPEND}
-	doc? ( dev-python/markdown )
-"
-RDEPEND="
-	${CDEPEND}
-	$(python_gen_cond_dep '
-		dev-python/lxml[${PYTHON_USEDEP}]
-		dev-python/pygments[${PYTHON_USEDEP}]
-		dev-python/rdflib[${PYTHON_USEDEP}]
-	')
-"
-DOCS=( "README.md" "NEWS" )
-
-src_prepare() {
-	default
-	multilib_copy_sources
-}
-
-multilib_src_configure() {
-	waf-utils_src_configure \
-		--docdir="${EPREFIX}"/usr/share/doc/${PF} \
-		--lv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2 \
-		$(use plugins || echo " --no-plugins") \
-		$(multilib_native_usex doc --docs "")
-}
-
-multilib_src_install() {
-	waf-utils_src_install
-}
-
-multilib_src_install_all() {
-	python_fix_shebang "${D}"
-}


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2022-07-30 11:32 Miroslav Šulc
  0 siblings, 0 replies; 88+ messages in thread
From: Miroslav Šulc @ 2022-07-30 11:32 UTC (permalink / raw
  To: gentoo-commits

commit:     62a95012267df8ab2eced8d52b75be9f1e08f3c6
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 30 11:31:54 2022 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sat Jul 30 11:32:43 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62a95012

media-libs/lv2: bump to 1.18.6

Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/lv2/Manifest          |  1 +
 media-libs/lv2/lv2-1.18.6.ebuild | 80 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 81 insertions(+)

diff --git a/media-libs/lv2/Manifest b/media-libs/lv2/Manifest
index 7ba010202b57..86efe51befab 100644
--- a/media-libs/lv2/Manifest
+++ b/media-libs/lv2/Manifest
@@ -1 +1,2 @@
 DIST lv2-1.18.4.tar.bz2 540611 BLAKE2B 84bcb5578110ff933b37b398029ed062c9393e17f17ddaa6329638f3c71e2b17b424f84987c00bc2c5699ffc15649362b98d5b238521e593c578c67450ecfeec SHA512 8095a1f3dcf70cf8cefff18c40b52c1dffeab0fe1f6bfb083c9f0e48a9617d3c8647b3f4db567ac1f5f33564399ffe1023774ad9bacb1bb0133f182422f22d6a
+DIST lv2-1.18.6.tar.xz 232836 BLAKE2B 27c9eb3e15e4515a63f93552c8924c502f8bc585fbf62a62a1fca4ff7fd2e9940827cda4b5c7cbb6858324e1dba5bcad2ad75239da9f860db56e6839224ae186 SHA512 baecef70abe8354bca056d67085657e2174e39d2030a5173a226ee194c96662d6c3351df4500b4631e08798765dfed6d758b6be16a2ea78c4f29abb53c5d786f

diff --git a/media-libs/lv2/lv2-1.18.6.ebuild b/media-libs/lv2/lv2-1.18.6.ebuild
new file mode 100644
index 000000000000..b6fd70616c65
--- /dev/null
+++ b/media-libs/lv2/lv2-1.18.6.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_REQ_USE='threads(+)'
+
+inherit meson-multilib python-single-r1
+
+DESCRIPTION="A simple but extensible successor of LADSPA"
+HOMEPAGE="https://lv2plug.in/"
+SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+IUSE="doc plugins"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+BDEPEND="
+	plugins? ( virtual/pkgconfig )
+	doc? (
+		app-doc/doxygen
+		dev-python/rdflib
+	)
+"
+CDEPEND="
+	${PYTHON_DEPS}
+	plugins? (
+		media-libs/libsndfile
+		x11-libs/gtk+:2
+	)
+"
+DEPEND="
+	${CDEPEND}
+	doc? ( dev-python/markdown )
+"
+RDEPEND="
+	${CDEPEND}
+	$(python_gen_cond_dep '
+		dev-python/lxml[${PYTHON_USEDEP}]
+		dev-python/pygments[${PYTHON_USEDEP}]
+		dev-python/rdflib[${PYTHON_USEDEP}]
+	')
+"
+
+src_prepare() {
+	default
+
+	# fix doc installation path
+	sed -iE "s%lv2_docdir = .*%lv2_docdir = '"${EPREFIX}"/usr/share/doc/${PF}'%g" meson.build || die
+}
+
+multilib_src_configure() {
+	local emesonargs=(
+		-Dlv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2
+		$(meson_native_use_feature doc docs)
+		$(meson_feature plugins)
+	)
+
+	meson_src_configure
+}
+
+multilib_src_test() {
+	meson_src_test
+}
+
+multilib_src_compile() {
+	meson_src_compile
+}
+
+multilib_src_install() {
+	meson_src_install
+}
+
+mutlilib_src_install_all() {
+	local DOCS=( NEWS README.md )
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2022-08-15  5:52 Miroslav Šulc
  0 siblings, 0 replies; 88+ messages in thread
From: Miroslav Šulc @ 2022-08-15  5:52 UTC (permalink / raw
  To: gentoo-commits

commit:     66f5cc04ab04ed21b7f92e223cb9657ba9b32d7a
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 15 05:51:54 2022 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Mon Aug 15 05:51:54 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66f5cc04

media-libs/lv2: bump to 1.18.8

Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/lv2/Manifest          |  1 +
 media-libs/lv2/lv2-1.18.8.ebuild | 84 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 85 insertions(+)

diff --git a/media-libs/lv2/Manifest b/media-libs/lv2/Manifest
index 86efe51befab..d23614081860 100644
--- a/media-libs/lv2/Manifest
+++ b/media-libs/lv2/Manifest
@@ -1,2 +1,3 @@
 DIST lv2-1.18.4.tar.bz2 540611 BLAKE2B 84bcb5578110ff933b37b398029ed062c9393e17f17ddaa6329638f3c71e2b17b424f84987c00bc2c5699ffc15649362b98d5b238521e593c578c67450ecfeec SHA512 8095a1f3dcf70cf8cefff18c40b52c1dffeab0fe1f6bfb083c9f0e48a9617d3c8647b3f4db567ac1f5f33564399ffe1023774ad9bacb1bb0133f182422f22d6a
 DIST lv2-1.18.6.tar.xz 232836 BLAKE2B 27c9eb3e15e4515a63f93552c8924c502f8bc585fbf62a62a1fca4ff7fd2e9940827cda4b5c7cbb6858324e1dba5bcad2ad75239da9f860db56e6839224ae186 SHA512 baecef70abe8354bca056d67085657e2174e39d2030a5173a226ee194c96662d6c3351df4500b4631e08798765dfed6d758b6be16a2ea78c4f29abb53c5d786f
+DIST lv2-1.18.8.tar.xz 230584 BLAKE2B b9d6480286f0709d3e7ddd9444c092e4e1e108ed384a8cdc7991ec870e8374869bab21e09ebebad4c59445ec3a90ddd05bf2c461a1c9aeb986f68d84a937bbbd SHA512 9925290818bd683200bc738e3e9342b946fe82a04d983e89c240ae70b9053a7a59a8d505c522fe7af5b804adeba00fdf94403bd34844ce11e26cc1ff62c2f254

diff --git a/media-libs/lv2/lv2-1.18.8.ebuild b/media-libs/lv2/lv2-1.18.8.ebuild
new file mode 100644
index 000000000000..cb7c90fbefa6
--- /dev/null
+++ b/media-libs/lv2/lv2-1.18.8.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_REQ_USE='threads(+)'
+
+inherit meson-multilib python-single-r1
+
+DESCRIPTION="A simple but extensible successor of LADSPA"
+HOMEPAGE="https://lv2plug.in/"
+SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+IUSE="doc plugins"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+BDEPEND="
+	plugins? ( virtual/pkgconfig )
+	doc? (
+		app-doc/doxygen
+		dev-python/rdflib
+	)
+"
+CDEPEND="
+	${PYTHON_DEPS}
+	plugins? (
+		media-libs/libsndfile
+		x11-libs/gtk+:2
+	)
+"
+DEPEND="
+	${CDEPEND}
+	doc? ( dev-python/markdown )
+"
+RDEPEND="
+	${CDEPEND}
+	$(python_gen_cond_dep '
+		dev-python/lxml[${PYTHON_USEDEP}]
+		dev-python/pygments[${PYTHON_USEDEP}]
+		dev-python/rdflib[${PYTHON_USEDEP}]
+	')
+"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-1.18.6-add-missing-lv2.h.patch"
+)
+
+src_prepare() {
+	default
+
+	# fix doc installation path
+	sed -iE "s%lv2_docdir = .*%lv2_docdir = '"${EPREFIX}"/usr/share/doc/${PF}'%g" meson.build || die
+}
+
+multilib_src_configure() {
+	local emesonargs=(
+		-Dlv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2
+		$(meson_native_use_feature doc docs)
+		$(meson_feature plugins)
+	)
+
+	meson_src_configure
+}
+
+multilib_src_test() {
+	meson_src_test
+}
+
+multilib_src_compile() {
+	meson_src_compile
+}
+
+multilib_src_install() {
+	meson_src_install
+}
+
+mutlilib_src_install_all() {
+	local DOCS=( NEWS README.md )
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2022-08-23 19:31 Miroslav Šulc
  0 siblings, 0 replies; 88+ messages in thread
From: Miroslav Šulc @ 2022-08-23 19:31 UTC (permalink / raw
  To: gentoo-commits

commit:     24b1467f620d97e196faf1f8b2fc66bd57de1ccd
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 23 19:30:52 2022 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Tue Aug 23 19:30:57 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24b1467f

media-libs/lv2: added missing dep to 1.18.8

Closes: https://bugs.gentoo.org/866031
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.8.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-libs/lv2/lv2-1.18.8.ebuild b/media-libs/lv2/lv2-1.18.8.ebuild
index cb7c90fbefa6..2a8d2a903388 100644
--- a/media-libs/lv2/lv2-1.18.8.ebuild
+++ b/media-libs/lv2/lv2-1.18.8.ebuild
@@ -28,6 +28,7 @@ BDEPEND="
 CDEPEND="
 	${PYTHON_DEPS}
 	plugins? (
+		media-libs/libsamplerate
 		media-libs/libsndfile
 		x11-libs/gtk+:2
 	)


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2022-08-27 11:17 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2022-08-27 11:17 UTC (permalink / raw
  To: gentoo-commits

commit:     2a60147ef4bd0e3aeedc61402710f1f54af8d0e5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 27 11:13:03 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Aug 27 11:16:24 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a60147e

media-libs/lv2: simplify meson-multilib usage

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.6-r2.ebuild | 12 ------------
 media-libs/lv2/lv2-1.18.8-r1.ebuild | 12 ------------
 2 files changed, 24 deletions(-)

diff --git a/media-libs/lv2/lv2-1.18.6-r2.ebuild b/media-libs/lv2/lv2-1.18.6-r2.ebuild
index 2e46918b807c..bfe5e1c08de9 100644
--- a/media-libs/lv2/lv2-1.18.6-r2.ebuild
+++ b/media-libs/lv2/lv2-1.18.6-r2.ebuild
@@ -66,18 +66,6 @@ multilib_src_configure() {
 	meson_src_configure
 }
 
-multilib_src_test() {
-	meson_src_test
-}
-
-multilib_src_compile() {
-	meson_src_compile
-}
-
-multilib_src_install() {
-	meson_src_install
-}
-
 multilib_src_install_all() {
 	local DOCS=( NEWS README.md )
 	einstalldocs

diff --git a/media-libs/lv2/lv2-1.18.8-r1.ebuild b/media-libs/lv2/lv2-1.18.8-r1.ebuild
index 1516d948b7b3..4d070eae7261 100644
--- a/media-libs/lv2/lv2-1.18.8-r1.ebuild
+++ b/media-libs/lv2/lv2-1.18.8-r1.ebuild
@@ -67,18 +67,6 @@ multilib_src_configure() {
 	meson_src_configure
 }
 
-multilib_src_test() {
-	meson_src_test
-}
-
-multilib_src_compile() {
-	meson_src_compile
-}
-
-multilib_src_install() {
-	meson_src_install
-}
-
 multilib_src_install_all() {
 	local DOCS=( NEWS README.md )
 	einstalldocs


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2022-08-27 11:17 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2022-08-27 11:17 UTC (permalink / raw
  To: gentoo-commits

commit:     3b7ea42705ea88b650e37d1b1b32187563ebcadf
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 27 11:12:35 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Aug 27 11:16:22 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b7ea427

media-libs/lv2: fix multilib_src_install_all typo

Closes: https://bugs.gentoo.org/865033
Closes: https://bugs.gentoo.org/863428
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/{lv2-1.18.6-r1.ebuild => lv2-1.18.6-r2.ebuild} | 2 +-
 media-libs/lv2/{lv2-1.18.8.ebuild => lv2-1.18.8-r1.ebuild}    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/lv2/lv2-1.18.6-r1.ebuild b/media-libs/lv2/lv2-1.18.6-r2.ebuild
similarity index 98%
rename from media-libs/lv2/lv2-1.18.6-r1.ebuild
rename to media-libs/lv2/lv2-1.18.6-r2.ebuild
index 938d7ce19a71..2e46918b807c 100644
--- a/media-libs/lv2/lv2-1.18.6-r1.ebuild
+++ b/media-libs/lv2/lv2-1.18.6-r2.ebuild
@@ -78,7 +78,7 @@ multilib_src_install() {
 	meson_src_install
 }
 
-mutlilib_src_install_all() {
+multilib_src_install_all() {
 	local DOCS=( NEWS README.md )
 	einstalldocs
 }

diff --git a/media-libs/lv2/lv2-1.18.8.ebuild b/media-libs/lv2/lv2-1.18.8-r1.ebuild
similarity index 98%
rename from media-libs/lv2/lv2-1.18.8.ebuild
rename to media-libs/lv2/lv2-1.18.8-r1.ebuild
index 2a8d2a903388..1516d948b7b3 100644
--- a/media-libs/lv2/lv2-1.18.8.ebuild
+++ b/media-libs/lv2/lv2-1.18.8-r1.ebuild
@@ -79,7 +79,7 @@ multilib_src_install() {
 	meson_src_install
 }
 
-mutlilib_src_install_all() {
+multilib_src_install_all() {
 	local DOCS=( NEWS README.md )
 	einstalldocs
 }


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2022-09-27  6:00 Arthur Zamarin
  0 siblings, 0 replies; 88+ messages in thread
From: Arthur Zamarin @ 2022-09-27  6:00 UTC (permalink / raw
  To: gentoo-commits

commit:     8951a53313d919ae3b2b3be9180d75f1f00c3c2e
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 27 06:00:25 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Sep 27 06:00:25 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8951a533

media-libs/lv2: Stabilize 1.18.8-r1 arm, #873118

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.8-r1.ebuild b/media-libs/lv2/lv2-1.18.8-r1.ebuild
index 4d070eae7261..5e666ade8a03 100644
--- a/media-libs/lv2/lv2-1.18.8-r1.ebuild
+++ b/media-libs/lv2/lv2-1.18.8-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2022-09-27  6:05 Jakov Smolić
  0 siblings, 0 replies; 88+ messages in thread
From: Jakov Smolić @ 2022-09-27  6:05 UTC (permalink / raw
  To: gentoo-commits

commit:     d454c4696eba287e4596bb770834ccccc1fe0b01
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 27 06:04:54 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Sep 27 06:04:54 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d454c469

media-libs/lv2: Stabilize 1.18.8-r1 amd64, #873118

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.8-r1.ebuild b/media-libs/lv2/lv2-1.18.8-r1.ebuild
index 5e666ade8a03..b1ef0531199c 100644
--- a/media-libs/lv2/lv2-1.18.8-r1.ebuild
+++ b/media-libs/lv2/lv2-1.18.8-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2022-09-27  6:05 Jakov Smolić
  0 siblings, 0 replies; 88+ messages in thread
From: Jakov Smolić @ 2022-09-27  6:05 UTC (permalink / raw
  To: gentoo-commits

commit:     795e54eaa03b827d724ae735e9379becc2391245
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 27 06:05:19 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Sep 27 06:05:19 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=795e54ea

media-libs/lv2: Stabilize 1.18.8-r1 x86, #873118

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.8-r1.ebuild b/media-libs/lv2/lv2-1.18.8-r1.ebuild
index b1ef0531199c..e403b41e64b6 100644
--- a/media-libs/lv2/lv2-1.18.8-r1.ebuild
+++ b/media-libs/lv2/lv2-1.18.8-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2022-09-27  6:07 Jakov Smolić
  0 siblings, 0 replies; 88+ messages in thread
From: Jakov Smolić @ 2022-09-27  6:07 UTC (permalink / raw
  To: gentoo-commits

commit:     5e026414e49d9f2d17ea4cd2f14153486c5246bc
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 27 06:07:39 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Sep 27 06:07:39 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e026414

media-libs/lv2: Stabilize 1.18.8-r1 ppc, #873118

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.8-r1.ebuild b/media-libs/lv2/lv2-1.18.8-r1.ebuild
index 368744a7433e..d90d87ba4bd9 100644
--- a/media-libs/lv2/lv2-1.18.8-r1.ebuild
+++ b/media-libs/lv2/lv2-1.18.8-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2022-09-27  6:07 Jakov Smolić
  0 siblings, 0 replies; 88+ messages in thread
From: Jakov Smolić @ 2022-09-27  6:07 UTC (permalink / raw
  To: gentoo-commits

commit:     e7203907cf982f3223709230fef22888522891cf
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 27 06:07:38 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Sep 27 06:07:38 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7203907

media-libs/lv2: Stabilize 1.18.8-r1 ppc64, #873118

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.8-r1.ebuild b/media-libs/lv2/lv2-1.18.8-r1.ebuild
index e403b41e64b6..368744a7433e 100644
--- a/media-libs/lv2/lv2-1.18.8-r1.ebuild
+++ b/media-libs/lv2/lv2-1.18.8-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2022-09-27  7:07 Agostino Sarubbo
  0 siblings, 0 replies; 88+ messages in thread
From: Agostino Sarubbo @ 2022-09-27  7:07 UTC (permalink / raw
  To: gentoo-commits

commit:     e115905982338b5b10f8a244f9a621f7681dbc54
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 27 07:07:30 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Sep 27 07:07:30 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1159059

media-libs/lv2: Stabilize 1.18.8-r1 arm64, #873118

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.8-r1.ebuild b/media-libs/lv2/lv2-1.18.8-r1.ebuild
index d90d87ba4bd9..89f4e7603ab6 100644
--- a/media-libs/lv2/lv2-1.18.8-r1.ebuild
+++ b/media-libs/lv2/lv2-1.18.8-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2022-09-28  4:38 Miroslav Šulc
  0 siblings, 0 replies; 88+ messages in thread
From: Miroslav Šulc @ 2022-09-28  4:38 UTC (permalink / raw
  To: gentoo-commits

commit:     9f1b18d1b1fd7f56165e871a6becf6dfffb3708f
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 28 04:37:23 2022 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Wed Sep 28 04:37:23 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f1b18d1

media-libs/lv2: dropped obsolete 1.18.4 & 1.18.6-r2

Bug: https://bugs.gentoo.org/873118
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/lv2/Manifest             |  2 --
 media-libs/lv2/lv2-1.18.4.ebuild    | 62 --------------------------------
 media-libs/lv2/lv2-1.18.6-r2.ebuild | 72 -------------------------------------
 3 files changed, 136 deletions(-)

diff --git a/media-libs/lv2/Manifest b/media-libs/lv2/Manifest
index d23614081860..0ca18457e3b0 100644
--- a/media-libs/lv2/Manifest
+++ b/media-libs/lv2/Manifest
@@ -1,3 +1 @@
-DIST lv2-1.18.4.tar.bz2 540611 BLAKE2B 84bcb5578110ff933b37b398029ed062c9393e17f17ddaa6329638f3c71e2b17b424f84987c00bc2c5699ffc15649362b98d5b238521e593c578c67450ecfeec SHA512 8095a1f3dcf70cf8cefff18c40b52c1dffeab0fe1f6bfb083c9f0e48a9617d3c8647b3f4db567ac1f5f33564399ffe1023774ad9bacb1bb0133f182422f22d6a
-DIST lv2-1.18.6.tar.xz 232836 BLAKE2B 27c9eb3e15e4515a63f93552c8924c502f8bc585fbf62a62a1fca4ff7fd2e9940827cda4b5c7cbb6858324e1dba5bcad2ad75239da9f860db56e6839224ae186 SHA512 baecef70abe8354bca056d67085657e2174e39d2030a5173a226ee194c96662d6c3351df4500b4631e08798765dfed6d758b6be16a2ea78c4f29abb53c5d786f
 DIST lv2-1.18.8.tar.xz 230584 BLAKE2B b9d6480286f0709d3e7ddd9444c092e4e1e108ed384a8cdc7991ec870e8374869bab21e09ebebad4c59445ec3a90ddd05bf2c461a1c9aeb986f68d84a937bbbd SHA512 9925290818bd683200bc738e3e9342b946fe82a04d983e89c240ae70b9053a7a59a8d505c522fe7af5b804adeba00fdf94403bd34844ce11e26cc1ff62c2f254

diff --git a/media-libs/lv2/lv2-1.18.4.ebuild b/media-libs/lv2/lv2-1.18.4.ebuild
deleted file mode 100644
index 515e321d0440..000000000000
--- a/media-libs/lv2/lv2-1.18.4.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} )
-PYTHON_REQ_USE='threads(+)'
-
-inherit python-single-r1 waf-utils multilib-build multilib-minimal
-
-DESCRIPTION="A simple but extensible successor of LADSPA"
-HOMEPAGE="https://lv2plug.in/"
-SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86"
-IUSE="doc plugins"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-BDEPEND="
-	plugins? ( virtual/pkgconfig )
-	doc? ( app-doc/doxygen dev-python/rdflib )
-"
-CDEPEND="
-	${PYTHON_DEPS}
-	plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )
-"
-DEPEND="
-	${CDEPEND}
-	doc? ( dev-python/markdown )
-"
-RDEPEND="
-	${CDEPEND}
-	$(python_gen_cond_dep '
-		dev-python/lxml[${PYTHON_USEDEP}]
-		dev-python/pygments[${PYTHON_USEDEP}]
-		dev-python/rdflib[${PYTHON_USEDEP}]
-	')
-"
-DOCS=( "README.md" "NEWS" )
-
-src_prepare() {
-	default
-	multilib_copy_sources
-}
-
-multilib_src_configure() {
-	waf-utils_src_configure \
-		--docdir="${EPREFIX}"/usr/share/doc/${PF} \
-		--lv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2 \
-		$(use plugins || echo " --no-plugins") \
-		$(multilib_native_usex doc --docs "")
-}
-
-multilib_src_install() {
-	waf-utils_src_install
-}
-
-multilib_src_install_all() {
-	python_fix_shebang "${D}"
-}

diff --git a/media-libs/lv2/lv2-1.18.6-r2.ebuild b/media-libs/lv2/lv2-1.18.6-r2.ebuild
deleted file mode 100644
index bfe5e1c08de9..000000000000
--- a/media-libs/lv2/lv2-1.18.6-r2.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-PYTHON_REQ_USE='threads(+)'
-
-inherit meson-multilib python-single-r1
-
-DESCRIPTION="A simple but extensible successor of LADSPA"
-HOMEPAGE="https://lv2plug.in/"
-SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
-IUSE="doc plugins"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-BDEPEND="
-	plugins? ( virtual/pkgconfig )
-	doc? (
-		app-doc/doxygen
-		dev-python/rdflib
-	)
-"
-CDEPEND="
-	${PYTHON_DEPS}
-	plugins? (
-		media-libs/libsndfile
-		x11-libs/gtk+:2
-	)
-"
-DEPEND="
-	${CDEPEND}
-	doc? ( dev-python/markdown )
-"
-RDEPEND="
-	${CDEPEND}
-	$(python_gen_cond_dep '
-		dev-python/lxml[${PYTHON_USEDEP}]
-		dev-python/pygments[${PYTHON_USEDEP}]
-		dev-python/rdflib[${PYTHON_USEDEP}]
-	')
-"
-
-PATCHES=(
-	"${FILESDIR}/${P}-add-missing-lv2.h.patch"
-)
-
-src_prepare() {
-	default
-
-	# fix doc installation path
-	sed -iE "s%lv2_docdir = .*%lv2_docdir = '"${EPREFIX}"/usr/share/doc/${PF}'%g" meson.build || die
-}
-
-multilib_src_configure() {
-	local emesonargs=(
-		-Dlv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2
-		$(meson_native_use_feature doc docs)
-		$(meson_feature plugins)
-	)
-
-	meson_src_configure
-}
-
-multilib_src_install_all() {
-	local DOCS=( NEWS README.md )
-	einstalldocs
-}


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2022-10-02  7:35 Miroslav Šulc
  0 siblings, 0 replies; 88+ messages in thread
From: Miroslav Šulc @ 2022-10-02  7:35 UTC (permalink / raw
  To: gentoo-commits

commit:     e65441f8bc67c39b8163ce9c702d858091c1eb44
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  2 07:35:46 2022 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sun Oct  2 07:35:46 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e65441f8

media-libs/lv2: bump to 1.18.10

Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/lv2/Manifest           |  1 +
 media-libs/lv2/lv2-1.18.10.ebuild | 73 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 74 insertions(+)

diff --git a/media-libs/lv2/Manifest b/media-libs/lv2/Manifest
index 0ca18457e3b0..5ac972a69b2b 100644
--- a/media-libs/lv2/Manifest
+++ b/media-libs/lv2/Manifest
@@ -1 +1,2 @@
+DIST lv2-1.18.10.tar.xz 237380 BLAKE2B 72f9bc50ebac5d71279e0616bb1eb3c2a6748a28ff68988294135b18c7adc68c46a52b4698faf79f633768bf850d5052128a9f84b90aa9b5f9a56721acaf04c3 SHA512 ab4bcf593f633b1ed16c0eb6aa4525458a00655ef9c87619bf85eaa966f8fd094a8e871b825f679e0d97923f8bbbf11841ff467022390ca2f1a5b5f66ccd5d1b
 DIST lv2-1.18.8.tar.xz 230584 BLAKE2B b9d6480286f0709d3e7ddd9444c092e4e1e108ed384a8cdc7991ec870e8374869bab21e09ebebad4c59445ec3a90ddd05bf2c461a1c9aeb986f68d84a937bbbd SHA512 9925290818bd683200bc738e3e9342b946fe82a04d983e89c240ae70b9053a7a59a8d505c522fe7af5b804adeba00fdf94403bd34844ce11e26cc1ff62c2f254

diff --git a/media-libs/lv2/lv2-1.18.10.ebuild b/media-libs/lv2/lv2-1.18.10.ebuild
new file mode 100644
index 000000000000..4d070eae7261
--- /dev/null
+++ b/media-libs/lv2/lv2-1.18.10.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_REQ_USE='threads(+)'
+
+inherit meson-multilib python-single-r1
+
+DESCRIPTION="A simple but extensible successor of LADSPA"
+HOMEPAGE="https://lv2plug.in/"
+SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+IUSE="doc plugins"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+BDEPEND="
+	plugins? ( virtual/pkgconfig )
+	doc? (
+		app-doc/doxygen
+		dev-python/rdflib
+	)
+"
+CDEPEND="
+	${PYTHON_DEPS}
+	plugins? (
+		media-libs/libsamplerate
+		media-libs/libsndfile
+		x11-libs/gtk+:2
+	)
+"
+DEPEND="
+	${CDEPEND}
+	doc? ( dev-python/markdown )
+"
+RDEPEND="
+	${CDEPEND}
+	$(python_gen_cond_dep '
+		dev-python/lxml[${PYTHON_USEDEP}]
+		dev-python/pygments[${PYTHON_USEDEP}]
+		dev-python/rdflib[${PYTHON_USEDEP}]
+	')
+"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-1.18.6-add-missing-lv2.h.patch"
+)
+
+src_prepare() {
+	default
+
+	# fix doc installation path
+	sed -iE "s%lv2_docdir = .*%lv2_docdir = '"${EPREFIX}"/usr/share/doc/${PF}'%g" meson.build || die
+}
+
+multilib_src_configure() {
+	local emesonargs=(
+		-Dlv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2
+		$(meson_native_use_feature doc docs)
+		$(meson_feature plugins)
+	)
+
+	meson_src_configure
+}
+
+multilib_src_install_all() {
+	local DOCS=( NEWS README.md )
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2022-10-19 10:07 WANG Xuerui
  0 siblings, 0 replies; 88+ messages in thread
From: WANG Xuerui @ 2022-10-19 10:07 UTC (permalink / raw
  To: gentoo-commits

commit:     3e10ef10a51e47ad60d37235a3d0dd4aa7bbc721
Author:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Fri Oct  7 09:09:38 2022 +0000
Commit:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Wed Oct 19 10:06:57 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e10ef10

media-libs/lv2: keyword 1.18.10 for ~loong

Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.10.ebuild b/media-libs/lv2/lv2-1.18.10.ebuild
index 4d070eae7261..8a2a9920c24c 100644
--- a/media-libs/lv2/lv2-1.18.10.ebuild
+++ b/media-libs/lv2/lv2-1.18.10.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2023-03-14  6:41 Miroslav Šulc
  0 siblings, 0 replies; 88+ messages in thread
From: Miroslav Šulc @ 2023-03-14  6:41 UTC (permalink / raw
  To: gentoo-commits

commit:     2ec6d5141ff98382eee20e2e919b801d1f2df1df
Author:     Violet Purcell <vimproved <AT> inventati <DOT> org>
AuthorDate: Mon Mar 13 19:38:10 2023 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Tue Mar 14 06:39:40 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ec6d514

media-libs/lv2: enable py3.11

Signed-off-by: Violet Purcell <vimproved <AT> inventati.org>
Closes: https://bugs.gentoo.org/897008
Closes: https://github.com/gentoo/gentoo/pull/30095
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.10.ebuild   | 2 +-
 media-libs/lv2/lv2-1.18.8-r1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/lv2/lv2-1.18.10.ebuild b/media-libs/lv2/lv2-1.18.10.ebuild
index ecea20b24970..b3b217d624f0 100644
--- a/media-libs/lv2/lv2-1.18.10.ebuild
+++ b/media-libs/lv2/lv2-1.18.10.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 PYTHON_REQ_USE='threads(+)'
 
 inherit meson-multilib python-single-r1

diff --git a/media-libs/lv2/lv2-1.18.8-r1.ebuild b/media-libs/lv2/lv2-1.18.8-r1.ebuild
index da5707ea0c1f..bc62b24a3928 100644
--- a/media-libs/lv2/lv2-1.18.8-r1.ebuild
+++ b/media-libs/lv2/lv2-1.18.8-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 PYTHON_REQ_USE='threads(+)'
 
 inherit meson-multilib python-single-r1


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2023-03-24  5:44 Miroslav Šulc
  0 siblings, 0 replies; 88+ messages in thread
From: Miroslav Šulc @ 2023-03-24  5:44 UTC (permalink / raw
  To: gentoo-commits

commit:     10c6ad569f634874c353b6369e157e583a8cf0e0
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 24 05:44:09 2023 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Fri Mar 24 05:44:30 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10c6ad56

media-libs/lv2: fixed gtk+ multilib dep use flags

Closes: https://bugs.gentoo.org/875185
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.10.ebuild b/media-libs/lv2/lv2-1.18.10.ebuild
index b3b217d624f0..a82e108517ab 100644
--- a/media-libs/lv2/lv2-1.18.10.ebuild
+++ b/media-libs/lv2/lv2-1.18.10.ebuild
@@ -30,7 +30,7 @@ CDEPEND="
 	plugins? (
 		media-libs/libsamplerate
 		media-libs/libsndfile
-		x11-libs/gtk+:2
+		x11-libs/gtk+:2[${MULTILIB_USEDEP}]
 	)
 "
 DEPEND="


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2023-03-24  6:02 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2023-03-24  6:02 UTC (permalink / raw
  To: gentoo-commits

commit:     fd16c2a139cde737b54304f5c67529c0f453a023
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 24 06:02:40 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 24 06:02:40 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd16c2a1

media-libs/lv2: Stabilize 1.18.10 ppc64, #902867

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.10.ebuild b/media-libs/lv2/lv2-1.18.10.ebuild
index a82e108517ab..47736614051d 100644
--- a/media-libs/lv2/lv2-1.18.10.ebuild
+++ b/media-libs/lv2/lv2-1.18.10.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~sparc ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2023-03-24  6:02 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2023-03-24  6:02 UTC (permalink / raw
  To: gentoo-commits

commit:     ad58b64a815ed48073fb8e0097da9c9597888179
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 24 06:02:41 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 24 06:02:41 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad58b64a

media-libs/lv2: Stabilize 1.18.10 ppc, #902867

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.10.ebuild b/media-libs/lv2/lv2-1.18.10.ebuild
index 47736614051d..8b70f71d126a 100644
--- a/media-libs/lv2/lv2-1.18.10.ebuild
+++ b/media-libs/lv2/lv2-1.18.10.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2023-03-24  6:02 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2023-03-24  6:02 UTC (permalink / raw
  To: gentoo-commits

commit:     748a424d64ca145f832f69e5a4e784ef1dc0dcd1
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 24 06:02:42 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 24 06:02:42 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=748a424d

media-libs/lv2: Stabilize 1.18.10 amd64, #902867

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.10.ebuild b/media-libs/lv2/lv2-1.18.10.ebuild
index 8b70f71d126a..81b63c3ac7a0 100644
--- a/media-libs/lv2/lv2-1.18.10.ebuild
+++ b/media-libs/lv2/lv2-1.18.10.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2023-03-24  6:02 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2023-03-24  6:02 UTC (permalink / raw
  To: gentoo-commits

commit:     99f98407c502cd26e9736d9760f649d42e97619b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 24 06:02:44 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 24 06:02:44 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99f98407

media-libs/lv2: Stabilize 1.18.10 x86, #902867

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.10.ebuild b/media-libs/lv2/lv2-1.18.10.ebuild
index 81b63c3ac7a0..94fd6166cd31 100644
--- a/media-libs/lv2/lv2-1.18.10.ebuild
+++ b/media-libs/lv2/lv2-1.18.10.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2023-03-24  6:02 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2023-03-24  6:02 UTC (permalink / raw
  To: gentoo-commits

commit:     ccdeb483b68522104624ae6fd37f663feaad385b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 24 06:02:45 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 24 06:02:45 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccdeb483

media-libs/lv2: Stabilize 1.18.10 arm, #902867

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.10.ebuild b/media-libs/lv2/lv2-1.18.10.ebuild
index 94fd6166cd31..375d8cdf1fd0 100644
--- a/media-libs/lv2/lv2-1.18.10.ebuild
+++ b/media-libs/lv2/lv2-1.18.10.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2023-03-24 14:29 Arthur Zamarin
  0 siblings, 0 replies; 88+ messages in thread
From: Arthur Zamarin @ 2023-03-24 14:29 UTC (permalink / raw
  To: gentoo-commits

commit:     c804756d49a33e336437f517a26b4baf4cbaae32
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 24 14:29:41 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 24 14:29:41 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c804756d

media-libs/lv2: Stabilize 1.18.10 arm64, #902867

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.10.ebuild b/media-libs/lv2/lv2-1.18.10.ebuild
index 375d8cdf1fd0..4ebd59a52b56 100644
--- a/media-libs/lv2/lv2-1.18.10.ebuild
+++ b/media-libs/lv2/lv2-1.18.10.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86"
 IUSE="doc plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2023-05-04 11:21 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2023-05-04 11:21 UTC (permalink / raw
  To: gentoo-commits

commit:     a95238b4226a0658c90816395103b74aee6253c6
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu May  4 11:00:12 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu May  4 11:20:52 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a95238b4

media-libs/lv2: add gitlab upstream metadata

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/media-libs/lv2/metadata.xml b/media-libs/lv2/metadata.xml
index 0134dcd4a51e..9653cb338999 100644
--- a/media-libs/lv2/metadata.xml
+++ b/media-libs/lv2/metadata.xml
@@ -8,4 +8,7 @@
   <use>
     <flag name="plugins">Enables examples plugins.</flag>
   </use>
+  <upstream>
+    <remote-id type="gitlab">lv2/lv2</remote-id>
+  </upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2023-05-04 11:21 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2023-05-04 11:21 UTC (permalink / raw
  To: gentoo-commits

commit:     ee82143142a2739f85430302aba5a15bce480ec7
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu May  4 11:02:54 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu May  4 11:20:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee821431

media-libs/lv2: add github upstream metadata

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-libs/lv2/metadata.xml b/media-libs/lv2/metadata.xml
index 9653cb338999..410e01e4078b 100644
--- a/media-libs/lv2/metadata.xml
+++ b/media-libs/lv2/metadata.xml
@@ -10,5 +10,6 @@
   </use>
   <upstream>
     <remote-id type="gitlab">lv2/lv2</remote-id>
+    <remote-id type="github">lv2/lv2</remote-id>
   </upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2023-05-16  4:12 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2023-05-16  4:12 UTC (permalink / raw
  To: gentoo-commits

commit:     3803c59b86c61639f5bca5f1f337494af905a70c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 16 04:10:41 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 16 04:10:41 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3803c59b

media-libs/lv2: avoid codespell test dep

Closes: https://bugs.gentoo.org/906047
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.10.ebuild | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/media-libs/lv2/lv2-1.18.10.ebuild b/media-libs/lv2/lv2-1.18.10.ebuild
index 575c13e2e43e..4011c981d64e 100644
--- a/media-libs/lv2/lv2-1.18.10.ebuild
+++ b/media-libs/lv2/lv2-1.18.10.ebuild
@@ -60,6 +60,9 @@ PATCHES=(
 src_prepare() {
 	default
 
+	# XXX: Drop this > 1.18.10, -Dstrict=false should prevent it now, bug #906047.
+	sed -i -e "/codespell = /s:get_option('tests'):false:" test/meson.build || die
+
 	# fix doc installation path
 	sed -iE "s%lv2_docdir = .*%lv2_docdir = '"${EPREFIX}"/usr/share/doc/${PF}'%g" meson.build || die
 }
@@ -67,6 +70,7 @@ src_prepare() {
 multilib_src_configure() {
 	local emesonargs=(
 		-Dlv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2
+		-Dstrict=false
 		$(meson_native_use_feature doc docs)
 		$(meson_feature plugins)
 		$(meson_feature test tests)


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2024-05-28 12:29 Michał Górny
  0 siblings, 0 replies; 88+ messages in thread
From: Michał Górny @ 2024-05-28 12:29 UTC (permalink / raw
  To: gentoo-commits

commit:     451317bc161eae3e326a51d5f949957341d760eb
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue May 28 12:29:26 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May 28 12:29:26 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=451317bc

media-libs/lv2: Stabilize 1.18.10-r1 arm, #932989

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.10-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.10-r1.ebuild b/media-libs/lv2/lv2-1.18.10-r1.ebuild
index c82b3440eba0..a5d4c7258ce5 100644
--- a/media-libs/lv2/lv2-1.18.10-r1.ebuild
+++ b/media-libs/lv2/lv2-1.18.10-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
 IUSE="doc plugins test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2024-05-28 13:19 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2024-05-28 13:19 UTC (permalink / raw
  To: gentoo-commits

commit:     17dbf440cac039b7c2872693fbdfeb63ac47517b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 28 13:18:41 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 28 13:18:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17dbf440

media-libs/lv2: Stabilize 1.18.10-r1 arm64, #932989

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.10-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.10-r1.ebuild b/media-libs/lv2/lv2-1.18.10-r1.ebuild
index b6593b6a0b0f..d56f58626704 100644
--- a/media-libs/lv2/lv2-1.18.10-r1.ebuild
+++ b/media-libs/lv2/lv2-1.18.10-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
 IUSE="doc plugins test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2024-05-28 13:19 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2024-05-28 13:19 UTC (permalink / raw
  To: gentoo-commits

commit:     e62214beb14d97553a1fc0ea3c15ba88f16c907d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 28 13:18:40 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 28 13:18:40 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e62214be

media-libs/lv2: Stabilize 1.18.10-r1 amd64, #932989

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.10-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.10-r1.ebuild b/media-libs/lv2/lv2-1.18.10-r1.ebuild
index a5d4c7258ce5..b6593b6a0b0f 100644
--- a/media-libs/lv2/lv2-1.18.10-r1.ebuild
+++ b/media-libs/lv2/lv2-1.18.10-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
 IUSE="doc plugins test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2024-05-28 17:01 Sam James
  0 siblings, 0 replies; 88+ messages in thread
From: Sam James @ 2024-05-28 17:01 UTC (permalink / raw
  To: gentoo-commits

commit:     a9663587b1b397f3f3222728e338edd7c6ed5462
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 28 17:01:33 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 28 17:01:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9663587

media-libs/lv2: Stabilize 1.18.10-r1 ppc64, #932989

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.10-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/lv2/lv2-1.18.10-r1.ebuild b/media-libs/lv2/lv2-1.18.10-r1.ebuild
index a27cb0269398..c454df2d4874 100644
--- a/media-libs/lv2/lv2-1.18.10-r1.ebuild
+++ b/media-libs/lv2/lv2-1.18.10-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86"
 IUSE="doc plugins test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"


^ permalink raw reply related	[flat|nested] 88+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/
@ 2024-09-06 15:26 Arthur Zamarin
  0 siblings, 0 replies; 88+ messages in thread
From: Arthur Zamarin @ 2024-09-06 15:26 UTC (permalink / raw
  To: gentoo-commits

commit:     7c75a7beff10110cfaa8bceb3b6aa1b31408a4c3
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep  6 15:23:41 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Sep  6 15:26:10 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c75a7be

media-libs/lv2: drop 1.18.10

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 media-libs/lv2/lv2-1.18.10.ebuild | 85 ---------------------------------------
 1 file changed, 85 deletions(-)

diff --git a/media-libs/lv2/lv2-1.18.10.ebuild b/media-libs/lv2/lv2-1.18.10.ebuild
deleted file mode 100644
index 7896910a2127..000000000000
--- a/media-libs/lv2/lv2-1.18.10.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-PYTHON_REQ_USE='threads(+)'
-
-inherit meson-multilib python-single-r1
-
-DESCRIPTION="A simple but extensible successor of LADSPA"
-HOMEPAGE="https://lv2plug.in/"
-SRC_URI="https://lv2plug.in/spec/${P}.tar.xz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86"
-IUSE="doc plugins test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-BDEPEND="
-	plugins? ( virtual/pkgconfig )
-	doc? (
-		app-text/doxygen
-		dev-python/rdflib
-	)
-	test? (
-		dev-libs/serd
-		dev-libs/sord[tools]
-		dev-python/rdflib
-	)
-"
-CDEPEND="
-	${PYTHON_DEPS}
-	plugins? (
-		media-libs/libsamplerate
-		media-libs/libsndfile
-		x11-libs/gtk+:2[${MULTILIB_USEDEP}]
-	)
-"
-DEPEND="
-	${CDEPEND}
-	doc? ( dev-python/markdown )
-"
-RDEPEND="
-	${CDEPEND}
-	$(python_gen_cond_dep '
-		dev-python/lxml[${PYTHON_USEDEP}]
-		dev-python/pygments[${PYTHON_USEDEP}]
-		dev-python/rdflib[${PYTHON_USEDEP}]
-	')
-"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-1.18.6-add-missing-lv2.h.patch"
-	"${FILESDIR}/${P}-tests-optional.patch"
-)
-
-src_prepare() {
-	default
-
-	# XXX: Drop this > 1.18.10, -Dstrict=false should prevent it now, bug #906047.
-	sed -i -e "/codespell = /s:get_option('tests'):false:" test/meson.build || die
-
-	# fix doc installation path
-	sed -iE "s%lv2_docdir = .*%lv2_docdir = '"${EPREFIX}"/usr/share/doc/${PF}'%g" meson.build || die
-}
-
-multilib_src_configure() {
-	local emesonargs=(
-		-Dlv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2
-		-Dstrict=false
-		$(meson_native_use_feature doc docs)
-		$(meson_feature plugins)
-		$(meson_feature test tests)
-	)
-
-	meson_src_configure
-}
-
-multilib_src_install_all() {
-	local DOCS=( NEWS README.md )
-	einstalldocs
-}


^ permalink raw reply related	[flat|nested] 88+ messages in thread

end of thread, other threads:[~2024-09-06 15:26 UTC | newest]

Thread overview: 88+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-27  6:07 [gentoo-commits] repo/gentoo:master commit in: media-libs/lv2/ Jakov Smolić
  -- strict thread matches above, loose matches on Subject: below --
2024-09-06 15:26 Arthur Zamarin
2024-05-28 17:01 Sam James
2024-05-28 13:19 Sam James
2024-05-28 13:19 Sam James
2024-05-28 12:29 Michał Górny
2023-05-16  4:12 Sam James
2023-05-04 11:21 Sam James
2023-05-04 11:21 Sam James
2023-03-24 14:29 Arthur Zamarin
2023-03-24  6:02 Sam James
2023-03-24  6:02 Sam James
2023-03-24  6:02 Sam James
2023-03-24  6:02 Sam James
2023-03-24  6:02 Sam James
2023-03-24  5:44 Miroslav Šulc
2023-03-14  6:41 Miroslav Šulc
2022-10-19 10:07 WANG Xuerui
2022-10-02  7:35 Miroslav Šulc
2022-09-28  4:38 Miroslav Šulc
2022-09-27  7:07 Agostino Sarubbo
2022-09-27  6:07 Jakov Smolić
2022-09-27  6:05 Jakov Smolić
2022-09-27  6:05 Jakov Smolić
2022-09-27  6:00 Arthur Zamarin
2022-08-27 11:17 Sam James
2022-08-27 11:17 Sam James
2022-08-23 19:31 Miroslav Šulc
2022-08-15  5:52 Miroslav Šulc
2022-07-30 11:32 Miroslav Šulc
2022-07-21  3:39 Miroslav Šulc
2022-05-29  6:35 Miroslav Šulc
2022-05-01 17:16 Arthur Zamarin
2021-08-24 21:02 Marek Szuba
2021-02-17  9:40 Miroslav Šulc
2021-02-15  6:03 Sam James
2021-02-14 14:53 Sam James
2021-02-09  6:15 Sam James
2021-02-08 17:26 Sam James
2021-02-08 17:25 Sam James
2021-01-08 12:32 Miroslav Šulc
2020-07-22  7:07 Miroslav Šulc
2020-07-17  7:44 Agostino Sarubbo
2020-07-17  7:40 Agostino Sarubbo
2020-07-17  7:21 Agostino Sarubbo
2020-07-15 12:19 Sam James
2020-07-11 19:55 Sergei Trofimovich
2020-07-10 12:09 Sam James
2020-06-20 10:34 Miroslav Šulc
2020-06-10  7:53 Miroslav Šulc
2020-06-10  7:19 Miroslav Šulc
2020-06-04  9:06 David Seifert
2020-04-13 13:05 Sergei Trofimovich
2020-04-01 21:01 Mart Raudsepp
2020-02-10 12:12 Michał Górny
2020-02-09 16:29 Michał Górny
2020-01-27 12:29 Mikle Kolyada
2020-01-20 22:11 Sergei Trofimovich
2020-01-17 12:25 Agostino Sarubbo
2020-01-17 10:45 Agostino Sarubbo
2020-01-17 10:27 Agostino Sarubbo
2020-01-17  9:33 Agostino Sarubbo
2020-01-17  9:29 Agostino Sarubbo
2019-12-14 13:01 Miroslav Šulc
2019-09-14  5:03 Matt Turner
2019-06-20 18:04 Sergei Trofimovich
2019-06-06  6:46 Agostino Sarubbo
2019-05-26 11:10 Mikle Kolyada
2019-05-24 20:18 Sergei Trofimovich
2019-05-21 21:50 Aaron Bauman
2019-02-18 19:24 Alexis Ballier
2018-12-23  3:25 Matt Turner
2018-08-25 21:30 Andreas Sturmlechner
2018-07-22  1:55 Mikle Kolyada
2018-05-17 13:52 Thomas Deutschmann
2018-05-05 12:52 Sergei Trofimovich
2018-05-01 11:47 Jeroen Roovers
2018-03-30 17:26 Sergei Trofimovich
2018-03-29  6:17 Sergei Trofimovich
2017-12-21  7:39 Matt Thode
2017-12-20 23:22 Matt Thode
2017-07-12 14:43 Pacho Ramos
2017-06-15 14:23 Anthony G. Basile
2017-04-28 13:22 Agostino Sarubbo
2017-04-27 10:14 Agostino Sarubbo
2017-04-23 11:29 David Seifert
2017-02-17 20:24 Michał Górny
2016-11-30  9:25 Alexis Ballier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox