forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gui-libs/tepl: Version bump to 5.1.1
Signed-off-by: Matt Turner <[email protected]>
- Loading branch information
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST tepl-4.4.0.tar.xz 466576 BLAKE2B fe9d9c625a3febe6fc71e5972b864b0d732b7f75bcc114a391d7f94b2fc242fe7c5199e61d5a69a8ceccb845fffcf830d6071adb1ecda5e223d453d029ed3398 SHA512 2050c28f9564034bea7c44d3fa27784ab87503c2db6cf35e6389c40ca78722b092fbc52df5fdfc85cc1e39a9dc3c0e30fa7993fb63411b0240f3a6ac9607c282 | ||
DIST tepl-5.0.1.tar.xz 126068 BLAKE2B 2c3038326660f6326c5030cb944f8cee885b794a481f6d8f1b5d87a8ea7121ded381d28b36246a99b57bbea5fd9e6d2d4f65f9dfc54d8154ee8aabbccd7e3cb5 SHA512 f363d182185976447d235cf1201148e5201cdabd1fa8b88d7a763a965896f87bd222a0161c11e93662afaf4e474bbd0308643d28559aadc27b9d48974f4c458d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
inherit gnome.org meson virtualx | ||
|
||
DESCRIPTION="GtkSourceView-based text editors and IDE helper library" | ||
HOMEPAGE="https://wiki.gnome.org/Projects/Tepl" | ||
|
||
LICENSE="LGPL-2.1+" | ||
SLOT="5" | ||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" | ||
IUSE="gtk-doc" | ||
|
||
RDEPEND=" | ||
>=dev-libs/glib-2.64:2 | ||
>=dev-libs/gobject-introspection-1.42:= | ||
>=x11-libs/gtk+-3.22:3[introspection] | ||
>=x11-libs/gtksourceview-4.0:4[introspection] | ||
>=gui-libs/amtk-5.0:5[introspection] | ||
>=dev-libs/libxml2-2.5:2 | ||
app-i18n/uchardet | ||
" | ||
DEPEND="${RDEPEND}" | ||
BDEPEND=" | ||
>=sys-devel/gettext-0.19.6 | ||
dev-util/glib-utils | ||
>=dev-util/gtk-doc-am-1.25 | ||
virtual/pkgconfig | ||
" | ||
|
||
RESTRICT="!test? ( test )" | ||
|
||
src_configure() { | ||
local emesonargs=( | ||
$(meson_use gtk-doc gtk_doc) | ||
) | ||
meson_src_configure | ||
} | ||
|
||
src_test() { | ||
virtx meson_src_test | ||
} |