Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-portage/smart-live-rebuild: smart-live-rebuild-1.2.4.ebuild ChangeLog
Date: Wed, 31 Oct 2012 18:02:19
Message-Id: 20121031180202.36BA221600@flycatcher.gentoo.org
1 mgorny 12/10/31 18:02:01
2
3 Modified: ChangeLog
4 Added: smart-live-rebuild-1.2.4.ebuild
5 Log:
6 Version bump. The new version adds a --quiet option, disables creating binary packages with --pretend and fixes an attempt to kill dead child process.
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.41 app-portage/smart-live-rebuild/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog?rev=1.41&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog?rev=1.41&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog?r1=1.40&r2=1.41
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog,v
20 retrieving revision 1.40
21 retrieving revision 1.41
22 diff -u -r1.40 -r1.41
23 --- ChangeLog 15 Oct 2012 08:09:59 -0000 1.40
24 +++ ChangeLog 31 Oct 2012 18:02:01 -0000 1.41
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-portage/smart-live-rebuild
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog,v 1.40 2012/10/15 08:09:59 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog,v 1.41 2012/10/31 18:02:01 mgorny Exp $
30 +
31 +*smart-live-rebuild-1.2.4 (31 Oct 2012)
32 +
33 + 31 Oct 2012; Michał Górny <mgorny@g.o>
34 + +smart-live-rebuild-1.2.4.ebuild:
35 + Version bump. The new version adds a --quiet option, disables creating binary
36 + packages with --pretend and fixes an attempt to kill dead child process.
37
38 *smart-live-rebuild-1.2.3-r2 (15 Oct 2012)
39
40
41
42
43 1.1 app-portage/smart-live-rebuild/smart-live-rebuild-1.2.4.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/smart-live-rebuild-1.2.4.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/smart-live-rebuild-1.2.4.ebuild?rev=1.1&content-type=text/plain
47
48 Index: smart-live-rebuild-1.2.4.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-portage/smart-live-rebuild/smart-live-rebuild-1.2.4.ebuild,v 1.1 2012/10/31 18:02:01 mgorny Exp $
53
54 EAPI=4
55 PYTHON_COMPAT=(python2_6 python2_7 python3_1 python3_2)
56
57 inherit distutils-r1
58
59 DESCRIPTION="Check live packages for updates and emerge them as necessary"
60 HOMEPAGE="https://bitbucket.org/mgorny/smart-live-rebuild/"
61 SRC_URI="mirror://bitbucket/mgorny/${PN}/downloads/${P}.tar.bz2"
62
63 LICENSE="BSD-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~mips ~x86 ~x86-fbsd"
66 IUSE=""
67
68 RDEPEND=">=app-portage/gentoopm-0.2.1[${PYTHON_USEDEP}]"
69
70 python_test() {
71 "${PYTHON}" setup.py test || die
72 }
73
74 python_install_all() {
75 distutils-r1_python_install_all
76
77 insinto /etc/portage
78 newins smart-live-rebuild.conf{.example,}
79 insinto /usr/share/portage/config/sets
80 newins sets.conf.example ${PN}.conf
81 }