From: "Ian Delaney" <idella4@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-musicbrainz-ngs/
Date: Fri, 13 Nov 2015 15:46:41 +0000 (UTC) [thread overview]
Message-ID: <1447429590.e4dae9de50707ae3503e28b0d2c5e01667a43757.idella4@gentoo> (raw)
commit: e4dae9de50707ae3503e28b0d2c5e01667a43757
Author: Ian Delaney <idella4 <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 13 15:44:45 2015 +0000
Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Fri Nov 13 15:46:30 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4dae9de
dev-python/python-musicbrainz-ngs: bump to vn. 0.5
add new proxy maintainer or metadata, submitted via, and closes,
the gentoo bug, comes with a doc build and IUSE examples
Gentoo bug: #550092
Package-Manager: portage-2.2.24
dev-python/python-musicbrainz-ngs/Manifest | 1 +
dev-python/python-musicbrainz-ngs/metadata.xml | 5 ++-
.../python-musicbrainz-ngs-0.5.ebuild | 47 ++++++++++++++++++++++
3 files changed, 52 insertions(+), 1 deletion(-)
diff --git a/dev-python/python-musicbrainz-ngs/Manifest b/dev-python/python-musicbrainz-ngs/Manifest
index 89e5f06..2e5faca 100644
--- a/dev-python/python-musicbrainz-ngs/Manifest
+++ b/dev-python/python-musicbrainz-ngs/Manifest
@@ -1 +1,2 @@
DIST python-musicbrainz-ngs-0.4.tar.gz 54296 SHA256 9251f370b3c1f85018a1bb90989dfd4f63e2a5457a56380543d93abec9675edb SHA512 a40df9512a6b81932560595699dc460b57d3b755c642d489d6e21b3a680385b245a458ac23fed0a922090079d25bf4f562258e81a855d71398531353577a3f19 WHIRLPOOL 47880ec80bbd96c8c4470dad0b786a98aa8ecbb7b3a3761b1eb13db4ce1437415bef89b4bb5f50dc35a9982efcdd0f876baa2fe488cdc3038ada6b1197aab905
+DIST python-musicbrainzngs0.5.tar.gz 62517 SHA256 ea84abc60fcb5152418dd49e8fdecf3e68759304a71bef422c3b1376886c5b7a SHA512 b0bca65b83d737390d8edc8ae15082941767e7f129deab05b275dcf98a821316f816ca5a01a064d39e87b33b128d2ba18f9d21e6fc681194a018162a6628c17e WHIRLPOOL 904dac82be4444f5710eed99b97b659d303cc98bc7f6ccea36a050156897402411f6659d94dc9b0001ece6ec0296b88976301e7adb345777ed2627122ad7b009
diff --git a/dev-python/python-musicbrainz-ngs/metadata.xml b/dev-python/python-musicbrainz-ngs/metadata.xml
index 84c0eba..51ea0bc 100644
--- a/dev-python/python-musicbrainz-ngs/metadata.xml
+++ b/dev-python/python-musicbrainz-ngs/metadata.xml
@@ -1,8 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
+ <herd>proxy-maintainers</herd>
<maintainer>
- <email>maintainer-needed@gentoo.org</email>
+ <email>gerion.entrup@t-online.de</email>
+ <name>Gerion Entrup</name>
+ <description>Proxied maintainer; set to assignee in all bugs</description>
</maintainer>
<longdescription lang="en">
This library implements webservice bindings for the Musicbrainz NGS site, also known as /ws/2.
diff --git a/dev-python/python-musicbrainz-ngs/python-musicbrainz-ngs-0.5.ebuild b/dev-python/python-musicbrainz-ngs/python-musicbrainz-ngs-0.5.ebuild
new file mode 100644
index 0000000..86dd3fc
--- /dev/null
+++ b/dev-python/python-musicbrainz-ngs/python-musicbrainz-ngs-0.5.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+MY_PN="${PN/%-ngs/ngs}"
+
+DESCRIPTION="Python bindings for the MusicBrainz NGS and the Cover Art Archive webservices"
+HOMEPAGE="https://github.com/alastair/python-musicbrainzngs"
+SRC_URI="https://github.com/alastair/${MY_PN}/archive/v${PV}.tar.gz -> ${MY_PN}${PV}.tar.gz"
+
+LICENSE="BSD-2 ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc examples test"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+DEPEND="${RDEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
+
+python_prepare_all() {
+ # Prevent un-needed d'loading
+ sed -e "s/, 'sphinx.ext.intersphinx'//" -i docs/conf.py || die
+ distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+ use doc && emake -C docs html
+}
+
+python_test() {
+ esetup.py test
+}
+
+python_install_all() {
+ use doc && local HTML_DOCS=( docs/_build/html/. )
+ use examples && local EXAMPLES=( examples )
+
+ distutils-r1_python_install_all
+}
next reply other threads:[~2015-11-13 15:46 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-13 15:46 Ian Delaney [this message]
-- strict thread matches above, loose matches on Subject: below --
2016-04-13 13:20 [gentoo-commits] repo/gentoo:master commit in: dev-python/python-musicbrainz-ngs/ Sam Jorna
2016-05-13 10:12 Agostino Sarubbo
2016-06-05 18:09 Mike Gilbert
2017-10-19 18:07 Michał Górny
2017-10-19 18:39 Michał Górny
2017-10-19 18:39 Michał Górny
2019-07-16 15:33 Michał Górny
2020-02-05 20:47 Michał Górny
2020-03-20 9:58 David Seifert
2020-04-21 8:18 Joonas Niilola
2020-04-21 8:18 Joonas Niilola
2020-07-09 8:59 Agostino Sarubbo
2020-07-11 8:13 Michał Górny
2020-07-11 8:13 Michał Górny
2020-12-11 15:08 Michał Górny
2021-01-30 14:47 Conrad Kostecki
2021-05-28 14:19 Michał Górny
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1447429590.e4dae9de50707ae3503e28b0d2c5e01667a43757.idella4@gentoo \
--to=idella4@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox