Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/gedit-plugins: gedit-plugins-3.10.1.ebuild ChangeLog
Date: Tue, 24 Dec 2013 15:30:12
Message-Id: 20131224153008.DCB992004C@flycatcher.gentoo.org
1 pacho 13/12/24 15:30:08
2
3 Modified: ChangeLog
4 Added: gedit-plugins-3.10.1.ebuild
5 Log:
6 Version bump for Gnome 3.10
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.40 app-editors/gedit-plugins/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/gedit-plugins/ChangeLog?rev=1.40&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/gedit-plugins/ChangeLog?rev=1.40&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/gedit-plugins/ChangeLog?r1=1.39&r2=1.40
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-editors/gedit-plugins/ChangeLog,v
20 retrieving revision 1.39
21 retrieving revision 1.40
22 diff -u -r1.39 -r1.40
23 --- ChangeLog 8 Dec 2013 17:40:21 -0000 1.39
24 +++ ChangeLog 24 Dec 2013 15:30:08 -0000 1.40
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-editors/gedit-plugins
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit-plugins/ChangeLog,v 1.39 2013/12/08 17:40:21 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit-plugins/ChangeLog,v 1.40 2013/12/24 15:30:08 pacho Exp $
30 +
31 +*gedit-plugins-3.10.1 (24 Dec 2013)
32 +
33 + 24 Dec 2013; Pacho Ramos <pacho@g.o> +gedit-plugins-3.10.1.ebuild:
34 + Version bump for Gnome 3.10
35
36 08 Dec 2013; Pacho Ramos <pacho@g.o> gedit-plugins-3.8.3-r1.ebuild:
37 x86 stable, bug #478252
38
39
40
41 1.1 app-editors/gedit-plugins/gedit-plugins-3.10.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/gedit-plugins/gedit-plugins-3.10.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/gedit-plugins/gedit-plugins-3.10.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gedit-plugins-3.10.1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-editors/gedit-plugins/gedit-plugins-3.10.1.ebuild,v 1.1 2013/12/24 15:30:08 pacho Exp $
51
52 EAPI="5"
53 GCONF_DEBUG="no"
54 GNOME2_LA_PUNT="yes" # plugins are dlopened
55 PYTHON_COMPAT=( python3_{2,3} )
56 PYTHON_REQ_USE="xml"
57
58 inherit eutils gnome2 multilib python-r1
59
60 DESCRIPTION="Official plugins for gedit"
61 HOMEPAGE="http://live.gnome.org/GeditPlugins"
62
63 LICENSE="GPL-2+"
64 KEYWORDS="~amd64 ~x86"
65 SLOT="0"
66
67 IUSE_plugins="charmap git terminal"
68 IUSE="+python ${IUSE_plugins}"
69 REQUIRED_USE="
70 charmap? ( python )
71 git? ( python )
72 terminal? ( python )
73 python? ( ${REQUIRED_PYTHON_USE} )
74 "
75
76 RDEPEND="
77 >=app-editors/gedit-3.9[python?]
78 >=dev-libs/glib-2.32:2
79 >=dev-libs/libpeas-1.7.0[gtk,python?]
80 >=x11-libs/gtk+-3.9:3
81 >=x11-libs/gtksourceview-3.9.2:3.0
82 python? (
83 ${PYTHON_DEPS}
84 >=app-editors/gedit-3[introspection,${PYTHON_USEDEP}]
85 dev-libs/libpeas[${PYTHON_USEDEP}]
86 dev-python/dbus-python[${PYTHON_USEDEP}]
87 dev-python/pycairo
88 dev-python/pygobject:3[cairo,${PYTHON_USEDEP}]
89 >=x11-libs/gtk+-3.9:3[introspection]
90 >=x11-libs/gtksourceview-3.9.2:3.0[introspection]
91 x11-libs/pango[introspection]
92 x11-libs/gdk-pixbuf:2[introspection]
93 )
94 charmap? ( >=gnome-extra/gucharmap-3:2.90[introspection] )
95 git? ( >=dev-libs/libgit2-glib-0.0.6 )
96 terminal? ( x11-libs/vte:2.90[introspection] )
97 "
98 DEPEND="${RDEPEND}
99 >=dev-util/intltool-0.40.0
100 sys-devel/gettext
101 virtual/pkgconfig
102 "
103
104 src_configure() {
105 # DEFAULT_PLUGINS from configure.ac
106 local myplugins="bookmarks,drawspaces,wordcompletion"
107
108 # python plugins with no extra dependencies beyond what USE=python brings
109 use python && myplugins="${myplugins},bracketcompletion,codecomment,colorpicker,colorschemer,commander,dashboard,joinlines,multiedit,textsize,smartspaces,synctex"
110
111 # python plugins with extra dependencies
112 for plugin in ${IUSE_plugins/+}; do
113 use ${plugin} && myplugins="${myplugins},${plugin}"
114 done
115
116 gnome2_src_configure \
117 --with-plugins=${myplugins} \
118 $(use_enable python)
119 }