9831f88302
* don't require authentication when getting public collections * allow submit_ratings() and submit_tags() to submit for all supported entities * allow 'tags' and 'user-tags' includes on releases * set the parser when the webservice format is changed * read the error message from musicbrainz and return it in a raised exception * send authenticaion headers when required * added get_series_by_id(), search_areas(), search_series() * updated options for get_releases_by_discid() to support 'media-format' and discid-less requests * parse work attributes * added various methods to retrieve data from the Cover Art Archive * added support for pregap tracks * return 'offset-list' and 'offset-count' for get_releases_by_discid() * added support for search and browse of events * added support for 'data-track-list' elements * added support for get and search instruments * added support to read all collection types * added support for search and browse of places * allow single strings to be used as includes for browse requests * allow single strings to be used at tag submission * added support for browse artist by work and work by artist * added support for 'track-count' elements in 'medium-list's returned by search * added support to read xml attributes in 'attribute-list' elements
24 lines
694 B
Makefile
24 lines
694 B
Makefile
# $NetBSD: Makefile,v 1.4 2017/03/13 05:22:05 adam Exp $
|
|
|
|
DISTNAME= python-musicbrainzngs-0.6
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/python-//:S/ngs/-ngs/}
|
|
CATEGORIES= audio net
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=alastair/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/alastair/python-musicbrainzngs
|
|
COMMENT= Python bindings for Musicbrainz' NGS service
|
|
LICENSE= 2-clause-bsd
|
|
|
|
GITHUB_PROJECT= python-musicbrainzngs
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat
|
|
|
|
EGG_NAME= ${DISTNAME:S/python-//}
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && ${PYTHONBIN} setup.py test
|
|
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|