media-sound/jack: Remove the old version
authorMichał Górny <mgorny@gentoo.org>
Fri, 10 Mar 2017 15:50:02 +0000 (16:50 +0100)
committerMichał Górny <mgorny@gentoo.org>
Fri, 10 Mar 2017 15:52:29 +0000 (16:52 +0100)
Remove the old stable version. The package was lastrited, then it was
revived by a proxied maintainer. It is being dumped to ~arch then.

media-sound/jack/files/jack-3.0.0-python26.patch [deleted file]
media-sound/jack/jack-3.1.1-r1.ebuild [deleted file]

diff --git a/media-sound/jack/files/jack-3.0.0-python26.patch b/media-sound/jack/files/jack-3.0.0-python26.patch
deleted file mode 100644 (file)
index 9870134..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
---- jack_functions.py
-+++ jack_functions.py
-@@ -219,9 +219,9 @@
-     ff = blocks % CDDA_BLOCKS_PER_SECOND
-     return mm, ss, ff, blocks
-
--def starts_with(str, with):
--    "checks whether str starts with with"
--    return str[0:len(with)] == with
-+def starts_with(str, withstr):
-+    "checks whether str starts with withstr"
-+    return str[0:len(withstr)] == withstr
diff --git a/media-sound/jack/jack-3.1.1-r1.ebuild b/media-sound/jack/jack-3.1.1-r1.ebuild
deleted file mode 100644 (file)
index afb8e61..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="3"
-PYTHON_DEPEND="2"
-
-inherit eutils distutils
-
-DESCRIPTION="A frontend for several cd-rippers and mp3 encoders"
-HOMEPAGE="http://www.home.unix-ag.org/arne/jack/"
-SRC_URI="http://www.home.unix-ag.org/arne/jack/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 sparc x86"
-IUSE=""
-
-DEPEND="sys-libs/ncurses"
-RDEPEND="${DEPEND}
-       dev-python/cddb-py
-       dev-python/id3-py
-       dev-python/pyid3lib
-       dev-python/pyvorbis
-       media-libs/flac
-       media-sound/lame
-       media-sound/cdparanoia"
-
-pkg_setup() {
-       python_set_active_version 2
-       python_pkg_setup
-}
-
-src_prepare() {
-       epatch "${FILESDIR}"/${PN}-3.0.0-python26.patch
-}
-
-src_install() {
-       distutils_src_install
-
-       dobin jack || die "dobin failed"
-
-       insinto $(python_get_sitedir)
-       PYTHON_MODNAME="$(ls jack_*.py)"
-       doins ${PYTHON_MODNAME}
-
-       newman jack.man jack.1
-
-       dodoc README doc/ChangeLog doc/TODO
-
-       dohtml doc/*html doc/*css doc/*gif
-}