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.3.4.1.ebuild ChangeLog
Date: Wed, 03 Dec 2014 17:52:21
Message-Id: 20141203175215.EDD79B7A5@oystercatcher.gentoo.org
1 mgorny 14/12/03 17:52:15
2
3 Modified: ChangeLog
4 Added: smart-live-rebuild-1.3.4.1.ebuild
5 Log:
6 Version bump with fix for syntax error, bug #531530.
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
9
10 Revision Changes Path
11 1.67 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.67&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog?rev=1.67&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog?r1=1.66&r2=1.67
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog,v
20 retrieving revision 1.66
21 retrieving revision 1.67
22 diff -u -r1.66 -r1.67
23 --- ChangeLog 2 Dec 2014 20:46:39 -0000 1.66
24 +++ ChangeLog 3 Dec 2014 17:52:15 -0000 1.67
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-portage/smart-live-rebuild
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog,v 1.66 2014/12/02 20:46:39 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-portage/smart-live-rebuild/ChangeLog,v 1.67 2014/12/03 17:52:15 mgorny Exp $
30 +
31 +*smart-live-rebuild-1.3.4.1 (03 Dec 2014)
32 +
33 + 03 Dec 2014; Michał Górny <mgorny@g.o>
34 + +smart-live-rebuild-1.3.4.1.ebuild:
35 + Version bump with fix for syntax error, bug #531530.
36
37 02 Dec 2014; Markus Meier <maekke@g.o>
38 smart-live-rebuild-1.3.4.ebuild:
39
40
41
42 1.1 app-portage/smart-live-rebuild/smart-live-rebuild-1.3.4.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.4.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.4.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: smart-live-rebuild-1.3.4.1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.4.1.ebuild,v 1.1 2014/12/03 17:52:15 mgorny Exp $
52
53 EAPI=5
54 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} )
55
56 inherit distutils-r1
57
58 DESCRIPTION="Check live packages for updates and emerge them as necessary"
59 HOMEPAGE="https://bitbucket.org/mgorny/smart-live-rebuild/"
60 SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2"
61
62 LICENSE="BSD-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~arm ~mips ~x86 ~x86-fbsd"
65 IUSE=""
66
67 RDEPEND=">=app-portage/gentoopm-0.2.1[${PYTHON_USEDEP}]"
68
69 python_test() {
70 esetup.py test
71 }
72
73 python_install_all() {
74 distutils-r1_python_install_all
75
76 insinto /etc/portage
77 newins smart-live-rebuild.conf{.example,}
78 insinto /usr/share/portage/config/sets
79 newins sets.conf.example ${PN}.conf
80 }