* [gentoo-commits] repo/gentoo:master commit in: media-sound/ecasound/
@ 2017-02-21 17:13 Michał Górny
0 siblings, 0 replies; 14+ messages in thread
From: Michał Górny @ 2017-02-21 17:13 UTC (permalink / raw
To: gentoo-commits
commit: 51c4f47c76597913de2c00b96f1c0a71b3eee82e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 21 17:04:30 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Feb 21 17:13:30 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51c4f47c
media-sound/ecasound: python-single-r1, EAPI=6
...sound-2.6.0.ebuild => ecasound-2.6.0-r1.ebuild} | 47 +++++++--------
...sound-2.9.1.ebuild => ecasound-2.9.1-r1.ebuild} | 70 ++++++++++------------
2 files changed, 51 insertions(+), 66 deletions(-)
diff --git a/media-sound/ecasound/ecasound-2.6.0.ebuild b/media-sound/ecasound/ecasound-2.6.0-r1.ebuild
similarity index 63%
rename from media-sound/ecasound/ecasound-2.6.0.ebuild
rename to media-sound/ecasound/ecasound-2.6.0-r1.ebuild
index 3b0e3ca6bc..99d0d192d1 100644
--- a/media-sound/ecasound/ecasound-2.6.0.ebuild
+++ b/media-sound/ecasound/ecasound-2.6.0-r1.ebuild
@@ -1,10 +1,11 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI=3
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
-inherit eutils python
+inherit eutils python-single-r1
DESCRIPTION="a package for multitrack audio processing"
HOMEPAGE="http://ecasound.seul.org/ecasound"
@@ -15,7 +16,7 @@ SLOT="1"
KEYWORDS="amd64 ~ppc x86"
IUSE="alsa audiofile debug doc jack libsamplerate mikmod ncurses vorbis oss python ruby sndfile"
-RDEPEND="python? ( dev-lang/python )
+RDEPEND="python? ( ${PYTHON_DEPS} )
jack? ( media-sound/jack-audio-connection-kit )
media-libs/ladspa-sdk
audiofile? ( media-libs/audiofile )
@@ -30,15 +31,17 @@ RDEPEND="python? ( dev-lang/python )
sys-libs/readline"
DEPEND="${RDEPEND}"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+pkg_setup() {
+ use python && python-single-r1_pkg_setup
+}
+
src_configure() {
- local PYConf
+ local pyconf=()
- if use python; then
- PYConf="--enable-pyecasound=c
- --with-python-includes=$(python_get_includedir)
- --with-python-modules=$(python_get_libdir)"
- else
- PYConf="$myconf --disable-pyecasound"
+ if use python ; then
+ pyconf=( "--with-python-modules=${EPREFIX}/usr/$(get_libdir)/${EPYTHON}" )
fi
econf \
@@ -50,28 +53,18 @@ src_configure() {
$(use_enable libsamplerate) \
$(use_enable ncurses) \
$(use_enable oss) \
+ $(use_enable python pyecasound c) \
$(use_enable ruby rubyecasound) \
$(use_enable sndfile) \
--enable-shared \
--with-largefile \
--enable-sys-readline \
- ${PYConf} || die "econf failed"
+ "${pyconf[@]}"
}
src_install() {
- emake DESTDIR="${D}" install || die "emake install failed."
- dodoc BUGS NEWS README TODO Documentation/*.txt
- use doc && dohtml Documentation/*.html
-}
-
-pkg_postinst() {
- if use python; then
- python_mod_optimize ecacontrol.py eci.py pyeca.py
- fi
-}
-
-pkg_postrm() {
- if use python; then
- python_mod_cleanup ecacontrol.py eci.py pyeca.py
- fi
+ emake DESTDIR="${D}" install
+ use python && python_optimize
+ dodoc BUGS NEWS README TODO
+ use doc && dodoc Documentation/*.html
}
diff --git a/media-sound/ecasound/ecasound-2.9.1.ebuild b/media-sound/ecasound/ecasound-2.9.1-r1.ebuild
similarity index 53%
rename from media-sound/ecasound/ecasound-2.9.1.ebuild
rename to media-sound/ecasound/ecasound-2.9.1-r1.ebuild
index a17e5c60fb..db40f645c4 100644
--- a/media-sound/ecasound/ecasound-2.9.1.ebuild
+++ b/media-sound/ecasound/ecasound-2.9.1-r1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI=4
-PYTHON_DEPEND="python? 2"
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
-inherit eutils python autotools
+inherit autotools eutils python-single-r1
DESCRIPTION="a package for multitrack audio processing"
HOMEPAGE="http://ecasound.seul.org/ecasound"
@@ -16,48 +16,47 @@ SLOT="1"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="alsa audiofile debug doc jack libsamplerate lv2 mikmod ncurses oil osc oss
python ruby sndfile static-libs test"
-REQUIRED_USE="test? ( lv2 )"
-
-RDEPEND="sys-libs/readline
- alsa? ( media-libs/alsa-lib )
- audiofile? ( media-libs/audiofile )
- jack? ( media-sound/jack-audio-connection-kit )
- libsamplerate? ( media-libs/libsamplerate )
- lv2? ( >=media-libs/lilv-0.5.0 )
+REQUIRED_USE="test? ( lv2 )
+ python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="sys-libs/readline:0=
+ alsa? ( media-libs/alsa-lib:= )
+ audiofile? ( media-libs/audiofile:= )
+ jack? ( virtual/jack:= )
+ libsamplerate? ( media-libs/libsamplerate:= )
+ lv2? ( >=media-libs/lilv-0.5.0:= )
media-libs/ladspa-sdk
- mikmod? ( media-libs/libmikmod:0 )
- ncurses? ( sys-libs/ncurses )
- oil? ( dev-libs/liboil )
- osc? ( media-libs/liblo )
+ mikmod? ( media-libs/libmikmod:0= )
+ ncurses? ( sys-libs/ncurses:0= )
+ oil? ( dev-libs/liboil:= )
+ osc? ( media-libs/liblo:= )
+ python? ( ${PYTHON_DEPS} )
ruby? ( dev-lang/ruby )
- sndfile? ( media-libs/libsndfile )"
+ sndfile? ( media-libs/libsndfile:= )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
pkg_setup() {
- if use python ; then
- python_set_active_version 2
- python_pkg_setup
- fi
+ use python && python-single-r1_pkg_setup
}
src_prepare() {
- epatch "${FILESDIR}"/${PN}-2.8.1-ldflags.patch
+ eapply "${FILESDIR}"/${PN}-2.8.1-ldflags.patch
+ eapply_user
- if use python ; then
- sed -i -e "s:\$(ecasoundc_libs):\0 $(python_get_library -l):" \
- pyecasound/Makefile.am || die "sed failed"
- fi
+# if use python ; then
+# sed -i -e "s:\$(ecasoundc_libs):\0 $(python_get_library -l):" \
+# pyecasound/Makefile.am || die "sed failed"
+# fi
eautoreconf
}
src_configure() {
- local pyconf
+ local pyconf=()
if use python ; then
- pyconf="--with-python-includes=${EPREFIX}$(python_get_includedir)
- --with-python-modules=${EPREFIX}$(python_get_libdir)"
+ pyconf=( "--with-python-modules=${EPREFIX}/usr/$(get_libdir)/${EPYTHON}" )
fi
econf \
@@ -79,24 +78,17 @@ src_configure() {
$(use_enable ruby rubyecasound) \
$(use_enable sndfile) \
$(use_enable static-libs static) \
- ${pyconf}
+ "${pyconf[@]}"
}
src_install() {
default
+ use python && python_optimize
if use doc ; then
- dohtml Documentation/*.html
+ dodoc Documentation/*.html
dodoc Documentation/programmers_guide/ecasound_programmers_guide.txt
fi
prune_libtool_files
}
-
-pkg_postinst() {
- use python && python_mod_optimize ecacontrol.py eci.py pyeca.py
-}
-
-pkg_postrm() {
- use python && python_mod_cleanup ecacontrol.py eci.py pyeca.py
-}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/ecasound/
@ 2018-05-24 0:42 Aaron Bauman
0 siblings, 0 replies; 14+ messages in thread
From: Aaron Bauman @ 2018-05-24 0:42 UTC (permalink / raw
To: gentoo-commits
commit: e327f0d78975a66a5da3508c71a8c3cff0c2b2b7
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Wed May 23 17:16:23 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Thu May 24 00:40:23 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e327f0d7
media-sound/ecasound: use HTTPs
media-sound/ecasound/ecasound-2.6.0-r1.ebuild | 6 +++---
media-sound/ecasound/ecasound-2.9.1-r1.ebuild | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/media-sound/ecasound/ecasound-2.6.0-r1.ebuild b/media-sound/ecasound/ecasound-2.6.0-r1.ebuild
index 9db836fa920..bab257a0d55 100644
--- a/media-sound/ecasound/ecasound-2.6.0-r1.ebuild
+++ b/media-sound/ecasound/ecasound-2.6.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -7,8 +7,8 @@ PYTHON_COMPAT=( python2_7 )
inherit eutils python-single-r1
DESCRIPTION="a package for multitrack audio processing"
-HOMEPAGE="http://ecasound.seul.org/ecasound"
-SRC_URI="http://${PN}.seul.org/download/${P}.tar.gz"
+HOMEPAGE="https://ecasound.seul.org/ecasound/"
+SRC_URI="https://${PN}.seul.org/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="1"
diff --git a/media-sound/ecasound/ecasound-2.9.1-r1.ebuild b/media-sound/ecasound/ecasound-2.9.1-r1.ebuild
index 52575e945b5..e9a6f5f90cf 100644
--- a/media-sound/ecasound/ecasound-2.9.1-r1.ebuild
+++ b/media-sound/ecasound/ecasound-2.9.1-r1.ebuild
@@ -7,8 +7,8 @@ PYTHON_COMPAT=( python2_7 )
inherit autotools eutils python-single-r1
DESCRIPTION="a package for multitrack audio processing"
-HOMEPAGE="http://ecasound.seul.org/ecasound"
-SRC_URI="http://ecasound.seul.org/download/${P}.tar.gz"
+HOMEPAGE="https://ecasound.seul.org/ecasound/"
+SRC_URI="https://ecasound.seul.org/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="1"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/ecasound/
@ 2019-12-12 14:58 Michał Górny
0 siblings, 0 replies; 14+ messages in thread
From: Michał Górny @ 2019-12-12 14:58 UTC (permalink / raw
To: gentoo-commits
commit: f2f084d3815b05e04c445834eaf15fc760827d8a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 12 14:55:28 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Dec 12 14:58:38 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2f084d3
media-sound/ecasound: Fix MissingTestRestrict
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
media-sound/ecasound/ecasound-2.9.1-r1.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/media-sound/ecasound/ecasound-2.9.1-r1.ebuild b/media-sound/ecasound/ecasound-2.9.1-r1.ebuild
index e9a6f5f90cf..d7a884894e3 100644
--- a/media-sound/ecasound/ecasound-2.9.1-r1.ebuild
+++ b/media-sound/ecasound/ecasound-2.9.1-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
@@ -15,6 +15,7 @@ SLOT="1"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="alsa audiofile debug doc jack libsamplerate lv2 mikmod ncurses oil osc oss
python ruby sndfile static-libs test"
+RESTRICT="!test? ( test )"
REQUIRED_USE="test? ( lv2 )
python? ( ${PYTHON_REQUIRED_USE} )"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/ecasound/
@ 2020-08-30 19:10 Thomas Deutschmann
0 siblings, 0 replies; 14+ messages in thread
From: Thomas Deutschmann @ 2020-08-30 19:10 UTC (permalink / raw
To: gentoo-commits
commit: 2223f3ce4aeebfaafc81bf683d64db2f3db089a1
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 30 19:04:13 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Aug 30 19:10:11 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2223f3ce
media-sound/ecasound: x86 stable (bug #735376)
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
media-sound/ecasound/ecasound-2.9.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/ecasound/ecasound-2.9.3.ebuild b/media-sound/ecasound/ecasound-2.9.3.ebuild
index 1187b27286c..1740b8de3da 100644
--- a/media-sound/ecasound/ecasound-2.9.3.ebuild
+++ b/media-sound/ecasound/ecasound-2.9.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://ecasound.seul.org/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="1"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="alsa audiofile debug doc jack libsamplerate lv2 mikmod ncurses oil osc oss
python ruby sndfile static-libs test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/ecasound/
@ 2020-09-04 18:29 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2020-09-04 18:29 UTC (permalink / raw
To: gentoo-commits
commit: 3f6add5f11ea4bce46f853b0d91dd2f5ddcec52f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 4 18:28:47 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 4 18:28:47 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f6add5f
media-sound/ecasound: Stabilize 2.9.3 amd64, #735376
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-sound/ecasound/ecasound-2.9.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/ecasound/ecasound-2.9.3.ebuild b/media-sound/ecasound/ecasound-2.9.3.ebuild
index 1740b8de3da..fb4f2a24804 100644
--- a/media-sound/ecasound/ecasound-2.9.3.ebuild
+++ b/media-sound/ecasound/ecasound-2.9.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://ecasound.seul.org/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="1"
-KEYWORDS="~amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="alsa audiofile debug doc jack libsamplerate lv2 mikmod ncurses oil osc oss
python ruby sndfile static-libs test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/ecasound/
@ 2020-09-05 4:57 Miroslav Šulc
0 siblings, 0 replies; 14+ messages in thread
From: Miroslav Šulc @ 2020-09-05 4:57 UTC (permalink / raw
To: gentoo-commits
commit: 093586a6e782676064c355735f28f9d4b9510c50
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 5 04:57:17 2020 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sat Sep 5 04:57:17 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=093586a6
media-sound/ecasound: removed obsolete 2.6.0-r1
Closes: https://bugs.gentoo.org/735376
Closes: https://bugs.gentoo.org/700258
Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/ecasound/Manifest | 1 -
media-sound/ecasound/ecasound-2.6.0-r1.ebuild | 69 ---------------------------
2 files changed, 70 deletions(-)
diff --git a/media-sound/ecasound/Manifest b/media-sound/ecasound/Manifest
index 743c6c7aaec..0ef66f13970 100644
--- a/media-sound/ecasound/Manifest
+++ b/media-sound/ecasound/Manifest
@@ -1,2 +1 @@
-DIST ecasound-2.6.0.tar.gz 966629 BLAKE2B 35539d80ea306f2ba38980838895c66a2f5db918854f0bd0d0cd1513d0cdaa00a9359337b469a41b8fa42cd88e7642e8393d91fdb1add277edfe77bde633e1cc SHA512 48b3c65e301a775499765c55b09bddacfde24bfd7a5be6c03389c7bda882abe98b061aaa39ec12a797e3a5a2808f446751155b36c263f0f12da2db1495515c5e
DIST ecasound-2.9.3.tar.gz 1101628 BLAKE2B 52aaa96abee9a911c613ac772fd3df3ff7bb4a8309283089d19e2f7265be26eb6e77304896cda2ed1c71742f36dfe1e38209afd42b921d56f12d43f08b4fe2d2 SHA512 4f70e6f54cd05194a4ffe80905e7488d16d32d684c87736dfdac7b3aebf3d20cbf417964d75e00e781f6f0614b8b699061c69fcbf7e1761d66ce1abfcd5f1140
diff --git a/media-sound/ecasound/ecasound-2.6.0-r1.ebuild b/media-sound/ecasound/ecasound-2.6.0-r1.ebuild
deleted file mode 100644
index bab257a0d55..00000000000
--- a/media-sound/ecasound/ecasound-2.6.0-r1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit eutils python-single-r1
-
-DESCRIPTION="a package for multitrack audio processing"
-HOMEPAGE="https://ecasound.seul.org/ecasound/"
-SRC_URI="https://${PN}.seul.org/download/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="1"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="alsa audiofile debug doc jack libsamplerate mikmod ncurses vorbis oss python ruby sndfile"
-
-RDEPEND="python? ( ${PYTHON_DEPS} )
- jack? ( media-sound/jack-audio-connection-kit )
- media-libs/ladspa-sdk
- audiofile? ( media-libs/audiofile )
- alsa? ( media-libs/alsa-lib )
- vorbis? ( media-libs/libvorbis )
- libsamplerate? ( media-libs/libsamplerate )
- mikmod? ( media-libs/libmikmod:0 )
- ruby? ( dev-lang/ruby )
- python? ( dev-lang/python )
- ncurses? ( sys-libs/ncurses )
- sndfile? ( media-libs/libsndfile )
- sys-libs/readline"
-DEPEND="${RDEPEND}"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-pkg_setup() {
- use python && python-single-r1_pkg_setup
-}
-
-src_configure() {
- local pyconf=()
-
- if use python ; then
- pyconf=( "--with-python-modules=${EPREFIX}/usr/$(get_libdir)/${EPYTHON}" )
- fi
-
- econf \
- $(use_enable alsa) \
- --disable-arts \
- $(use_enable audiofile) \
- $(use_enable debug) \
- $(use_enable jack) \
- $(use_enable libsamplerate) \
- $(use_enable ncurses) \
- $(use_enable oss) \
- $(use_enable python pyecasound c) \
- $(use_enable ruby rubyecasound) \
- $(use_enable sndfile) \
- --enable-shared \
- --with-largefile \
- --enable-sys-readline \
- "${pyconf[@]}"
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- use python && python_optimize
- dodoc BUGS NEWS README TODO
- use doc && dodoc Documentation/*.html
-}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/ecasound/
@ 2021-01-06 14:31 Fabian Groffen
0 siblings, 0 replies; 14+ messages in thread
From: Fabian Groffen @ 2021-01-06 14:31 UTC (permalink / raw
To: gentoo-commits
commit: fbd6f6bbc27c41618db7d1c1e38b29eab640c4d5
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 6 14:28:29 2021 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Wed Jan 6 14:28:29 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbd6f6bb
media-sound/ecasound: drop x86-macos
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
media-sound/ecasound/ecasound-2.9.3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-sound/ecasound/ecasound-2.9.3.ebuild b/media-sound/ecasound/ecasound-2.9.3.ebuild
index fb4f2a24804..88ce55e0de9 100644
--- a/media-sound/ecasound/ecasound-2.9.3.ebuild
+++ b/media-sound/ecasound/ecasound-2.9.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -12,7 +12,7 @@ SRC_URI="https://ecasound.seul.org/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="1"
-KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="alsa audiofile debug doc jack libsamplerate lv2 mikmod ncurses oil osc oss
python ruby sndfile static-libs test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/ecasound/
@ 2021-05-11 18:21 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2021-05-11 18:21 UTC (permalink / raw
To: gentoo-commits
commit: 0534776b73c78c2f39e7bdff6d80b6fa75023eb3
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 11 18:21:13 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 11 18:21:24 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0534776b
media-sound/ecasound: add github remote-id
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-sound/ecasound/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/media-sound/ecasound/metadata.xml b/media-sound/ecasound/metadata.xml
index 7a9880111e6..5b03d2766ab 100644
--- a/media-sound/ecasound/metadata.xml
+++ b/media-sound/ecasound/metadata.xml
@@ -20,4 +20,7 @@
<flag name="oil">Use <pkg>dev-libs/liboil</pkg> for inner loop optimizations</flag>
<flag name="lv2">Add support for Ladspa V2</flag>
</use>
+<upstream>
+ <remote-id type="github">kaivehmanen/ecasound</remote-id>
+</upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/ecasound/
@ 2021-09-19 5:42 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2021-09-19 5:42 UTC (permalink / raw
To: gentoo-commits
commit: cf2415df1ebc1296ae6e59dc58f3c08d297b79ab
Author: Kerin Millar <kfm <AT> plushkava <DOT> net>
AuthorDate: Sun Sep 19 05:24:25 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 19 05:42:40 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf2415df
media-sound/ecasound: build with -std=c++11
To specify the c++98 dialect is no longer compatible with lilv.
Closes: https://bugs.gentoo.org/751583
Closes: https://bugs.gentoo.org/787620
Signed-off-by: Kerin Millar <kfm <AT> plushkava.net>
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-sound/ecasound/ecasound-2.9.3.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/media-sound/ecasound/ecasound-2.9.3.ebuild b/media-sound/ecasound/ecasound-2.9.3.ebuild
index 7cdadd6983e..3b3f4545b17 100644
--- a/media-sound/ecasound/ecasound-2.9.3.ebuild
+++ b/media-sound/ecasound/ecasound-2.9.3.ebuild
@@ -35,6 +35,7 @@ RDEPEND="sys-libs/readline:0=
sndfile? ( media-libs/libsndfile:= )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
+BDEPEND="sys-apps/ed"
PATCHES=(
"${FILESDIR}"/${P}-ldflags.patch
"${FILESDIR}"/${PN}-2.9.1-tinfo.patch
@@ -47,10 +48,9 @@ pkg_setup() {
src_prepare() {
default
-# if use python ; then
-# sed -i -e "s:\$(ecasoundc_libs):\0 $(python_get_library -l):" \
-# pyecasound/Makefile.am || die "sed failed"
-# fi
+ # https://bugs.gentoo.org/787620
+ printf '%s\n' H '/^EXTRACXXFLAGS="-std=c++98"$/s/98/11/' w q |
+ ed -s configure.ac || die "Couldn't patch EXTRACXXFLAGS in configure.ac"
eautoreconf
}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/ecasound/
@ 2022-06-26 7:46 Miroslav Šulc
0 siblings, 0 replies; 14+ messages in thread
From: Miroslav Šulc @ 2022-06-26 7:46 UTC (permalink / raw
To: gentoo-commits
commit: 953dd7b618ee751963d6fdb54d7018fdbbe9f613
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 26 07:46:12 2022 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sun Jun 26 07:46:22 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=953dd7b6
media-sound/ecasound: eapi8, added python 3.10 & 3.11
Bug: https://bugs.gentoo.org/846059
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/ecasound/ecasound-2.9.3-r1.ebuild | 97 +++++++++++++++++++++++++++
1 file changed, 97 insertions(+)
diff --git a/media-sound/ecasound/ecasound-2.9.3-r1.ebuild b/media-sound/ecasound/ecasound-2.9.3-r1.ebuild
new file mode 100644
index 000000000000..69f8abd3682c
--- /dev/null
+++ b/media-sound/ecasound/ecasound-2.9.3-r1.ebuild
@@ -0,0 +1,97 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit autotools python-single-r1
+
+DESCRIPTION="a package for multitrack audio processing"
+HOMEPAGE="https://ecasound.seul.org/ecasound/"
+SRC_URI="https://ecasound.seul.org/download/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="1"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+IUSE="alsa audiofile debug doc jack libsamplerate lv2 mikmod ncurses oil osc oss
+python ruby sndfile static-libs test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="test? ( lv2 )
+ python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="sys-libs/readline:0=
+ alsa? ( media-libs/alsa-lib:= )
+ audiofile? ( media-libs/audiofile:= )
+ jack? ( virtual/jack:= )
+ libsamplerate? ( media-libs/libsamplerate:= )
+ lv2? ( media-libs/lilv:= )
+ media-libs/ladspa-sdk
+ mikmod? ( media-libs/libmikmod:0= )
+ ncurses? ( sys-libs/ncurses:0= )
+ oil? ( dev-libs/liboil:= )
+ osc? ( media-libs/liblo:= )
+ python? ( ${PYTHON_DEPS} )
+ ruby? ( dev-lang/ruby:* )
+ sndfile? ( media-libs/libsndfile:= )"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+BDEPEND="sys-apps/ed"
+PATCHES=(
+ "${FILESDIR}"/${P}-ldflags.patch
+ "${FILESDIR}"/${PN}-2.9.1-tinfo.patch
+)
+
+pkg_setup() {
+ use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+ default
+
+ # https://bugs.gentoo.org/787620
+ printf '%s\n' H '/^EXTRACXXFLAGS="-std=c++98"$/s/98/11/' w q |
+ ed -s configure.ac || die "Couldn't patch EXTRACXXFLAGS in configure.ac"
+
+ eautoreconf
+}
+
+src_configure() {
+ local pyconf=()
+
+ if use python ; then
+ pyconf=( "--with-python-modules=${EPREFIX}/usr/$(get_libdir)/${EPYTHON}" )
+ fi
+
+ econf \
+ --disable-arts \
+ --enable-shared \
+ --enable-sys-readline \
+ --with-largefile \
+ $(use_enable alsa) \
+ $(use_enable audiofile) \
+ $(use_enable debug) \
+ $(use_enable jack) \
+ $(use_enable libsamplerate) \
+ $(use_enable lv2 liblilv) \
+ $(use_enable ncurses) \
+ $(use_enable oil liboil) \
+ $(use_enable osc liblo) \
+ $(use_enable oss) \
+ $(use_enable python pyecasound) \
+ $(use_enable ruby rubyecasound) \
+ $(use_enable sndfile) \
+ $(use_enable static-libs static) \
+ "${pyconf[@]}"
+}
+
+src_install() {
+ default
+ use python && python_optimize
+
+ if use doc ; then
+ dodoc Documentation/*.html
+ dodoc Documentation/programmers_guide/ecasound_programmers_guide.txt
+ fi
+
+ find "${ED}" -name "*.la" -delete
+}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/ecasound/
@ 2022-07-02 16:05 Jakov Smolić
0 siblings, 0 replies; 14+ messages in thread
From: Jakov Smolić @ 2022-07-02 16:05 UTC (permalink / raw
To: gentoo-commits
commit: 071b2597150d44e73aa7fe84de581db96f0dac38
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 2 16:03:28 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Jul 2 16:03:28 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=071b2597
media-sound/ecasound: Stabilize 2.9.3-r1 x86, #854798
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
media-sound/ecasound/ecasound-2.9.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/ecasound/ecasound-2.9.3-r1.ebuild b/media-sound/ecasound/ecasound-2.9.3-r1.ebuild
index 69f8abd3682c..42ec0f087a4d 100644
--- a/media-sound/ecasound/ecasound-2.9.3-r1.ebuild
+++ b/media-sound/ecasound/ecasound-2.9.3-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://ecasound.seul.org/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="1"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="alsa audiofile debug doc jack libsamplerate lv2 mikmod ncurses oil osc oss
python ruby sndfile static-libs test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/ecasound/
@ 2022-08-29 12:38 Jakov Smolić
0 siblings, 0 replies; 14+ messages in thread
From: Jakov Smolić @ 2022-08-29 12:38 UTC (permalink / raw
To: gentoo-commits
commit: 5183c263b9bbe788101aab30c1d1047a4851ef86
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 29 12:38:14 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Mon Aug 29 12:38:14 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5183c263
media-sound/ecasound: Stabilize 2.9.3-r1 amd64, #854798
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
media-sound/ecasound/ecasound-2.9.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/ecasound/ecasound-2.9.3-r1.ebuild b/media-sound/ecasound/ecasound-2.9.3-r1.ebuild
index 42ec0f087a4d..d3b090d5cdc9 100644
--- a/media-sound/ecasound/ecasound-2.9.3-r1.ebuild
+++ b/media-sound/ecasound/ecasound-2.9.3-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://ecasound.seul.org/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="1"
-KEYWORDS="~amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="alsa audiofile debug doc jack libsamplerate lv2 mikmod ncurses oil osc oss
python ruby sndfile static-libs test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/ecasound/
@ 2022-09-06 4:16 Miroslav Šulc
0 siblings, 0 replies; 14+ messages in thread
From: Miroslav Šulc @ 2022-09-06 4:16 UTC (permalink / raw
To: gentoo-commits
commit: 0673b54b3e02df8568bed961d340b7e50a069bb2
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 6 04:16:41 2022 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Tue Sep 6 04:16:41 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0673b54b
media-sound/ecasound: dropped obsolete 2.9.3
Bug: https://bugs.gentoo.org/854798
Closes: https://bugs.gentoo.org/846059
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/ecasound/ecasound-2.9.3.ebuild | 97 ------------------------------
1 file changed, 97 deletions(-)
diff --git a/media-sound/ecasound/ecasound-2.9.3.ebuild b/media-sound/ecasound/ecasound-2.9.3.ebuild
deleted file mode 100644
index 3b3f4545b17f..000000000000
--- a/media-sound/ecasound/ecasound-2.9.3.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit autotools python-single-r1
-
-DESCRIPTION="a package for multitrack audio processing"
-HOMEPAGE="https://ecasound.seul.org/ecasound/"
-SRC_URI="https://ecasound.seul.org/download/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="1"
-KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="alsa audiofile debug doc jack libsamplerate lv2 mikmod ncurses oil osc oss
-python ruby sndfile static-libs test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="test? ( lv2 )
- python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="sys-libs/readline:0=
- alsa? ( media-libs/alsa-lib:= )
- audiofile? ( media-libs/audiofile:= )
- jack? ( virtual/jack:= )
- libsamplerate? ( media-libs/libsamplerate:= )
- lv2? ( >=media-libs/lilv-0.5.0:= )
- media-libs/ladspa-sdk
- mikmod? ( media-libs/libmikmod:0= )
- ncurses? ( sys-libs/ncurses:0= )
- oil? ( dev-libs/liboil:= )
- osc? ( media-libs/liblo:= )
- python? ( ${PYTHON_DEPS} )
- ruby? ( dev-lang/ruby:* )
- sndfile? ( media-libs/libsndfile:= )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-BDEPEND="sys-apps/ed"
-PATCHES=(
- "${FILESDIR}"/${P}-ldflags.patch
- "${FILESDIR}"/${PN}-2.9.1-tinfo.patch
-)
-
-pkg_setup() {
- use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
- default
-
- # https://bugs.gentoo.org/787620
- printf '%s\n' H '/^EXTRACXXFLAGS="-std=c++98"$/s/98/11/' w q |
- ed -s configure.ac || die "Couldn't patch EXTRACXXFLAGS in configure.ac"
-
- eautoreconf
-}
-
-src_configure() {
- local pyconf=()
-
- if use python ; then
- pyconf=( "--with-python-modules=${EPREFIX}/usr/$(get_libdir)/${EPYTHON}" )
- fi
-
- econf \
- --disable-arts \
- --enable-shared \
- --enable-sys-readline \
- --with-largefile \
- $(use_enable alsa) \
- $(use_enable audiofile) \
- $(use_enable debug) \
- $(use_enable jack) \
- $(use_enable libsamplerate) \
- $(use_enable lv2 liblilv) \
- $(use_enable ncurses) \
- $(use_enable oil liboil) \
- $(use_enable osc liblo) \
- $(use_enable oss) \
- $(use_enable python pyecasound) \
- $(use_enable ruby rubyecasound) \
- $(use_enable sndfile) \
- $(use_enable static-libs static) \
- "${pyconf[@]}"
-}
-
-src_install() {
- default
- use python && python_optimize
-
- if use doc ; then
- dodoc Documentation/*.html
- dodoc Documentation/programmers_guide/ecasound_programmers_guide.txt
- fi
-
- find "${ED}" -name "*.la" -delete
-}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/ecasound/
@ 2024-07-30 19:01 Pacho Ramos
0 siblings, 0 replies; 14+ messages in thread
From: Pacho Ramos @ 2024-07-30 19:01 UTC (permalink / raw
To: gentoo-commits
commit: 7be880944a1f1a14bd9558a5a46b8ffb6a5d56ba
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 30 18:12:02 2024 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Tue Jul 30 19:00:40 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7be88094
media-sound/ecasound: update DESCRIPTION
Closes: https://bugs.gentoo.org/929657
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
media-sound/ecasound/ecasound-2.9.3-r1.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/media-sound/ecasound/ecasound-2.9.3-r1.ebuild b/media-sound/ecasound/ecasound-2.9.3-r1.ebuild
index 3c6ad32445db..862c71272789 100644
--- a/media-sound/ecasound/ecasound-2.9.3-r1.ebuild
+++ b/media-sound/ecasound/ecasound-2.9.3-r1.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
inherit autotools python-single-r1
-DESCRIPTION="a package for multitrack audio processing"
+DESCRIPTION="Package for multitrack audio processing"
HOMEPAGE="https://ecasound.seul.org/ecasound/"
SRC_URI="https://ecasound.seul.org/download/${P}.tar.gz"
^ permalink raw reply related [flat|nested] 14+ messages in thread
end of thread, other threads:[~2024-07-30 19:01 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-06 14:31 [gentoo-commits] repo/gentoo:master commit in: media-sound/ecasound/ Fabian Groffen
-- strict thread matches above, loose matches on Subject: below --
2024-07-30 19:01 Pacho Ramos
2022-09-06 4:16 Miroslav Šulc
2022-08-29 12:38 Jakov Smolić
2022-07-02 16:05 Jakov Smolić
2022-06-26 7:46 Miroslav Šulc
2021-09-19 5:42 Sam James
2021-05-11 18:21 Sam James
2020-09-05 4:57 Miroslav Šulc
2020-09-04 18:29 Sam James
2020-08-30 19:10 Thomas Deutschmann
2019-12-12 14:58 Michał Górny
2018-05-24 0:42 Aaron Bauman
2017-02-21 17:13 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox