idella4 15/06/11 05:12:58 Modified: ChangeLog Added: discogs-client-2.2.0.ebuild Removed: discogs-client-1.1.1.ebuild Log: bump (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path 1.11 dev-python/discogs-client/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/discogs-client/ChangeLog?rev=1.11&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/discogs-client/ChangeLog?rev=1.11&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/discogs-client/ChangeLog?r1=1.10&r2=1.11 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/discogs-client/ChangeLog,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- ChangeLog 7 Jun 2015 13:00:37 -0000 1.10 +++ ChangeLog 11 Jun 2015 05:12:58 -0000 1.11 @@ -1,6 +1,12 @@ # ChangeLog for dev-python/discogs-client # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/discogs-client/ChangeLog,v 1.10 2015/06/07 13:00:37 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/discogs-client/ChangeLog,v 1.11 2015/06/11 05:12:58 idella4 Exp $ + +*discogs-client-2.2.0 (11 Jun 2015) + + 11 Jun 2015; Ian Delaney <idel...@gentoo.org> +discogs-client-2.2.0.ebuild, + -discogs-client-1.1.1.ebuild: + bump 07 Jun 2015; Justin Lecher <j...@gentoo.org> metadata.xml: Add github to remote-id in metadata.xml 1.1 dev-python/discogs-client/discogs-client-2.2.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/discogs-client/discogs-client-2.2.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/discogs-client/discogs-client-2.2.0.ebuild?rev=1.1&content-type=text/plain Index: discogs-client-2.2.0.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/discogs-client/discogs-client-2.2.0.ebuild,v 1.1 2015/06/11 05:12:58 idella4 Exp $ EAPI=5 # Not py3 capable due to oauth2 supports py2 pypy only PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 DESCRIPTION="Official Python API client for Discogs" HOMEPAGE="http://github.com/discogs/discogs_client http://pypi.python.org/pypi/discogs-client" #SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" SRC_URI="https://github.com/discogs/${PN/-/_}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD-2" SLOT="0" KEYWORDS="~amd64 ~x86" RDEPEND=" dev-python/requests[${PYTHON_USEDEP}] dev-python/oauth2[${PYTHON_USEDEP}] dev-python/oauthlib[${PYTHON_USEDEP}] " # It's either this or make a test use flag to add RDEPEND behind it. Both work DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}]" S="${WORKDIR}"/${P/-/_} python_test() { "${PYTHON}" -m unittest discover || die "Tests failed under ${EPYTHON}" }