summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2020-12-03 07:54:19 +0000
committerSam James <sam@gentoo.org>2020-12-03 07:54:25 +0000
commit87bf3a9c9a345ea8166b9d2794f9bdc32c1741cd (patch)
tree163610707fce60c2be6aaa1d99ab8a6cf391af8f /dev-python
parentf446e41c31d29e780ab491965d8e4c654aaddb50 (diff)
downloadgentoo-87bf3a9c9a345ea8166b9d2794f9bdc32c1741cd.tar.gz
gentoo-87bf3a9c9a345ea8166b9d2794f9bdc32c1741cd.tar.bz2
gentoo-87bf3a9c9a345ea8166b9d2794f9bdc32c1741cd.zip
dev-python/mediafile: cleanup old
Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/mediafile/Manifest1
-rw-r--r--dev-python/mediafile/mediafile-0.2.0.ebuild43
2 files changed, 0 insertions, 44 deletions
diff --git a/dev-python/mediafile/Manifest b/dev-python/mediafile/Manifest
index 8b866f0784e8..2535c3c61894 100644
--- a/dev-python/mediafile/Manifest
+++ b/dev-python/mediafile/Manifest
@@ -1,2 +1 @@
-DIST mediafile-0.2.0.tar.gz 509689 BLAKE2B f79da210a74d55c4709b6fbf08a0675f445001ec49d042fc4a1101def07068bebccb155e770c5cbe8d051d7f101a213e9fcefbcb9590a650de99cfde837a965c SHA512 0fa79f77e0ac9a021b569e78f0edbe8cc63308ad8c89526d8e15dee455a284cb90d29b51aa476287e306717315c3cff290634fc6e4ac0b1726163dd922ee3b0d
DIST mediafile-0.6.0.tar.gz 509351 BLAKE2B 5b8d97be6bd7becd44053d2d1b855252161779d5a01e8fea29443db0b3f524ba3b58dfa372b48451da76672ea5fdb521cd8a2a5c6c110d37e637dcfefbc0842b SHA512 7fd7d8a1d53311c22835041c39413d9dc7e1b4d8afc94a8c578aa4de7f65361f6c998062bb1b2804cae1f672c6b8e7c109fcc3e459e2266b8f19a0bde8673945
diff --git a/dev-python/mediafile/mediafile-0.2.0.ebuild b/dev-python/mediafile/mediafile-0.2.0.ebuild
deleted file mode 100644
index d7bb592f915a..000000000000
--- a/dev-python/mediafile/mediafile-0.2.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7} )
-inherit distutils-r1
-
-DESCRIPTION="Read and write audio files' tags in Python"
-HOMEPAGE="https://github.com/beetbox/mediafile"
-SRC_URI="https://github.com/beetbox/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- dev-python/setuptools[${PYTHON_USEDEP}]
- doc? ( dev-python/sphinx )
- test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-DEPEND="
- >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
- >=media-libs/mutagen-1.33.0[${PYTHON_USEDEP}]
-"
-RDEPEND="${DEPEND}"
-
-python_compile_all() {
- if use doc; then
- emake -C docs html
- rm -r docs/_build/html/_sources || die
- HTML_DOCS=( docs/_build/html/. )
- fi
-}
-
-python_test() {
- nosetests -v || die "Tests failed"
- if use doc; then
- sphinx-build -W -q -b html docs __doctest || die "Doc tests failed"
- fi
-}