Gentoo Archives: gentoo-commits

From: "Christian Faulhammer (fauli)" <fauli@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-vcs/bzr-gtk: ChangeLog bzr-gtk-0.99.0.ebuild
Date: Thu, 02 Sep 2010 12:54:57
Message-Id: 20100902125453.3AF2920054@flycatcher.gentoo.org
1 fauli 10/09/02 12:54:53
2
3 Modified: ChangeLog
4 Added: bzr-gtk-0.99.0.ebuild
5 Log:
6 version bump with fix for missing credits.pickle file, taken from Ubuntu package
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.5 dev-vcs/bzr-gtk/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/bzr-gtk/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/bzr-gtk/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/bzr-gtk/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-vcs/bzr-gtk/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 12 Aug 2010 21:23:05 -0000 1.4
23 +++ ChangeLog 2 Sep 2010 12:54:53 -0000 1.5
24 @@ -1,6 +1,13 @@
25 # ChangeLog for dev-vcs/bzr-gtk
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/bzr-gtk/ChangeLog,v 1.4 2010/08/12 21:23:05 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/bzr-gtk/ChangeLog,v 1.5 2010/09/02 12:54:53 fauli Exp $
29 +
30 +*bzr-gtk-0.99.0 (02 Sep 2010)
31 +
32 + 02 Sep 2010; Christian Faulhammer <fauli@g.o>
33 + +bzr-gtk-0.99.0.ebuild, +files/credits.pickle:
34 + version bump with fix for missing credits.pickle file, taken from Ubuntu
35 + package
36
37 12 Aug 2010; Christian Faulhammer <fauli@g.o>
38 bzr-gtk-0.98.0.ebuild:
39
40
41
42 1.1 dev-vcs/bzr-gtk/bzr-gtk-0.99.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/bzr-gtk/bzr-gtk-0.99.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/bzr-gtk/bzr-gtk-0.99.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: bzr-gtk-0.99.0.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/bzr-gtk/bzr-gtk-0.99.0.ebuild,v 1.1 2010/09/02 12:54:53 fauli Exp $
52
53 EAPI="3"
54 PYTHON_DEPEND="2"
55 SUPPORT_PYTHON_ABIS="1"
56 RESTRICT_PYTHON_ABIS="3.*"
57
58 inherit distutils
59
60 MY_P="/${P/_rc/rc}"
61
62 DESCRIPTION="A GTK+ interfaces to most Bazaar operations"
63 HOMEPAGE="http://bazaar-vcs.org/bzr-gtk"
64 SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz"
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE="gconf gnome-keyring gpg +sourceview libnotify nautilus"
70
71 DEPEND=">=dev-vcs/bzr-1.6_rc1
72 >=dev-python/pygtk-2.8
73 nautilus? ( dev-python/nautilus-python )
74 >=dev-python/pycairo-1.0"
75 RDEPEND="${DEPEND}
76 gnome-keyring? ( dev-python/gnome-keyring-python )
77 gpg? ( app-crypt/seahorse )
78 sourceview? (
79 dev-python/pygtksourceview
80 gconf? ( dev-python/gconf-python )
81 )"
82
83 S="${WORKDIR}/${MY_P}"
84
85 #TODO: src_test
86
87 src_prepare() {
88 # Remove after release of > 0.99.0
89 cp "${FILESDIR}"/credits.pickle "${S}"/credits.pickle
90 }
91
92 src_install() {
93 distutils_src_install
94
95 if use libnotify; then
96 insinto /etc/xdg/autostart
97 doins bzr-notify.desktop
98 fi
99 }