Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/python-exec: python-exec-0.1.1.ebuild ChangeLog
Date: Wed, 31 Oct 2012 23:40:23
Message-Id: 20121031234006.056D021600@flycatcher.gentoo.org
1 mgorny 12/10/31 23:40:05
2
3 Modified: ChangeLog
4 Added: python-exec-0.1.1.ebuild
5 Log:
6 Version bump. The new version adds Prefix support and respect preferred Python2 & 3 choices as well.
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 42B9401D)
9
10 Revision Changes Path
11 1.10 dev-python/python-exec/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-exec/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-exec/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-exec/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-exec/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 28 Oct 2012 16:35:51 -0000 1.9
24 +++ ChangeLog 31 Oct 2012 23:40:05 -0000 1.10
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/python-exec
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-exec/ChangeLog,v 1.9 2012/10/28 16:35:51 grobian Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-exec/ChangeLog,v 1.10 2012/10/31 23:40:05 mgorny Exp $
30 +
31 +*python-exec-0.1.1 (31 Oct 2012)
32 +
33 + 31 Oct 2012; Michał Górny <mgorny@g.o> +python-exec-0.1.1.ebuild:
34 + Version bump. The new version adds Prefix support and respect preferred
35 + Python2 & 3 choices as well.
36
37 28 Oct 2012; Fabian Groffen <grobian@g.o> python-exec-0.1.ebuild:
38 Add Prefix keywords, bug #438388
39
40
41
42 1.1 dev-python/python-exec/python-exec-0.1.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-exec/python-exec-0.1.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-exec/python-exec-0.1.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: python-exec-0.1.1.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-exec/python-exec-0.1.1.ebuild,v 1.1 2012/10/31 23:40:05 mgorny Exp $
52
53 EAPI=4
54
55 inherit autotools-utils python-r1
56
57 DESCRIPTION="Python script wrapper"
58 HOMEPAGE="https://bitbucket.org/mgorny/python-exec/"
59 SRC_URI="mirror://bitbucket/mgorny/${PN}/downloads/${P}.tar.bz2"
60
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
64 IUSE=""
65
66 append_impl() {
67 pyimpls+="${EPYTHON} "
68 }
69
70 src_configure() {
71 local pyimpls
72 python_foreach_impl append_impl
73
74 local myeconfargs=(
75 --with-eprefix="${EPREFIX}"
76 --with-python-impls="${pyimpls}"
77 )
78
79 autotools-utils_src_configure
80 }