diff options
author | Quentin Retornaz <gentoo@retornaz.com> | 2019-12-12 18:36:59 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-12-12 18:36:59 +0100 |
commit | 3763704334bf6413b92f3d5b9450086ea9e66ef1 (patch) | |
tree | ca07ddfdf64dc7debb7b11dfc0991b4938a47afc /media-sound/whipper | |
parent | media-libs/quvi-0.9.5: ppc stable (diff) | |
download | gentoo-3763704334bf6413b92f3d5b9450086ea9e66ef1.tar.gz gentoo-3763704334bf6413b92f3d5b9450086ea9e66ef1.tar.bz2 gentoo-3763704334bf6413b92f3d5b9450086ea9e66ef1.zip |
media-sound/whipper: bump version to 0.9.0
Closes: https://bugs.gentoo.org/702002
Closes: https://github.com/gentoo/gentoo/pull/13930
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Quentin Retornaz <gentoo@retornaz.com>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-sound/whipper')
-rw-r--r-- | media-sound/whipper/Manifest | 1 | ||||
-rw-r--r-- | media-sound/whipper/whipper-0.9.0.ebuild | 46 |
2 files changed, 47 insertions, 0 deletions
diff --git a/media-sound/whipper/Manifest b/media-sound/whipper/Manifest index abf3fbecc5cf..45df92ca8419 100644 --- a/media-sound/whipper/Manifest +++ b/media-sound/whipper/Manifest @@ -1 +1,2 @@ DIST whipper-0.7.3.tar.gz 168393 BLAKE2B b34151ede7c867dbbca34fcec3d8ef81cb50d66abc760fa54bec880f8f1186faf3e0f5298c2890501b9bd2f586b80d2cdc45a0755b6fe12fc1a2215e9ea9ecbb SHA512 ac96393471a6b4c40f5870f6e3183b65d43229314e2a1eacbf065c51ac61cbc772f2de3bde9f20ee1f7ffec427cd03c31f27df60eb6c621a699927646080c0ab +DIST whipper-0.9.0.tar.gz 200836 BLAKE2B 197567d476bcfa448bee7d6ba2d1b980355f792e6591840d1291800c3ae205496dc58579394870adf171f11f31d7042b48d070cf03d203e45e7c369500c500ef SHA512 49e66ad2c6e8450199a53a28bb71725704daac86ce2cbf68080d4dee1c2357cf8367ddb4735a07f2ffe612d84f016661e5b6f94efa9d5a7d6b8cf56ee32b0ae7 diff --git a/media-sound/whipper/whipper-0.9.0.ebuild b/media-sound/whipper/whipper-0.9.0.ebuild new file mode 100644 index 000000000000..c89a9f317c12 --- /dev/null +++ b/media-sound/whipper/whipper-0.9.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7} ) + +inherit distutils-r1 + +DESCRIPTION="A Python CD-DA ripper preferring accuracy over speed (forked from morituri)" +HOMEPAGE="https://github.com/whipper-team/whipper" +SRC_URI="https://github.com/whipper-team/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="media-libs/libsndfile:=" +RDEPEND=" + ${DEPEND} + app-cdr/cdrdao + >=dev-libs/libcdio-paranoia-0.94_p2 + >=dev-python/pycdio-2.1.0[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-musicbrainz-ngs[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/ruamel-yaml[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + media-libs/mutagen[${PYTHON_USEDEP}] + media-sound/sox[flac]" +BDEPEND=" + dev-python/setuptools_scm[${PYTHON_USEDEP}] + test? ( dev-python/twisted[${PYTHON_USEDEP}] )" + +distutils_enable_tests unittest + +PATCHES=( "${FILESDIR}/${PN}-0.7.0-cdparanoia-name-fix.patch" ) + +python_prepare_all() { + # accurip test totally depends on network access + rm "${PN}"/test/test_common_accurip.py || die + + export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} + + distutils-r1_python_prepare_all +} |