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: ChangeLog smart-live-rebuild-0.8.1.ebuild smart-live-rebuild-0.8.ebuild
Date: Tue, 31 May 2011 19:38:47
Message-Id: 20110531193836.AE6A820054@flycatcher.gentoo.org
1 mgorny 11/05/31 19:38:36
2
3 Modified: ChangeLog
4 Added: smart-live-rebuild-0.8.1.ebuild
5 Removed: smart-live-rebuild-0.8.ebuild
6 Log:
7 Version bump. This version fixes environment leakages in bash parser and adds support for SLOT-ted packages (bug #368423).
8
9 (Portage version: 2.2.0_alpha37_p6/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.17 app-portage/smart-live-rebuild/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog?rev=1.17&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog?rev=1.17&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog?r1=1.16&r2=1.17
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog,v
21 retrieving revision 1.16
22 retrieving revision 1.17
23 diff -u -r1.16 -r1.17
24 --- ChangeLog 17 May 2011 19:57:36 -0000 1.16
25 +++ ChangeLog 31 May 2011 19:38:36 -0000 1.17
26 @@ -1,6 +1,13 @@
27 # ChangeLog for app-portage/smart-live-rebuild
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog,v 1.16 2011/05/17 19:57:36 mgorny Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog,v 1.17 2011/05/31 19:38:36 mgorny Exp $
31 +
32 +*smart-live-rebuild-0.8.1 (31 May 2011)
33 +
34 + 31 May 2011; Michał Górny <mgorny@g.o>
35 + -smart-live-rebuild-0.8.ebuild, +smart-live-rebuild-0.8.1.ebuild:
36 + Version bump. This version fixes environment leakages in bash parser and adds
37 + support for SLOT-ted packages (bug #368423).
38
39 *smart-live-rebuild-0.8 (17 May 2011)
40
41
42
43
44 1.1 app-portage/smart-live-rebuild/smart-live-rebuild-0.8.1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/smart-live-rebuild-0.8.1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/smart-live-rebuild-0.8.1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: smart-live-rebuild-0.8.1.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-portage/smart-live-rebuild/smart-live-rebuild-0.8.1.ebuild,v 1.1 2011/05/31 19:38:36 mgorny Exp $
54
55 EAPI=3
56 PYTHON_DEPEND='*:2.6'
57 SUPPORT_PYTHON_ABIS=1
58 RESTRICT_PYTHON_ABIS='2.4 2.5'
59 inherit distutils
60
61 DESCRIPTION="Check live packages for updates and emerge them as necessary"
62 HOMEPAGE="https://github.com/mgorny/smart-live-rebuild/"
63 SRC_URI="http://cloud.github.com/downloads/mgorny/${PN}/${P}.tar.bz2"
64
65 LICENSE="|| ( BSD GPL-2 )"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 RDEPEND=">=sys-apps/portage-2.1.8.3"
71
72 PYTHON_MODNAME=SmartLiveRebuild
73
74 src_install() {
75 distutils_src_install
76
77 insinto /etc/portage
78 newins smart-live-rebuild.conf{.example,} || die
79 insinto /usr/share/portage/config/sets
80 newins sets.conf.example ${PN}.conf || die
81 }