summaryrefslogtreecommitdiff
path: root/dev-python/python-musicbrainz
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-python/python-musicbrainz
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-python/python-musicbrainz')
-rw-r--r--dev-python/python-musicbrainz/Manifest3
-rw-r--r--dev-python/python-musicbrainz/metadata.xml12
-rw-r--r--dev-python/python-musicbrainz/python-musicbrainz-0.7.4-r1.ebuild52
3 files changed, 0 insertions, 67 deletions
diff --git a/dev-python/python-musicbrainz/Manifest b/dev-python/python-musicbrainz/Manifest
deleted file mode 100644
index 5aecb92cb041..000000000000
--- a/dev-python/python-musicbrainz/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST python-musicbrainz2-0.7.4.tar.gz 76939 BLAKE2B ab41027a0219659e7e03a43d3d5cda973284afc4c1a1560074e252992f05fa5913724847af6862ec9cc3599f8165a0d6451c00240a93a767c6f409c7db33097c SHA512 dbf72a6f2dfa945398f390f20cbf75a5099ea69075b419ece37f1994c816ae36a62c1bf1d7490110e446b3ce441a7d486002c1e91ea4872aba3f4cc183bbf88e
-EBUILD python-musicbrainz-0.7.4-r1.ebuild 1001 BLAKE2B d8497635f4bc00e80417cb66df3b1a9c4ec368b209ecd1558313025d5ac5486d24ec343d82e5d9022146691f1b1d33f91f5739b2cdff8aa0de87e923df1d951d SHA512 cdff7e39e32dd9a7bee04edadf3cb2cafae7467361b52adfbfef383b10fb170c3b7b616372f414173bdea7b332cce006ee4d7d31f2ea029210d33c6a2dc541f1
-MISC metadata.xml 353 BLAKE2B 936234dca3e9cd646ab403b630c1dd05eb56bc3648bfdbda6fa31b6609334dbf04622760ea00d78f3c9b2bb37ab3c3d8e992db3210bcaffdaecbd5bc3e538fa0 SHA512 5d9b0061aaffcdcaa374f9ebe83ac47d7d6acdd28a51452f68d3f43a5e7b866639b9edebd82c20a440fe4e7f54a93567219a91cbf524218276c6c17df8b605c1
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 2e4cf4af8b07..000000000000
--- a/dev-python/python-musicbrainz/python-musicbrainz-0.7.4-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-PYTHON_COMPAT=( python2_7 pypy )
-
-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
- fi
-}
-
-python_test() {
- esetup.py test
-}
-
-python_install_all() {
- dodoc AUTHORS.txt CHANGES.txt README.txt
-
- if use doc; then
- dohtml html/*
- fi
-
- if use examples; then
- docinto examples
- dodoc examples/*.txt
- insinto /usr/share/doc/${PF}/examples
- doins examples/*.py
- fi
-}