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.12.6.ebuild ChangeLog
Date: Fri, 06 Jun 2014 15:47:30
Message-Id: 20140606154725.ABCD02004E@flycatcher.gentoo.org
1 djc 14/06/06 15:47:25
2
3 Modified: ChangeLog
4 Added: bottle-0.12.6.ebuild
5 Log:
6 Version bump bottle to 0.12.6
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 30380381)
9
10 Revision Changes Path
11 1.25 dev-python/bottle/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 6 Jun 2014 15:44:16 -0000 1.24
24 +++ ChangeLog 6 Jun 2014 15:47:25 -0000 1.25
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.24 2014/06/06 15:44:16 djc Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v 1.25 2014/06/06 15:47:25 djc Exp $
30 +
31 +*bottle-0.12.6 (06 Jun 2014)
32 +
33 + 06 Jun 2014; Dirkjan Ochtman <djc@g.o> +bottle-0.12.6.ebuild:
34 + Version bump bottle to 0.12.6
35
36 *bottle-0.11.7 (06 Jun 2014)
37
38
39
40
41 1.1 dev-python/bottle/bottle-0.12.6.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/bottle-0.12.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/bottle-0.12.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bottle-0.12.6.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.12.6.ebuild,v 1.1 2014/06/06 15:47:25 djc Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
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 }