Gentoo Archives: gentoo-commits

From: "Dirkjan Ochtman (djc)" <djc@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pygments: ChangeLog pygments-1.2.2.ebuild pygments-1.2.1.ebuild
Date: Sat, 02 Jan 2010 22:27:36
Message-Id: E1NRCRX-0000ro-Ga@stork.gentoo.org
1 djc 10/01/02 22:27:31
2
3 Modified: ChangeLog
4 Added: pygments-1.2.2.ebuild
5 Removed: pygments-1.2.1.ebuild
6 Log:
7 Bump dev-python/pygments once again, to 1.2.2.
8 (Portage version: 2.1.6.13/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.49 dev-python/pygments/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.49&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pygments/ChangeLog?rev=1.49&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pygments/ChangeLog?r1=1.48&r2=1.49
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v
20 retrieving revision 1.48
21 retrieving revision 1.49
22 diff -u -r1.48 -r1.49
23 --- ChangeLog 2 Jan 2010 20:00:00 -0000 1.48
24 +++ ChangeLog 2 Jan 2010 22:27:31 -0000 1.49
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/pygments
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.48 2010/01/02 20:00:00 arfrever Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/ChangeLog,v 1.49 2010/01/02 22:27:31 djc Exp $
30 +
31 +*pygments-1.2.2 (02 Jan 2010)
32 +
33 + 02 Jan 2010; Dirkjan Ochtman <djc@g.o> -pygments-1.2.1.ebuild,
34 + +pygments-1.2.2.ebuild:
35 + Version bump to 1.2.2.
36
37 *pygments-1.2.1 (02 Jan 2010)
38
39
40
41
42 1.1 dev-python/pygments/pygments-1.2.2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pygments/pygments-1.2.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pygments/pygments-1.2.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pygments-1.2.2.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.2.2.ebuild,v 1.1 2010/01/02 22:27:31 djc Exp $
52
53 EAPI="2"
54 SUPPORT_PYTHON_ABIS="1"
55
56 inherit distutils
57
58 MY_PN="Pygments"
59 MY_P="${MY_PN}-${PV}"
60
61 DESCRIPTION="Pygments is a syntax highlighting package written in Python."
62 HOMEPAGE="http://pygments.org/ http://pypi.python.org/pypi/Pygments"
63 SRC_URI="http://pypi.python.org/packages/source/P/${MY_PN}/${MY_P}.tar.gz"
64
65 LICENSE="BSD"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
67 SLOT="0"
68 IUSE="doc test"
69
70 DEPEND="test? ( media-fonts/ttf-bitstream-vera
71 dev-python/nose )"
72 RDEPEND=""
73
74 S="${WORKDIR}/${MY_P}"
75 DOCS="CHANGES"
76
77 src_test() {
78 testing() {
79 # A future version of dev-python/nose will support Python 3.
80 [[ "${PYTHON_ABI}" == 3.* ]] && return
81
82 "$(PYTHON)" tests/run.py
83 }
84 python_execute_function testing
85 }
86
87 src_install(){
88 distutils_src_install
89 use doc && dohtml -r docs/build/
90 }