add some media-sound packages

This commit is contained in:
2020-05-10 13:52:30 +03:00
parent b2d5f88926
commit 236b78d73f
14 changed files with 561 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
DIST whipper-0.4.2.tar.gz 179705 SHA256 a40b0a07b6e8edcd387848582af904e607bff936690df0ee57548cc16474baf4 SHA512 04bab47dff73ac5c1476deda16d011bb68de1c945cb30b2e4673a5097afd5cf928a1cdfaaa6082bf51695f0e10a6257d313aa8f1b51b4b6a758bd47358ec023d WHIRLPOOL ae0756e97ba9a7fac396ada2ecf10eb98adf37377918905a923545261e85d6c0973adcf2f81f29f67c2297e799a49b1e6aa0d718454608e629bbbd00d44c02fe
EBUILD whipper-0.4.2.ebuild 1250 SHA256 c50b10dc1f2112ebba7a0198c9e4e6ee6ccd684402baaa6b75165b30abdf707c SHA512 e89b643a81422b6ac91e281511d8996677c0abb22c1721c0222b265943d501e876146d2a58e6faf133df476cc5255ff750a5df13aace4d0220787538a41653a2 WHIRLPOOL d2fe98de8d5e8d376ec88035cb91d345fda212d5c4d1528b197397ff9f7690aa9f5946ddf715004fc9ad954f4b213db9b54284967d991b998c980f38d94454fb

View File

@@ -0,0 +1,49 @@
# Copyright 1999-2014 Tiziano Mueller
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit bash-completion-r1 distutils-r1
DESCRIPTION="CD-DA ripper, fork of the morituri project (CDDA ripper for *nix systems aiming for accuracy over speed)"
HOMEPAGE="https://github.com/JoeLametta/whipper"
SRC_URI="https://github.com/JoeLametta/whipper/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="alac +cddb +cdio +flac test wav wavpack"
RDEPEND="${PYTHON_DEPS}
!media-sound/morituri
media-sound/cdparanoia
app-cdr/cdrdao
media-libs/gstreamer:0.10
media-sound/sox
dev-python/python-musicbrainz-ngs
alac? ( media-plugins/gst-plugins-ffmpeg )
cddb? ( dev-python/cddb-py[${PYTHON_USEDEP}] )
cdio? ( dev-python/pycdio )
flac? ( media-plugins/gst-plugins-flac media-libs/flac )
wav? ( media-libs/gst-plugins-good media-libs/libsndfile )
wavpack? ( media-plugins/gst-plugins-wavpack )
dev-python/gst-python:0.10[${PYTHON_USEDEP}]
"
python_test() {
esetup.py test
}
src_compile() {
cd "${S}/src"
emake
}
python_install_all() {
distutils-r1_python_install_all
dobin "${S}/src/accuraterip-checksum"
}