Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/ecasound/
Date: Sat, 05 Sep 2020 04:57:39
Message-Id: 1599281837.093586a6e782676064c355735f28f9d4b9510c50.fordfrog@gentoo
1 commit: 093586a6e782676064c355735f28f9d4b9510c50
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 5 04:57:17 2020 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 5 04:57:17 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=093586a6
7
8 media-sound/ecasound: removed obsolete 2.6.0-r1
9
10 Closes: https://bugs.gentoo.org/735376
11 Closes: https://bugs.gentoo.org/700258
12 Package-Manager: Portage-3.0.5, Repoman-3.0.1
13 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
14
15 media-sound/ecasound/Manifest | 1 -
16 media-sound/ecasound/ecasound-2.6.0-r1.ebuild | 69 ---------------------------
17 2 files changed, 70 deletions(-)
18
19 diff --git a/media-sound/ecasound/Manifest b/media-sound/ecasound/Manifest
20 index 743c6c7aaec..0ef66f13970 100644
21 --- a/media-sound/ecasound/Manifest
22 +++ b/media-sound/ecasound/Manifest
23 @@ -1,2 +1 @@
24 -DIST ecasound-2.6.0.tar.gz 966629 BLAKE2B 35539d80ea306f2ba38980838895c66a2f5db918854f0bd0d0cd1513d0cdaa00a9359337b469a41b8fa42cd88e7642e8393d91fdb1add277edfe77bde633e1cc SHA512 48b3c65e301a775499765c55b09bddacfde24bfd7a5be6c03389c7bda882abe98b061aaa39ec12a797e3a5a2808f446751155b36c263f0f12da2db1495515c5e
25 DIST ecasound-2.9.3.tar.gz 1101628 BLAKE2B 52aaa96abee9a911c613ac772fd3df3ff7bb4a8309283089d19e2f7265be26eb6e77304896cda2ed1c71742f36dfe1e38209afd42b921d56f12d43f08b4fe2d2 SHA512 4f70e6f54cd05194a4ffe80905e7488d16d32d684c87736dfdac7b3aebf3d20cbf417964d75e00e781f6f0614b8b699061c69fcbf7e1761d66ce1abfcd5f1140
26
27 diff --git a/media-sound/ecasound/ecasound-2.6.0-r1.ebuild b/media-sound/ecasound/ecasound-2.6.0-r1.ebuild
28 deleted file mode 100644
29 index bab257a0d55..00000000000
30 --- a/media-sound/ecasound/ecasound-2.6.0-r1.ebuild
31 +++ /dev/null
32 @@ -1,69 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -PYTHON_COMPAT=( python2_7 )
38 -
39 -inherit eutils python-single-r1
40 -
41 -DESCRIPTION="a package for multitrack audio processing"
42 -HOMEPAGE="https://ecasound.seul.org/ecasound/"
43 -SRC_URI="https://${PN}.seul.org/download/${P}.tar.gz"
44 -
45 -LICENSE="GPL-2"
46 -SLOT="1"
47 -KEYWORDS="amd64 ~ppc x86"
48 -IUSE="alsa audiofile debug doc jack libsamplerate mikmod ncurses vorbis oss python ruby sndfile"
49 -
50 -RDEPEND="python? ( ${PYTHON_DEPS} )
51 - jack? ( media-sound/jack-audio-connection-kit )
52 - media-libs/ladspa-sdk
53 - audiofile? ( media-libs/audiofile )
54 - alsa? ( media-libs/alsa-lib )
55 - vorbis? ( media-libs/libvorbis )
56 - libsamplerate? ( media-libs/libsamplerate )
57 - mikmod? ( media-libs/libmikmod:0 )
58 - ruby? ( dev-lang/ruby )
59 - python? ( dev-lang/python )
60 - ncurses? ( sys-libs/ncurses )
61 - sndfile? ( media-libs/libsndfile )
62 - sys-libs/readline"
63 -DEPEND="${RDEPEND}"
64 -
65 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
66 -
67 -pkg_setup() {
68 - use python && python-single-r1_pkg_setup
69 -}
70 -
71 -src_configure() {
72 - local pyconf=()
73 -
74 - if use python ; then
75 - pyconf=( "--with-python-modules=${EPREFIX}/usr/$(get_libdir)/${EPYTHON}" )
76 - fi
77 -
78 - econf \
79 - $(use_enable alsa) \
80 - --disable-arts \
81 - $(use_enable audiofile) \
82 - $(use_enable debug) \
83 - $(use_enable jack) \
84 - $(use_enable libsamplerate) \
85 - $(use_enable ncurses) \
86 - $(use_enable oss) \
87 - $(use_enable python pyecasound c) \
88 - $(use_enable ruby rubyecasound) \
89 - $(use_enable sndfile) \
90 - --enable-shared \
91 - --with-largefile \
92 - --enable-sys-readline \
93 - "${pyconf[@]}"
94 -}
95 -
96 -src_install() {
97 - emake DESTDIR="${D}" install
98 - use python && python_optimize
99 - dodoc BUGS NEWS README TODO
100 - use doc && dodoc Documentation/*.html
101 -}