idella4 14/09/30 03:17:52 Modified: ChangeLog Added: discogs-client-2.0.2.ebuild Log: bump; clean old python impls, update deps, upgrade test phase, based on patch by F. Henze from, and closes, Bug #523226 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path 1.5 dev-python/discogs-client/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/discogs-client/ChangeLog?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/discogs-client/ChangeLog?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/discogs-client/ChangeLog?r1=1.4&r2=1.5 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/discogs-client/ChangeLog,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- ChangeLog 31 Mar 2014 21:10:37 -0000 1.4 +++ ChangeLog 30 Sep 2014 03:17:52 -0000 1.5 @@ -1,6 +1,12 @@ # ChangeLog for dev-python/discogs-client # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/discogs-client/ChangeLog,v 1.4 2014/03/31 21:10:37 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/discogs-client/ChangeLog,v 1.5 2014/09/30 03:17:52 idella4 Exp $ + +*discogs-client-2.0.2 (30 Sep 2014) + + 30 Sep 2014; Ian Delaney <idel...@gentoo.org> +discogs-client-2.0.2.ebuild: + bump; clean old python impls, update deps, upgrade test phase, based on patch + by F. Henze from, and closes, Bug #523226 31 Mar 2014; Michał Górny <mgo...@gentoo.org> discogs-client-1.1.1.ebuild: Add support for the new PyPy slotting. 1.1 dev-python/discogs-client/discogs-client-2.0.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/discogs-client/discogs-client-2.0.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/discogs-client/discogs-client-2.0.2.ebuild?rev=1.1&content-type=text/plain Index: discogs-client-2.0.2.ebuild =================================================================== # Copyright 1999-2014 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.0.2.ebuild,v 1.1 2014/09/30 03:17:52 idella4 Exp $ EAPI=5 # Not py3 capable due to oauth2 supports py2 pypy only PYTHON_COMPAT=( python2_7 pypy ) 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}]" # 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}" }