summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-02-21 20:22:38 +0100
committerMichał Górny <mgorny@gentoo.org>2020-02-21 20:28:10 +0100
commit2e858954d4864f3bc10d45187b0435ca21a59c7c (patch)
treef7cb73e25f8e0284f6521afc061983d67f5c5220 /dev-python/python-musicbrainz
parentdev-python/pythong: Remove last-rited package (diff)
downloadgentoo-2e858954d4864f3bc10d45187b0435ca21a59c7c.tar.gz
gentoo-2e858954d4864f3bc10d45187b0435ca21a59c7c.tar.bz2
gentoo-2e858954d4864f3bc10d45187b0435ca21a59c7c.zip
dev-python/python-musicbrainz: Remove last-rited package
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/python-musicbrainz')
-rw-r--r--dev-python/python-musicbrainz/Manifest1
-rw-r--r--dev-python/python-musicbrainz/metadata.xml12
-rw-r--r--dev-python/python-musicbrainz/python-musicbrainz-0.7.4-r1.ebuild53
3 files changed, 0 insertions, 66 deletions
diff --git a/dev-python/python-musicbrainz/Manifest b/dev-python/python-musicbrainz/Manifest
deleted file mode 100644
index 7e58984d0aee..000000000000
--- a/dev-python/python-musicbrainz/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST python-musicbrainz2-0.7.4.tar.gz 76939 BLAKE2B ab41027a0219659e7e03a43d3d5cda973284afc4c1a1560074e252992f05fa5913724847af6862ec9cc3599f8165a0d6451c00240a93a767c6f409c7db33097c SHA512 dbf72a6f2dfa945398f390f20cbf75a5099ea69075b419ece37f1994c816ae36a62c1bf1d7490110e446b3ce441a7d486002c1e91ea4872aba3f4cc183bbf88e
diff --git a/dev-python/python-musicbrainz/metadata.xml b/dev-python/python-musicbrainz/metadata.xml
deleted file mode 100644
index d0913ee5d1cb..000000000000
--- a/dev-python/python-musicbrainz/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sound@gentoo.org</email>
- <name>Gentoo Sound project</name>
- </maintainer>
-<maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
-</pkgmetadata>
diff --git a/dev-python/python-musicbrainz/python-musicbrainz-0.7.4-r1.ebuild b/dev-python/python-musicbrainz/python-musicbrainz-0.7.4-r1.ebuild
deleted file mode 100644
index a981d645af2c..000000000000
--- a/dev-python/python-musicbrainz/python-musicbrainz-0.7.4-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-MY_PN="${PN}2"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Python Bindings for the MusicBrainz XML Web Service"
-HOMEPAGE="http://musicbrainz.org"
-SRC_URI="http://ftp.musicbrainz.org/pub/musicbrainz/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 hppa ppc ppc64 x86"
-IUSE="doc examples"
-
-RDEPEND="media-libs/libdiscid"
-DEPEND="${RDEPEND}
- doc? ( dev-python/epydoc )"
-# epydoc is called as a script, so no PYTHON_USEDEP
-
-S="${WORKDIR}/${MY_P}"
-
-python_compile_all() {
- if use doc; then
- einfo "Generation of documentation"
- esetup.py docs
-
- # remove cruft
- rm -f html/api-objects.txt || die
- HTML_DOCS=( html/. )
- fi
-}
-
-python_test() {
- esetup.py test
-}
-
-python_install_all() {
- distutils-r1_python_install_all
-
- dodoc AUTHORS.txt CHANGES.txt README.txt
-
- if use examples; then
- docinto examples
- dodoc examples/*.{txt,py}
- fi
-}