Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/devhelp: devhelp-3.6.1-r1.ebuild ChangeLog
Date: Sun, 01 Sep 2013 05:29:13
Message-Id: 20130901052909.1E5F42004B@flycatcher.gentoo.org
1 tetromino 13/09/01 05:29:09
2
3 Modified: devhelp-3.6.1-r1.ebuild ChangeLog
4 Log:
5 Remove gedit plugin support from devhelp-3.6; it requires python2-compatible gedit-3.6.x, which was removed from the tree (bug #483084, thanks to Patrick Lauer).
6
7 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key CF0ADD61)
8
9 Revision Changes Path
10 1.10 dev-util/devhelp/devhelp-3.6.1-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/devhelp/devhelp-3.6.1-r1.ebuild?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/devhelp/devhelp-3.6.1-r1.ebuild?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/devhelp/devhelp-3.6.1-r1.ebuild?r1=1.9&r2=1.10
15
16 Index: devhelp-3.6.1-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/devhelp/devhelp-3.6.1-r1.ebuild,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- devhelp-3.6.1-r1.ebuild 27 Aug 2013 22:25:37 -0000 1.9
23 +++ devhelp-3.6.1-r1.ebuild 1 Sep 2013 05:29:08 -0000 1.10
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/devhelp/devhelp-3.6.1-r1.ebuild,v 1.9 2013/08/27 22:25:37 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/devhelp/devhelp-3.6.1-r1.ebuild,v 1.10 2013/09/01 05:29:08 tetromino Exp $
29
30 EAPI="5"
31 GCONF_DEBUG="no"
32 @@ -15,7 +15,7 @@
33 LICENSE="GPL-2+"
34 SLOT="0/3-1" # subslot = 3-(libdevhelp-3 soname version)
35 KEYWORDS="alpha amd64 ~arm ia64 ppc ~ppc64 sparc x86 ~x86-fbsd"
36 -IUSE="gedit"
37 +IUSE=""
38
39 # FIXME: automagic python dependency
40 COMMON_DEPEND=">=gnome-base/gconf-2.6:2
41 @@ -23,11 +23,6 @@
42 >=x11-libs/gtk+-3.4:3
43 >=net-libs/webkit-gtk-1.6:3"
44 RDEPEND="${COMMON_DEPEND}
45 - gedit? (
46 - ${PYTHON_DEPS}
47 - app-editors/gedit[introspection,python,${PYTHON_USEDEP}]
48 - dev-python/pygobject:3[${PYTHON_USEDEP}]
49 - x11-libs/gtk+[introspection] )
50 gnome-base/gsettings-desktop-schemas"
51 DEPEND="${COMMON_DEPEND}
52 ${PYTHON_DEPS}
53 @@ -45,7 +40,8 @@
54 G2CONF="${G2CONF} --with-compile-warnings=no"
55 fi
56
57 - use gedit || sed -e '/SUBDIRS/ s/gedit-plugin//' -i misc/Makefile.{am,in} || die
58 + # always disable gedit support, it requires <gedit-3.8 (bug #483084)
59 + sed -e '/SUBDIRS/ s/gedit-plugin//' -i misc/Makefile.{am,in} || die
60
61 # https://bugzilla.gnome.org/show_bug.cgi?id=688919
62 epatch "${FILESDIR}/${PN}-3.6.1-libm.patch"
63
64
65
66 1.158 dev-util/devhelp/ChangeLog
67
68 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/devhelp/ChangeLog?rev=1.158&view=markup
69 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/devhelp/ChangeLog?rev=1.158&content-type=text/plain
70 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/devhelp/ChangeLog?r1=1.157&r2=1.158
71
72 Index: ChangeLog
73 ===================================================================
74 RCS file: /var/cvsroot/gentoo-x86/dev-util/devhelp/ChangeLog,v
75 retrieving revision 1.157
76 retrieving revision 1.158
77 diff -u -r1.157 -r1.158
78 --- ChangeLog 31 Aug 2013 18:48:40 -0000 1.157
79 +++ ChangeLog 1 Sep 2013 05:29:08 -0000 1.158
80 @@ -1,6 +1,12 @@
81 # ChangeLog for dev-util/devhelp
82 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
83 -# $Header: /var/cvsroot/gentoo-x86/dev-util/devhelp/ChangeLog,v 1.157 2013/08/31 18:48:40 pacho Exp $
84 +# $Header: /var/cvsroot/gentoo-x86/dev-util/devhelp/ChangeLog,v 1.158 2013/09/01 05:29:08 tetromino Exp $
85 +
86 + 01 Sep 2013; Alexandre Rostovtsev <tetromino@g.o>
87 + devhelp-3.6.1-r1.ebuild:
88 + Remove gedit plugin support from devhelp-3.6; it requires python2-compatible
89 + gedit-3.6.x, which was removed from the tree (bug #483084, thanks to Patrick
90 + Lauer).
91
92 31 Aug 2013; Pacho Ramos <pacho@g.o> -devhelp-3.8.1.ebuild,
93 devhelp-3.8.2.ebuild: