Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/discogs-client: discogs-client-2.0.2.ebuild ChangeLog
Date: Tue, 30 Sep 2014 03:17:56
Message-Id: 20140930031752.4D44AA1E@oystercatcher.gentoo.org
1 idella4 14/09/30 03:17:52
2
3 Modified: ChangeLog
4 Added: discogs-client-2.0.2.ebuild
5 Log:
6 bump; clean old python impls, update deps, upgrade test phase, based on patch by F. Henze from, and closes, Bug #523226
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.5 dev-python/discogs-client/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/discogs-client/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/discogs-client/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/discogs-client/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/discogs-client/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 31 Mar 2014 21:10:37 -0000 1.4
24 +++ ChangeLog 30 Sep 2014 03:17:52 -0000 1.5
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/discogs-client
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/discogs-client/ChangeLog,v 1.4 2014/03/31 21:10:37 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/discogs-client/ChangeLog,v 1.5 2014/09/30 03:17:52 idella4 Exp $
30 +
31 +*discogs-client-2.0.2 (30 Sep 2014)
32 +
33 + 30 Sep 2014; Ian Delaney <idella4@g.o> +discogs-client-2.0.2.ebuild:
34 + bump; clean old python impls, update deps, upgrade test phase, based on patch
35 + by F. Henze from, and closes, Bug #523226
36
37 31 Mar 2014; Michał Górny <mgorny@g.o> discogs-client-1.1.1.ebuild:
38 Add support for the new PyPy slotting.
39
40
41
42 1.1 dev-python/discogs-client/discogs-client-2.0.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/discogs-client/discogs-client-2.0.2.ebuild?rev=1.1&view=markup
45 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
46
47 Index: discogs-client-2.0.2.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $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 $
52
53 EAPI=5
54 # Not py3 capable due to oauth2 supports py2 pypy only
55 PYTHON_COMPAT=( python2_7 pypy )
56
57 inherit distutils-r1
58
59 DESCRIPTION="Official Python API client for Discogs"
60 HOMEPAGE="http://github.com/discogs/discogs_client http://pypi.python.org/pypi/discogs-client"
61 #SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
62 SRC_URI="https://github.com/discogs/${PN/-/_}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
63
64 LICENSE="BSD-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67
68 RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
69 dev-python/oauth2[${PYTHON_USEDEP}]"
70 # It's either this or make a test use flag to add RDEPEND behind it. Both work
71 DEPEND="${RDEPEND}
72 dev-python/setuptools[${PYTHON_USEDEP}]"
73
74 S="${WORKDIR}"/${P/-/_}
75
76 python_test() {
77 "${PYTHON}" -m unittest discover || die "Tests failed under ${EPYTHON}"
78 }