Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/whipper/
Date: Mon, 12 Aug 2019 05:27:15
Message-Id: 1565587587.56ca539049fdc9d3bfe71b91cf3fe28dfe61f120.leio@gentoo
1 commit: 56ca539049fdc9d3bfe71b91cf3fe28dfe61f120
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 12 05:26:27 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 12 05:26:27 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56ca5390
7
8 media-sound/whipper: remove old
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 media-sound/whipper/Manifest | 1 -
14 media-sound/whipper/whipper-0.7.0-r1.ebuild | 63 -----------------------------
15 2 files changed, 64 deletions(-)
16
17 diff --git a/media-sound/whipper/Manifest b/media-sound/whipper/Manifest
18 index 78e669ce51c..abf3fbecc5c 100644
19 --- a/media-sound/whipper/Manifest
20 +++ b/media-sound/whipper/Manifest
21 @@ -1,2 +1 @@
22 -DIST whipper-0.7.0.tar.gz 160649 BLAKE2B 8e14b6dda00b3c8be7ba0fabb25d1cbca536edc785373986f857bafbc2e54d358f18b27140ffda74384c4e815e68ee466c8fc5e4e5d17aa80c8237fda389ba2b SHA512 b4bf4ca64521d8600288addecec6cbd8e43d1ff9a6b9a60872eff1bd5a2b6966af036d6467ba09273ac78aa01d8cac3be29a0e2c4e6600829b9988a74ef8cd88
23 DIST whipper-0.7.3.tar.gz 168393 BLAKE2B b34151ede7c867dbbca34fcec3d8ef81cb50d66abc760fa54bec880f8f1186faf3e0f5298c2890501b9bd2f586b80d2cdc45a0755b6fe12fc1a2215e9ea9ecbb SHA512 ac96393471a6b4c40f5870f6e3183b65d43229314e2a1eacbf065c51ac61cbc772f2de3bde9f20ee1f7ffec427cd03c31f27df60eb6c621a699927646080c0ab
24
25 diff --git a/media-sound/whipper/whipper-0.7.0-r1.ebuild b/media-sound/whipper/whipper-0.7.0-r1.ebuild
26 deleted file mode 100644
27 index 2aace1ef876..00000000000
28 --- a/media-sound/whipper/whipper-0.7.0-r1.ebuild
29 +++ /dev/null
30 @@ -1,63 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python2_7 )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="A Python CD-DA ripper preferring accuracy over speed (forked from morituri)"
41 -HOMEPAGE="https://github.com/whipper-team/whipper"
42 -SRC_URI="https://github.com/whipper-team/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="GPL-3+"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~x86"
47 -IUSE="test"
48 -
49 -DEPEND="
50 - dev-python/setuptools[${PYTHON_USEDEP}]
51 - media-libs/libsndfile
52 - test? ( dev-python/twisted[${PYTHON_USEDEP}] )
53 -"
54 -RDEPEND="
55 - app-cdr/cdrdao
56 - >=dev-libs/libcdio-paranoia-0.94_p2
57 - dev-python/cddb-py[${PYTHON_USEDEP}]
58 - dev-python/pycdio[${PYTHON_USEDEP}]
59 - dev-python/pygobject:2=[${PYTHON_USEDEP}]
60 - dev-python/python-musicbrainz-ngs[${PYTHON_USEDEP}]
61 - dev-python/requests[${PYTHON_USEDEP}]
62 - dev-python/setuptools[${PYTHON_USEDEP}]
63 - media-libs/flac
64 - media-libs/libsndfile
65 - media-libs/mutagen[${PYTHON_USEDEP}]
66 - media-sound/sox[flac]
67 -"
68 -
69 -PATCHES=(
70 - "${FILESDIR}/${P}-cdparanoia-name-fix.patch"
71 - "${FILESDIR}/${P}-src-Makefile-respect-CFLAGS.patch"
72 -)
73 -
74 -src_prepare() {
75 - # accurip test totally depends on network access
76 - rm "${PN}"/test/test_common_accurip.py || die
77 -
78 - distutils-r1_src_prepare
79 -}
80 -
81 -src_compile() {
82 - distutils-r1_src_compile
83 - emake -C src CC="$(tc-getCC)"
84 -}
85 -
86 -python_test() {
87 - "${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}"
88 -}
89 -
90 -src_install() {
91 - distutils-r1_src_install
92 - emake PREFIX="${EPREFIX}/usr" DESTDIR="${D}" -C src install
93 -}