Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/gedit/
Date: Sun, 03 Apr 2022 00:07:13
Message-Id: 1648944210.20a3e9197eaad1d768df83efdae1f7fbe1cb7fc7.mattst88@gentoo
1 commit: 20a3e9197eaad1d768df83efdae1f7fbe1cb7fc7
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 2 23:58:29 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 3 00:03:30 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20a3e919
7
8 app-editors/gedit: Version bump to 42.0
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 app-editors/gedit/Manifest | 1 +
13 app-editors/gedit/gedit-42.0.ebuild | 93 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 94 insertions(+)
15
16 diff --git a/app-editors/gedit/Manifest b/app-editors/gedit/Manifest
17 index c1e30f0ef19e..0cc443d02577 100644
18 --- a/app-editors/gedit/Manifest
19 +++ b/app-editors/gedit/Manifest
20 @@ -1 +1,2 @@
21 DIST gedit-41.0.tar.xz 6889320 BLAKE2B c4d2b923eab18cd27ffc0ff99882953e952c0956135fa7f6401ef01dd5cd0e1cf9a5a86c5751db9206fd88200c70434710881cd5b934a3620f14130a5066f18f SHA512 97c51ef24e53d6bd4b29350a8749eacbfcfb90b7c66c9f6d462101c53966282452f6a02043628e157e8179cf6260f103b41c61d7ba2a31da08b0687f8031974e
22 +DIST gedit-42.0.tar.xz 6923352 BLAKE2B 751c4cae8ad0c146f2607f259ab72f4723c433934f75356bf71e44daadc82d4403e19228b52ec2f98c3fa7bc61274a6ed648ef8af143adb7c89213d39db64473 SHA512 d0f3c05e0a6f96634cc2deb24d95d906e5bb9d380b248a810560b60ac8590831fb25672a41e143fe7bba3882a08ec7ec85208f896751a7b66cabe4ade00cdaca
23
24 diff --git a/app-editors/gedit/gedit-42.0.ebuild b/app-editors/gedit/gedit-42.0.ebuild
25 new file mode 100644
26 index 000000000000..6028c770e278
27 --- /dev/null
28 +++ b/app-editors/gedit/gedit-42.0.ebuild
29 @@ -0,0 +1,93 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +PYTHON_COMPAT=( python3_{8..10} )
35 +VALA_MIN_API_VERSION="0.26"
36 +VALA_USE_DEPEND="vapigen"
37 +
38 +inherit gnome.org gnome2-utils meson python-single-r1 vala xdg
39 +
40 +DESCRIPTION="A text editor for the GNOME desktop"
41 +HOMEPAGE="https://wiki.gnome.org/Apps/Gedit https://gitlab.gnome.org/GNOME/gedit"
42 +
43 +LICENSE="GPL-2+ CC-BY-SA-3.0"
44 +SLOT="0"
45 +
46 +IUSE="+python gtk-doc spell"
47 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
48 +
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
50 +
51 +DEPEND="
52 + >=dev-libs/glib-2.64:2
53 + >=x11-libs/gtk+-3.22.0:3[introspection]
54 + >=x11-libs/gtksourceview-4.0.2:4[introspection]
55 + >=dev-libs/libpeas-1.14.1[gtk]
56 + >=dev-libs/libxml2-2.5.0:2
57 + >=dev-libs/gobject-introspection-1.54:=
58 +
59 + spell? ( >=app-text/gspell-0.2.5:0= )
60 + python? (
61 + ${PYTHON_DEPS}
62 + $(python_gen_cond_dep '
63 + dev-python/pycairo[${PYTHON_USEDEP}]
64 + >=dev-python/pygobject-3:3[cairo,${PYTHON_USEDEP}]
65 + dev-libs/libpeas[python,${PYTHON_SINGLE_USEDEP}]
66 + ')
67 + )
68 +"
69 +RDEPEND="${DEPEND}
70 + x11-themes/adwaita-icon-theme
71 + gnome-base/gsettings-desktop-schemas
72 + gnome-base/gvfs
73 +"
74 +BDEPEND="
75 + $(vala_depend)
76 + app-text/docbook-xml-dtd:4.1.2
77 + dev-util/glib-utils
78 + gtk-doc? ( >=dev-util/gtk-doc-1 )
79 + dev-util/itstool
80 + >=sys-devel/gettext-0.18
81 + virtual/pkgconfig
82 +"
83 +
84 +pkg_setup() {
85 + use python && python-single-r1_pkg_setup
86 +}
87 +
88 +src_prepare() {
89 + default
90 + vala_setup
91 + xdg_environment_reset
92 +}
93 +
94 +src_configure() {
95 + local emesonargs=(
96 + $(meson_use gtk-doc gtk_doc)
97 + $(meson_use python)
98 + $(meson_feature spell)
99 + -Duser_documentation=true
100 + -Denable-gvfs-metadata=yes
101 +
102 + )
103 + meson_src_configure
104 +}
105 +
106 +src_install() {
107 + meson_src_install
108 + if use python; then
109 + python_optimize
110 + python_optimize "${ED}/usr/$(get_libdir)/gedit/plugins/"
111 + fi
112 +}
113 +
114 +pkg_postinst() {
115 + xdg_pkg_postinst
116 + gnome2_schemas_update
117 +}
118 +
119 +pkg_postrm() {
120 + xdg_pkg_postrm
121 + gnome2_schemas_update
122 +}