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.2.ebuild smart-live-rebuild-1.1.4.ebuild
Date: Wed, 31 Aug 2011 08:22:34
Message-Id: 20110831082224.275782004C@flycatcher.gentoo.org
1 mgorny 11/08/31 08:22:24
2
3 Modified: ChangeLog
4 Added: smart-live-rebuild-1.2.ebuild
5 Removed: smart-live-rebuild-1.1.4.ebuild
6 Log:
7 Version bump. The new version improves support for multiple packages sharing the same repo (bugs #381075, #381137).
8
9 (Portage version: 2.2.0_alpha51_p63/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.29 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.29&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog?rev=1.29&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog?r1=1.28&r2=1.29
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog,v
21 retrieving revision 1.28
22 retrieving revision 1.29
23 diff -u -r1.28 -r1.29
24 --- ChangeLog 14 Aug 2011 20:47:56 -0000 1.28
25 +++ ChangeLog 31 Aug 2011 08:22:23 -0000 1.29
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.28 2011/08/14 20:47:56 mgorny Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog,v 1.29 2011/08/31 08:22:23 mgorny Exp $
31 +
32 +*smart-live-rebuild-1.2 (31 Aug 2011)
33 +
34 + 31 Aug 2011; Michał Górny <mgorny@g.o>
35 + -smart-live-rebuild-1.1.4.ebuild, +smart-live-rebuild-1.2.ebuild:
36 + Version bump. The new version improves support for multiple packages sharing
37 + the same repo (bugs #381075, #381137).
38
39 *smart-live-rebuild-1.1.4 (14 Aug 2011)
40
41
42
43
44 1.1 app-portage/smart-live-rebuild/smart-live-rebuild-1.2.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/smart-live-rebuild-1.2.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.2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: smart-live-rebuild-1.2.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.2.ebuild,v 1.1 2011/08/31 08:22:24 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
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=">=app-portage/gentoopm-0.2.1"
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 }