Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/qrcode: qrcode-5.0.1.ebuild ChangeLog qrcode-4.0.4.ebuild
Date: Sat, 21 Jun 2014 22:56:00
Message-Id: 20140621225557.1D7312004E@flycatcher.gentoo.org
1 floppym 14/06/21 22:55:57
2
3 Modified: ChangeLog
4 Added: qrcode-5.0.1.ebuild
5 Removed: qrcode-4.0.4.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
10
11 Revision Changes Path
12 1.5 dev-python/qrcode/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/qrcode/ChangeLog?rev=1.5&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/qrcode/ChangeLog?rev=1.5&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/qrcode/ChangeLog?r1=1.4&r2=1.5
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/qrcode/ChangeLog,v
21 retrieving revision 1.4
22 retrieving revision 1.5
23 diff -u -r1.4 -r1.5
24 --- ChangeLog 21 Jun 2014 22:52:17 -0000 1.4
25 +++ ChangeLog 21 Jun 2014 22:55:56 -0000 1.5
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/qrcode
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/qrcode/ChangeLog,v 1.4 2014/06/21 22:52:17 floppym Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/qrcode/ChangeLog,v 1.5 2014/06/21 22:55:56 floppym Exp $
31 +
32 +*qrcode-5.0.1 (21 Jun 2014)
33 +
34 + 21 Jun 2014; Mike Gilbert <floppym@g.o> +qrcode-5.0.1.ebuild,
35 + -qrcode-4.0.4.ebuild:
36 + Version bump.
37
38 21 Jun 2014; Mike Gilbert <floppym@g.o> -qrcode-3.1.ebuild,
39 qrcode-4.0.4.ebuild:
40
41
42
43 1.1 dev-python/qrcode/qrcode-5.0.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/qrcode/qrcode-5.0.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/qrcode/qrcode-5.0.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: qrcode-5.0.1.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/qrcode/qrcode-5.0.1.ebuild,v 1.1 2014/06/21 22:55:56 floppym Exp $
53
54 EAPI=5
55
56 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
57
58 inherit distutils-r1
59
60 DESCRIPTION="QR Code generator on top of PIL"
61 HOMEPAGE="https://pypi.python.org/pypi/qrcode"
62 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
63
64 LICENSE="BSD"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="test"
68
69 # optional deps:
70 # - dev-python/lxml for svg backend
71 # - virtual/pil for PIL backend
72 RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
73 DEPEND="${RDEPEND}
74 dev-python/setuptools[${PYTHON_USEDEP}]
75 test? ( dev-python/lxml[${PYTHON_USEDEP}] )"
76
77 python_test() {
78 "${PYTHON}" -m unittest qrcode.tests || die "Testing failed with ${EPYTHON}"
79 }