Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/ghh: ghh-9999.ebuild ChangeLog
Date: Sat, 26 Nov 2011 17:23:36
Message-Id: 20111126172322.514752004B@flycatcher.gentoo.org
1 floppym 11/11/26 17:23:22
2
3 Modified: ghh-9999.ebuild ChangeLog
4 Log:
5 Python-related improvements by Ian Delaney. Bug 324399.
6
7 (Portage version: 2.2.0_alpha78/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.7 dev-util/ghh/ghh-9999.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ghh/ghh-9999.ebuild?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ghh/ghh-9999.ebuild?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ghh/ghh-9999.ebuild?r1=1.6&r2=1.7
15
16 Index: ghh-9999.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/ghh/ghh-9999.ebuild,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ghh-9999.ebuild 20 Sep 2011 22:37:13 -0000 1.6
23 +++ ghh-9999.ebuild 26 Nov 2011 17:23:22 -0000 1.7
24 @@ -1,9 +1,10 @@
25 # Copyright 1999-2011 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ghh/ghh-9999.ebuild,v 1.6 2011/09/20 22:37:13 mgorny Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/ghh/ghh-9999.ebuild,v 1.7 2011/11/26 17:23:22 floppym Exp $
29
30 EAPI=3
31 -inherit autotools git-2
32 +PYTHON_DEPEND="2:2.6"
33 +inherit autotools git-2 python
34
35 DESCRIPTION="a tool to track the history and make backups of your home directory"
36 HOMEPAGE="http://jean-francois.richard.name/ghh/"
37 @@ -15,6 +16,7 @@
38 SLOT="0"
39 KEYWORDS=""
40 IUSE=""
41 +DOCS=( AUTHORS ChangeLog MAINTAINERS NEWS README TODO )
42
43 # probably needs more/less crap listed here ...
44 RDEPEND="x11-libs/gtk+:2
45 @@ -22,16 +24,22 @@
46 gnome-base/libgnome
47 app-text/gnome-doc-utils
48 >=app-text/asciidoc-8
49 - dev-vcs/git
50 - dev-lang/python"
51 + dev-python/pygtk:2
52 + dev-vcs/git"
53 DEPEND="${RDEPEND}
54 dev-util/pkgconfig"
55
56 +pkg_setup() {
57 + python_set_active_version 2
58 + python_pkg_setup
59 +}
60 +
61 src_prepare() {
62 NOCONFIGURE=yes git_src_prepare
63 }
64
65 src_install() {
66 emake install DESTDIR="${D}" || die
67 - dodoc AUTHORS ChangeLog MAINTAINERS NEWS README TODO
68 + dodoc ${DOCS[@]}
69 + python_convert_shebangs -r 2 "${ED}"
70 }
71
72
73
74 1.6 dev-util/ghh/ChangeLog
75
76 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ghh/ChangeLog?rev=1.6&view=markup
77 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ghh/ChangeLog?rev=1.6&content-type=text/plain
78 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ghh/ChangeLog?r1=1.5&r2=1.6
79
80 Index: ChangeLog
81 ===================================================================
82 RCS file: /var/cvsroot/gentoo-x86/dev-util/ghh/ChangeLog,v
83 retrieving revision 1.5
84 retrieving revision 1.6
85 diff -u -r1.5 -r1.6
86 --- ChangeLog 20 Sep 2011 22:37:13 -0000 1.5
87 +++ ChangeLog 26 Nov 2011 17:23:22 -0000 1.6
88 @@ -1,6 +1,9 @@
89 # ChangeLog for dev-util/ghh
90 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
91 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ghh/ChangeLog,v 1.5 2011/09/20 22:37:13 mgorny Exp $
92 +# $Header: /var/cvsroot/gentoo-x86/dev-util/ghh/ChangeLog,v 1.6 2011/11/26 17:23:22 floppym Exp $
93 +
94 + 26 Nov 2011; Mike Gilbert <floppym@g.o> ghh-9999.ebuild:
95 + Python-related improvements by Ian Delaney. Bug 324399.
96
97 20 Sep 2011; Michał Górny <mgorny@g.o> ghh-9999.ebuild:
98 Migrate to git-2, update EGIT_REPO_URI.