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/bottle: bottle-0.11.3.ebuild ChangeLog
Date: Sat, 03 Nov 2012 13:08:05
Message-Id: 20121103130746.6AE91215F3@flycatcher.gentoo.org
1 idella4 12/11/03 13:07:46
2
3 Modified: ChangeLog
4 Added: bottle-0.11.3.ebuild
5 Log:
6 version bump to bottle-0.11.3
7
8 (Portage version: 2.1.11.30/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.3 dev-python/bottle/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 20 May 2012 16:50:29 -0000 1.2
24 +++ ChangeLog 3 Nov 2012 13:07:46 -0000 1.3
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/bottle
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v 1.2 2012/05/20 16:50:29 xarthisius Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v 1.3 2012/11/03 13:07:46 idella4 Exp $
30 +
31 +*bottle-0.11.3 (04 Nov 2012)
32 +
33 + 04 Nov 2012; Ian Delaney <idella4@g.o> +bottle-0.11.3.ebuild:
34 + version bump to bottle-0.11.3
35
36 20 May 2012; Kacper Kowalik <xarthisius@g.o> bottle-0.10.9.ebuild:
37 Don't inherit eutils.eclass since it's not used, drop unnecessary dependecy on
38 @@ -14,4 +19,3 @@
39 Mike MacDonald (crazymykl) <crazymykl@×××××.com> and Johan Bergström
40 (jbergstroem) <bugs@××××××××××.nu> for their work on this ebuild in Sunrise
41 overlay
42 -
43
44
45
46 1.1 dev-python/bottle/bottle-0.11.3.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/bottle-0.11.3.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/bottle-0.11.3.ebuild?rev=1.1&content-type=text/plain
50
51 Index: bottle-0.11.3.ebuild
52 ===================================================================
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/bottle-0.11.3.ebuild,v 1.1 2012/11/03 13:07:46 idella4 Exp $
56
57 EAPI=4
58
59 SUPPORT_PYTHON_ABIS=1
60 RESTRICT_PYTHON_ABIS="*-jython"
61
62 inherit distutils
63
64 DESCRIPTION="A fast and simple micro-framework for small web-applications"
65 HOMEPAGE="http://pypi.python.org/pypi/bottle http://bottlepy.org/"
66 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
67
68 LICENSE="MIT"
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86"
71 IUSE=""
72
73 DEPEND="dev-python/simplejson"
74 RDEPEND="${DEPEND}"
75
76 PYTHON_MODNAME=bottle.py
77
78 src_prepare() {
79 distutils_src_prepare
80
81 sed -e "/^sys.path.insert/d" -i test/{servertest.py,testall.py} || die
82
83 2to3_tests() {
84 local p_maj=$(python_get_version -l --major)
85
86 if [[ ! -d test-${p_maj} ]]; then
87 cp -r test test-${p_maj}
88 if [[ $p_maj == 3 ]]; then
89 2to3-${PYTHON_ABI} -nw --no-diffs test-${p_maj}
90 fi
91 fi
92 }
93 python_execute_function 2to3_tests
94 }
95
96 src_test() {
97 testing() {
98 local p_maj=$(python_get_version -l --major)
99 PYTHONPATH="build-${PYTHON_ABI}/lib/" "$(PYTHON)" test-${p_maj}/testall.py
100 }
101 python_execute_function testing
102 }