Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/postr: postr-0.13-r1.ebuild ChangeLog
Date: Sun, 22 Jun 2014 19:08:23
Message-Id: 20140622190819.433B82004E@flycatcher.gentoo.org
1 pacho 14/06/22 19:08:19
2
3 Modified: ChangeLog
4 Added: postr-0.13-r1.ebuild
5 Log:
6 Drop old extension uncompatible with nautilus-3, port to new python eclasses
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.9 media-gfx/postr/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/postr/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/postr/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/postr/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/postr/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 8 Dec 2013 19:08:18 -0000 1.8
24 +++ ChangeLog 22 Jun 2014 19:08:19 -0000 1.9
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-gfx/postr
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/postr/ChangeLog,v 1.8 2013/12/08 19:08:18 pacho Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/postr/ChangeLog,v 1.9 2014/06/22 19:08:19 pacho Exp $
31 +
32 +*postr-0.13-r1 (22 Jun 2014)
33 +
34 + 22 Jun 2014; Pacho Ramos <pacho@g.o> +postr-0.13-r1.ebuild:
35 + Drop old extension uncompatible with nautilus-3, port to new python eclasses
36
37 08 Dec 2013; Pacho Ramos <pacho@g.o> postr-0.13.ebuild:
38 x86 stable, bug #478252
39
40
41
42 1.1 media-gfx/postr/postr-0.13-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/postr/postr-0.13-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/postr/postr-0.13-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: postr-0.13-r1.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/media-gfx/postr/postr-0.13-r1.ebuild,v 1.1 2014/06/22 19:08:19 pacho Exp $
52
53 EAPI="5"
54 GCONF_DEBUG="no"
55 PYTHON_COMPAT=( python2_7 )
56 PYTHON_REQ_USE="xml"
57
58 inherit eutils gnome2 python-single-r1
59
60 DESCRIPTION="Flickr uploader for GNOME"
61 HOMEPAGE="https://wiki.gnome.org/Apps/Postr"
62
63 LICENSE="GPL-2+ CC-BY-SA-3.0"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66
67 IUSE=""
68 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
69
70 COMMON_DEPEND="
71 ${PYTHON_DEPS}
72 dev-python/pygtk:2[${PYTHON_USEDEP}]
73 "
74
75 RDEPEND="${COMMON_DEPEND}
76 dev-python/bsddb3[${PYTHON_USEDEP}]
77 dev-python/dbus-python[${PYTHON_USEDEP}]
78 dev-python/gconf-python[${PYTHON_USEDEP}]
79 dev-python/gtkspell-python[${PYTHON_USEDEP}]
80 dev-python/libgnome-python[${PYTHON_USEDEP}]
81 dev-python/pygobject:2[${PYTHON_USEDEP}]
82 dev-python/twisted-core[${PYTHON_USEDEP}]
83 dev-python/twisted-web[${PYTHON_USEDEP}]
84 "
85 DEPEND="${COMMON_DEPEND}
86 app-text/gnome-doc-utils
87 dev-util/intltool
88 sys-devel/gettext
89 virtual/pkgconfig"
90
91 src_prepare() {
92 # In next release
93 epatch "${FILESDIR}/${P}-exception-after-quit.patch"
94
95 # Don't check for nautilus-python if we aren't installing the nautilus-2 extension
96 sed -e 's:nautilus-python >= 0.6.1::' -i configure || die
97
98 gnome2_src_prepare
99 }
100
101 src_configure() {
102 gnome2_src_configure \
103 --with-nautilus-extension-dir=${EPREFIX}/usr/share/nautilus-python/extensions
104 }
105
106 src_install() {
107 gnome2_src_install
108 python_fix_shebang "${ED}"
109
110 # In next release, https://bugzilla.gnome.org/show_bug.cgi?id=685454
111 mv "${ED}usr/share/postr/postr.glade" "${ED}$(python_get_sitedir)/postr/" || die
112
113 rm -r "${ED}usr/share/nautilus-python" || die
114 }