media-sound/jack: Remove the old version

Remove the old stable version. The package was lastrited, then it was
revived by a proxied maintainer. It is being dumped to ~arch then.
This commit is contained in:
Michał Górny
2017-03-10 16:50:02 +01:00
parent ee89c242b9
commit b3080fe34d
2 changed files with 0 additions and 63 deletions

View File

@@ -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

View File

@@ -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
}