Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gui-libs/tepl/
Date: Tue, 03 May 2022 13:48:06
Message-Id: 1651585674.94fc4c2aa51e6a1cc889cb7b86ff73ca0991032a.mattst88@gentoo
1 commit: 94fc4c2aa51e6a1cc889cb7b86ff73ca0991032a
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 3 13:21:28 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue May 3 13:47:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94fc4c2a
7
8 gui-libs/tepl: Version bump to 6.0.1
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 gui-libs/tepl/Manifest | 1 +
13 gui-libs/tepl/tepl-6.0.1.ebuild | 46 +++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 47 insertions(+)
15
16 diff --git a/gui-libs/tepl/Manifest b/gui-libs/tepl/Manifest
17 index dee48e274835..39ca7fb9fe22 100644
18 --- a/gui-libs/tepl/Manifest
19 +++ b/gui-libs/tepl/Manifest
20 @@ -1,2 +1,3 @@
21 DIST tepl-5.0.1.tar.xz 126068 BLAKE2B 2c3038326660f6326c5030cb944f8cee885b794a481f6d8f1b5d87a8ea7121ded381d28b36246a99b57bbea5fd9e6d2d4f65f9dfc54d8154ee8aabbccd7e3cb5 SHA512 f363d182185976447d235cf1201148e5201cdabd1fa8b88d7a763a965896f87bd222a0161c11e93662afaf4e474bbd0308643d28559aadc27b9d48974f4c458d
22 +DIST tepl-6.0.1.tar.xz 142884 BLAKE2B 7da51ecd3b1a74fc22e98020ad6b73c98524c97384c26c9cc0ef0a972214afcbb8c2bd4976904cea91784f815e626c501cf68d85d876b764af3b8bd182848694 SHA512 31d7a6e5f66e66f380f780089c13ccb938052237acf514713a731b374afd6871fb8d0685db2137fa2c62548dd3ae85a198ce3bfc3148ec30feb0cb0f10c78114
23 DIST tepl-6.00.0.tar.xz 141908 BLAKE2B 200693a8cf760d18e1c53647abb8156f7e067557b4cefbd05b03c5a3ec83c3c5807ab93e0464178b68fc9f2572c3175fbf9355f4131df1fe7f79b5e2deb3961e SHA512 e36877b9f33943715a50546d82ed61e65fc07b71dca2c85ff350a305767e96eda74dc14f30b2a430e14deacd4ee8d49697fe01df1f5023afab3747e5e9c95e2e
24
25 diff --git a/gui-libs/tepl/tepl-6.0.1.ebuild b/gui-libs/tepl/tepl-6.0.1.ebuild
26 new file mode 100644
27 index 000000000000..f04c466fe49c
28 --- /dev/null
29 +++ b/gui-libs/tepl/tepl-6.0.1.ebuild
30 @@ -0,0 +1,46 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit gnome.org meson virtualx
37 +
38 +DESCRIPTION="GtkSourceView-based text editors and IDE helper library"
39 +HOMEPAGE="https://wiki.gnome.org/Projects/Tepl https://gitlab.gnome.org/swilmet/tepl"
40 +
41 +LICENSE="LGPL-3+"
42 +SLOT="6"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
44 +IUSE="+introspection gtk-doc"
45 +RESTRICT="!test? ( test )"
46 +
47 +RDEPEND="
48 + >=dev-libs/glib-2.62:2
49 + >=x11-libs/gtk+-3.22:3[introspection?]
50 + >=x11-libs/gtksourceview-4.0:4[introspection?]
51 + >=gui-libs/amtk-5.0:5[introspection?]
52 + dev-libs/icu:=
53 + introspection? ( >=dev-libs/gobject-introspection-1.42:= )
54 +"
55 +DEPEND="${RDEPEND}"
56 +BDEPEND="
57 + dev-util/glib-utils
58 + gtk-doc? (
59 + >=dev-util/gtk-doc-1.25
60 + app-text/docbook-xml-dtd:4.3
61 + )
62 + >=sys-devel/gettext-0.19.6
63 + virtual/pkgconfig
64 +"
65 +
66 +src_configure() {
67 + local emesonargs=(
68 + $(meson_use gtk-doc gtk_doc)
69 + $(meson_use introspection gobject_introspection)
70 + )
71 + meson_src_configure
72 +}
73 +
74 +src_test() {
75 + virtx meson_src_test
76 +}