diff options
author | Guillermo Joandet <gjoandet@gmail.com> | 2023-01-05 11:16:32 -0300 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2023-01-05 11:30:14 -0500 |
commit | 95c81ad563f1281a429a8b756eb62b0ad600caf6 (patch) | |
tree | b52913319e21ed388b27e4769bb0bc8eda9a6d75 /gui-libs | |
parent | app-accessibility/orca: Version bump to 43.1 (diff) | |
download | gentoo-95c81ad563f1281a429a8b756eb62b0ad600caf6.tar.gz gentoo-95c81ad563f1281a429a8b756eb62b0ad600caf6.tar.bz2 gentoo-95c81ad563f1281a429a8b756eb62b0ad600caf6.zip |
gui-libs/tepl: Version bump to 6.4.0
Signed-off-by: Guillermo Joandet <gjoandet@gmail.com>
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'gui-libs')
-rw-r--r-- | gui-libs/tepl/Manifest | 1 | ||||
-rw-r--r-- | gui-libs/tepl/tepl-6.4.0.ebuild | 46 |
2 files changed, 47 insertions, 0 deletions
diff --git a/gui-libs/tepl/Manifest b/gui-libs/tepl/Manifest index 8974bc885f75..a45a50cf3f56 100644 --- a/gui-libs/tepl/Manifest +++ b/gui-libs/tepl/Manifest @@ -1,2 +1,3 @@ DIST tepl-5.0.1.tar.xz 126068 BLAKE2B 2c3038326660f6326c5030cb944f8cee885b794a481f6d8f1b5d87a8ea7121ded381d28b36246a99b57bbea5fd9e6d2d4f65f9dfc54d8154ee8aabbccd7e3cb5 SHA512 f363d182185976447d235cf1201148e5201cdabd1fa8b88d7a763a965896f87bd222a0161c11e93662afaf4e474bbd0308643d28559aadc27b9d48974f4c458d DIST tepl-6.2.0.tar.xz 147960 BLAKE2B 6937e5cd8a863b29f21bcd36eadc6e617da061f22e82c971bf72de0f7f742534d84be85107866cf621266af95f4f4c0c9c2456631fe63d47fae02574d6223b65 SHA512 694264bfc2d984de37619ffec603387fb1ac5053377f1de2b6b0313e0739f9eacea07845c5bdaaea64a5cf185c6ab0987a115bb4def55d69861a06f06d2d3b13 +DIST tepl-6.4.0.tar.xz 164004 BLAKE2B f0365abef85a187d72652ef70abf27d1a7ad2f74f64bf85607e0aa295dfb0e424c7683269233c308d89115aacac4b99c471039b47cedb81b9be2ec361439a2b4 SHA512 c9c3c720b393ba94d94d58c01f9db72c4713f010551bab31bdfbca6ba416af1c48f1090598f469ce7b41a2ada26fbac4f69632ee411468f3eae84b61b78b60bb diff --git a/gui-libs/tepl/tepl-6.4.0.ebuild b/gui-libs/tepl/tepl-6.4.0.ebuild new file mode 100644 index 000000000000..96d56808712a --- /dev/null +++ b/gui-libs/tepl/tepl-6.4.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org meson virtualx + +DESCRIPTION="GtkSourceView-based text editors and IDE helper library" +HOMEPAGE="https://gitlab.gnome.org/swilmet/tepl" + +LICENSE="LGPL-3+" +SLOT="6/2" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="+introspection gtk-doc" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/glib-2.62:2 + >=x11-libs/gtk+-3.22:3[introspection?] + >=x11-libs/gtksourceview-4.0:4[introspection?] + >=gui-libs/amtk-5.0:5=[introspection?] + dev-libs/icu:= + gnome-base/gsettings-desktop-schemas + introspection? ( >=dev-libs/gobject-introspection-1.42:= ) +" +BDEPEND=" + dev-util/glib-utils + gtk-doc? ( + >=dev-util/gtk-doc-1.25 + app-text/docbook-xml-dtd:4.3 + ) + >=sys-devel/gettext-0.19.6 + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + $(meson_use gtk-doc gtk_doc) + $(meson_use introspection gobject_introspection) + ) + meson_src_configure +} + +src_test() { + virtx meson_src_test +} |