Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/bottle: bottle-0.11.6-r1.ebuild ChangeLog
Date: Sun, 01 Sep 2013 15:48:38
Message-Id: 20130901154832.B9B8020036@flycatcher.gentoo.org
1 dev-zero 13/09/01 15:48:32
2
3 Modified: ChangeLog
4 Added: bottle-0.11.6-r1.ebuild
5 Log:
6 Do not install /usr/bin/bottle.py anymore (fixes bug #474874).
7
8 (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0x1E0CA85F!)
9
10 Revision Changes Path
11 1.9 dev-python/bottle/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 7 Aug 2013 11:21:49 -0000 1.8
24 +++ ChangeLog 1 Sep 2013 15:48:32 -0000 1.9
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/bottle
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v 1.8 2013/08/07 11:21:49 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/bottle/ChangeLog,v 1.9 2013/09/01 15:48:32 dev-zero Exp $
30 +
31 +*bottle-0.11.6-r1 (01 Sep 2013)
32 +
33 + 01 Sep 2013; Tiziano Müller <dev-zero@g.o> +bottle-0.11.6-r1.ebuild:
34 + Do not install /usr/bin/bottle.py anymore (fixes bug #474874).
35
36 07 Aug 2013; Michał Górny <mgorny@g.o> bottle-0.11.6.ebuild:
37 Drop removed Python implementations from PYTHON_COMPAT.
38
39
40
41 1.1 dev-python/bottle/bottle-0.11.6-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/bottle-0.11.6-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bottle/bottle-0.11.6-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bottle-0.11.6-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.6-r1.ebuild,v 1.1 2013/09/01 15:48:32 dev-zero Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy{1_9,2_0})
55 inherit distutils-r1 python-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="~amd64 ~arm ~ppc ~ppc64 ~x86"
64 IUSE=""
65
66 DEPEND=""
67 RDEPEND=""
68
69 python_prepare_all() {
70 sed -i -e '/scripts/d' setup.py || die
71 }
72
73 pkg_postinst() {
74 elog "Due to problems with bottle.py being in /usr/bin (see bug #474874)"
75 elog "we do as most other distros and do not install the script anymore."
76 elog "If you do want/have to call it directly rather than through your app,"
77 elog "please use the following instead:"
78 elog ' `python -m bottle`'
79 }