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/bottle: bottle-0.11.7.ebuild ChangeLog
Date: Fri, 06 Jun 2014 15:44:20
Message-Id: 20140606154416.C817E2004E@flycatcher.gentoo.org
1 djc 14/06/06 15:44:16
2
3 Modified: ChangeLog
4 Added: bottle-0.11.7.ebuild
5 Log:
6 Version bump bottle to 0.11.7 (fixes bug 509350)
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 30380381)
9
10 Revision Changes Path
11 1.24 dev-python/bottle/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/ChangeLog?rev=1.24&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/ChangeLog?rev=1.24&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/ChangeLog?r1=1.23&r2=1.24
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v
20 retrieving revision 1.23
21 retrieving revision 1.24
22 diff -u -r1.23 -r1.24
23 --- ChangeLog 15 May 2014 12:58:36 -0000 1.23
24 +++ ChangeLog 6 Jun 2014 15:44:16 -0000 1.24
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/bottle
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v 1.23 2014/05/15 12:58:36 idella4 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v 1.24 2014/06/06 15:44:16 djc Exp $
30 +
31 +*bottle-0.11.7 (06 Jun 2014)
32 +
33 + 06 Jun 2014; Dirkjan Ochtman <djc@g.o> +bottle-0.11.7.ebuild:
34 + Version bump bottle to 0.11.7 (fixes bug 509350)
35
36 15 May 2014; Ian Delaney <idella4@g.o> bottle-0.12.5.ebuild:
37 drop py2.6 pypy2_0 add py3.4 support
38
39
40
41 1.1 dev-python/bottle/bottle-0.11.7.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/bottle-0.11.7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/bottle-0.11.7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bottle-0.11.7.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/bottle-0.11.7.ebuild,v 1.1 2014/06/06 15:44:16 djc Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy pypy2_0)
55 inherit distutils-r1
56
57 DESCRIPTION="A fast and simple micro-framework for small web-applications"
58 HOMEPAGE="http://pypi.python.org/pypi/bottle http://bottlepy.org/"
59 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
60
61 LICENSE="MIT"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
64 IUSE=""
65
66 DEPEND=""
67 RDEPEND=""
68
69 python_prepare_all() {
70 sed -i -e '/scripts/d' setup.py || die
71 distutils-r1_python_prepare_all
72 }
73
74 pkg_postinst() {
75 elog "Due to problems with bottle.py being in /usr/bin (see bug #474874)"
76 elog "we do as most other distros and do not install the script anymore."
77 elog "If you do want/have to call it directly rather than through your app,"
78 elog "please use the following instead:"
79 elog ' `python -m bottle`'
80 }