Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/gedit/
Date: Tue, 28 Jan 2020 09:39:08
Message-Id: 1580204058.def502374d71c25d007e8e1c5097493dedf21b1f.leio@gentoo
1 commit: def502374d71c25d007e8e1c5097493dedf21b1f
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 28 09:09:23 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 28 09:34:18 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=def50237
7
8 app-editors/gedit: remove old
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 app-editors/gedit/gedit-3.32.2.ebuild | 94 -----------------------------------
14 1 file changed, 94 deletions(-)
15
16 diff --git a/app-editors/gedit/gedit-3.32.2.ebuild b/app-editors/gedit/gedit-3.32.2.ebuild
17 deleted file mode 100644
18 index f312441381b..00000000000
19 --- a/app-editors/gedit/gedit-3.32.2.ebuild
20 +++ /dev/null
21 @@ -1,94 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="6"
26 -GNOME2_LA_PUNT="yes" # plugins are dlopened
27 -PYTHON_COMPAT=( python3_{6,7,8} )
28 -VALA_MIN_API_VERSION="0.26"
29 -VALA_USE_DEPEND="vapigen"
30 -
31 -inherit eutils gnome.org gnome2-utils meson multilib python-single-r1 vala virtualx xdg
32 -
33 -DESCRIPTION="A text editor for the GNOME desktop"
34 -HOMEPAGE="https://wiki.gnome.org/Apps/Gedit"
35 -
36 -LICENSE="GPL-2+ CC-BY-SA-3.0"
37 -SLOT="0"
38 -
39 -IUSE="+introspection +python gtk-doc spell vala"
40 -REQUIRED_USE="python? ( introspection ${PYTHON_REQUIRED_USE} ) spell? ( python )"
41 -
42 -KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux"
43 -
44 -# X libs are not needed for OSX (aqua)
45 -COMMON_DEPEND="
46 - >=dev-libs/libxml2-2.5.0:2
47 - >=dev-libs/glib-2.44:2[dbus]
48 - >=x11-libs/gtk+-3.22.0:3[introspection?]
49 - >=x11-libs/gtksourceview-4.0.2:4[introspection?]
50 - >=dev-libs/libpeas-1.14.1[gtk]
51 - >=net-libs/libsoup-2.60:2.4
52 -
53 - gnome-base/gsettings-desktop-schemas
54 - gnome-base/gvfs
55 -
56 - x11-libs/libX11
57 -
58 - introspection? ( >=dev-libs/gobject-introspection-0.9.3:= )
59 - python? (
60 - ${PYTHON_DEPS}
61 - dev-python/pycairo[${PYTHON_USEDEP}]
62 - >=dev-python/pygobject-3:3[cairo,${PYTHON_USEDEP}]
63 - dev-libs/libpeas[python,${PYTHON_USEDEP}] )
64 - spell? ( >=app-text/gspell-0.2.5:0= )
65 -"
66 -RDEPEND="${COMMON_DEPEND}
67 - x11-themes/adwaita-icon-theme
68 -"
69 -DEPEND="${COMMON_DEPEND}
70 - ${vala_depend}
71 - app-text/docbook-xml-dtd:4.1.2
72 - dev-util/glib-utils
73 - gtk-doc? ( >=dev-util/gtk-doc-1 )
74 - dev-util/itstool
75 - >=sys-devel/gettext-0.18
76 - virtual/pkgconfig
77 -"
78 -PATCHES=( "${FILESDIR}/${PV}-make-spell-optional.patch" )
79 -
80 -pkg_setup() {
81 - use python && python-single-r1_pkg_setup
82 -}
83 -
84 -src_prepare() {
85 - vala_src_prepare
86 - xdg_src_prepare
87 -}
88 -
89 -src_configure() {
90 - local emesonargs=(
91 - $(meson_use gtk-doc documentation)
92 - $(meson_use introspection)
93 - $(meson_use python plugins)
94 - $(meson_use spell)
95 - $(meson_use vala vapi)
96 - -Denable-gvfs-metadata=yes
97 - )
98 - meson_src_configure
99 -}
100 -
101 -src_test() { :; }
102 -
103 -src_install() {
104 - meson_src_install
105 -}
106 -
107 -pkg_postinst() {
108 - xdg_pkg_postinst
109 - gnome2_schemas_update
110 -}
111 -
112 -pkg_postrm() {
113 - xdg_pkg_postrm
114 - gnome2_schemas_update
115 -}