Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/setconf: setconf-0.6.2.ebuild ChangeLog
Date: Sat, 29 Mar 2014 09:24:48
Message-Id: 20140329092442.6DC2A20054@flycatcher.gentoo.org
1 ssuominen 14/03/29 09:24:42
2
3 Modified: ChangeLog
4 Added: setconf-0.6.2.ebuild
5 Log:
6 Version bump. Use python 3.x exclusively wrt #462326 by James Rowe
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
9
10 Revision Changes Path
11 1.2 dev-util/setconf/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/setconf/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/setconf/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/setconf/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/setconf/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 16 Mar 2013 18:51:02 -0000 1.1
24 +++ ChangeLog 29 Mar 2014 09:24:42 -0000 1.2
25 @@ -1,9 +1,13 @@
26 # ChangeLog for dev-util/setconf
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/setconf/ChangeLog,v 1.1 2013/03/16 18:51:02 ssuominen Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-util/setconf/ChangeLog,v 1.2 2014/03/29 09:24:42 ssuominen Exp $
31 +
32 +*setconf-0.6.2 (29 Mar 2014)
33 +
34 + 29 Mar 2014; Samuli Suominen <ssuominen@g.o> +setconf-0.6.2.ebuild:
35 + Version bump. Use python 3.x exclusively wrt #462326 by James Rowe
36
37 *setconf-0.5.3 (16 Mar 2013)
38
39 16 Mar 2013; Samuli Suominen <ssuominen@g.o> +setconf-0.5.3.ebuild:
40 Initial commit.
41 -
42
43
44
45 1.1 dev-util/setconf/setconf-0.6.2.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/setconf/setconf-0.6.2.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/setconf/setconf-0.6.2.ebuild?rev=1.1&content-type=text/plain
49
50 Index: setconf-0.6.2.ebuild
51 ===================================================================
52 # Copyright 1999-2014 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-util/setconf/setconf-0.6.2.ebuild,v 1.1 2014/03/29 09:24:42 ssuominen Exp $
55
56 EAPI=5
57
58 DESCRIPTION="A small python based utility that can be used to change configuration files"
59 HOMEPAGE="http://setconf.roboticoverlords.org/"
60 SRC_URI="http://${PN}.roboticoverlords.org/${P}.tar.xz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE=""
66
67 RDEPEND="=dev-lang/python-3*"
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72 unpack ./${PN}.1.gz
73 }
74
75 src_prepare() {
76 sed -i -e 's:/usr/bin/python:/usr/bin/python3:' ${PN}.py || die #462326
77 }
78
79 src_install() {
80 dobin ${PN}.py
81 ln -s ${PN}.py "${ED}"/usr/bin/${PN}
82 doman ${PN}.1
83 }