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-1.0.1.ebuild smart-live-rebuild-1.0.ebuild
Date: Mon, 27 Jun 2011 10:03:51
Message-Id: 20110627100339.A7E4520054@flycatcher.gentoo.org
1 mgorny 11/06/27 10:03:39
2
3 Modified: ChangeLog
4 Added: smart-live-rebuild-1.0.1.ebuild
5 Removed: smart-live-rebuild-1.0.ebuild
6 Log:
7 Version bump. The 1.0.1 version fixes bug #373113 (filters breakage by portage command-line).
8
9 (Portage version: 2.2.0_alpha41_p25/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.20 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.20&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog?rev=1.20&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog?r1=1.19&r2=1.20
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog,v
21 retrieving revision 1.19
22 retrieving revision 1.20
23 diff -u -r1.19 -r1.20
24 --- ChangeLog 26 Jun 2011 22:04:56 -0000 1.19
25 +++ ChangeLog 27 Jun 2011 10:03:39 -0000 1.20
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.19 2011/06/26 22:04:56 mgorny Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog,v 1.20 2011/06/27 10:03:39 mgorny Exp $
31 +
32 +*smart-live-rebuild-1.0.1 (27 Jun 2011)
33 +
34 + 27 Jun 2011; Michał Górny <mgorny@g.o>
35 + -smart-live-rebuild-1.0.ebuild, +smart-live-rebuild-1.0.1.ebuild:
36 + Version bump. The 1.0.1 version fixes bug #373113 (filters breakage by
37 + portage command-line).
38
39 26 Jun 2011; Michał Górny <mgorny@g.o>
40 +smart-live-rebuild-0.8.1.ebuild:
41
42
43
44 1.1 app-portage/smart-live-rebuild/smart-live-rebuild-1.0.1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/smart-live-rebuild-1.0.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-1.0.1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: smart-live-rebuild-1.0.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-1.0.1.ebuild,v 1.1 2011/06/27 10:03:39 mgorny Exp $
54
55 EAPI=3
56
57 PYTHON_DEPEND='*:2.6'
58 SUPPORT_PYTHON_ABIS=1
59 RESTRICT_PYTHON_ABIS='2.4 2.5'
60 #DISTUTILS_SRC_TEST=setup.py # tests fail with py3k right now
61
62 inherit base distutils
63
64 DESCRIPTION="Check live packages for updates and emerge them as necessary"
65 HOMEPAGE="https://github.com/mgorny/smart-live-rebuild/"
66 SRC_URI="http://cloud.github.com/downloads/mgorny/${PN}/${P}.tar.bz2"
67
68 LICENSE="BSD-2"
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86"
71 IUSE=""
72
73 RDEPEND=">=sys-apps/portage-2.1.8.3"
74
75 PYTHON_MODNAME=smartliverebuild
76
77 src_prepare() {
78 base_src_prepare
79 distutils_src_prepare
80 }
81
82 src_install() {
83 distutils_src_install
84
85 insinto /etc/portage
86 newins smart-live-rebuild.conf{.example,} || die
87 insinto /usr/share/portage/config/sets
88 newins sets.conf.example ${PN}.conf || die
89 }