Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-vcs/gitg: gitg-3.14.0.ebuild ChangeLog
Date: Mon, 01 Dec 2014 12:39:52
Message-Id: 20141201123948.85178B494@oystercatcher.gentoo.org
1 mgorny 14/12/01 12:39:48
2
3 Modified: gitg-3.14.0.ebuild ChangeLog
4 Log:
5 Add a proper REQUIRED_USE for libpeas compatibility, use python_setup() to use the correct implementation.
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
8
9 Revision Changes Path
10 1.3 dev-vcs/gitg/gitg-3.14.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/gitg-3.14.0.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/gitg-3.14.0.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/gitg-3.14.0.ebuild?r1=1.2&r2=1.3
15
16 Index: gitg-3.14.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-vcs/gitg/gitg-3.14.0.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- gitg-3.14.0.ebuild 24 Nov 2014 15:41:03 -0000 1.2
23 +++ gitg-3.14.0.ebuild 1 Dec 2014 12:39:48 -0000 1.3
24 @@ -1,11 +1,11 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/gitg/gitg-3.14.0.ebuild,v 1.2 2014/11/24 15:41:03 tetromino Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/gitg/gitg-3.14.0.ebuild,v 1.3 2014/12/01 12:39:48 mgorny Exp $
29
30 EAPI=5
31
32 VALA_MIN_API_VERSION="0.20"
33 -PYTHON_COMPAT=( python{3_2,3_3,3_4} )
34 +PYTHON_COMPAT=( python{3_3,3_4} )
35
36 inherit autotools gnome2 python-r1 vala
37
38 @@ -17,7 +17,7 @@
39 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
40 IUSE="debug glade +python"
41
42 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
43 +REQUIRED_USE="python? ( ^^ ( $(python_gen_useflags '*') ) )"
44
45 # test if unbundling of libgd is possible
46 # Currently it seems not to be (unstable API/ABI)
47 @@ -52,6 +52,10 @@
48
49 DOCS="AUTHORS ChangeLog NEWS README"
50
51 +pkg_setup() {
52 + use python && [[ ${MERGE_TYPE} != binary ]] && python_setup
53 +}
54 +
55 src_prepare() {
56 sed \
57 -e '/CFLAGS/s:-g::g' \
58
59
60
61 1.32 dev-vcs/gitg/ChangeLog
62
63 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/ChangeLog?rev=1.32&view=markup
64 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/ChangeLog?rev=1.32&content-type=text/plain
65 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/ChangeLog?r1=1.31&r2=1.32
66
67 Index: ChangeLog
68 ===================================================================
69 RCS file: /var/cvsroot/gentoo-x86/dev-vcs/gitg/ChangeLog,v
70 retrieving revision 1.31
71 retrieving revision 1.32
72 diff -u -r1.31 -r1.32
73 --- ChangeLog 24 Nov 2014 15:41:03 -0000 1.31
74 +++ ChangeLog 1 Dec 2014 12:39:48 -0000 1.32
75 @@ -1,6 +1,10 @@
76 # ChangeLog for dev-vcs/gitg
77 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
78 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/gitg/ChangeLog,v 1.31 2014/11/24 15:41:03 tetromino Exp $
79 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/gitg/ChangeLog,v 1.32 2014/12/01 12:39:48 mgorny Exp $
80 +
81 + 01 Dec 2014; Michał Górny <mgorny@g.o> gitg-3.14.0.ebuild:
82 + Add a proper REQUIRED_USE for libpeas compatibility, use python_setup() to use
83 + the correct implementation.
84
85 24 Nov 2014; Alexandre Rostovtsev <tetromino@g.o> gitg-3.14.0.ebuild:
86 Add python-3.4 support.