commit: 87bf3a9c9a345ea8166b9d2794f9bdc32c1741cd
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 3 07:54:19 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec 3 07:54:25 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87bf3a9c
dev-python/mediafile: cleanup old
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/mediafile/Manifest | 1 -
dev-python/mediafile/mediafile-0.2.0.ebuild | 43 -----------------------------
2 files changed, 44 deletions(-)
diff --git a/dev-python/mediafile/Manifest b/dev-python/mediafile/Manifest
index 8b866f0784e..2535c3c6189 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 d7bb592f915..00000000000
--- 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
-}