diff options
author | Guillermo Joandet <gjoandet@gmail.com> | 2023-07-05 00:10:14 -0300 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2023-07-13 12:18:50 -0400 |
commit | 779f3a186b273ddd3cb744929555111901794082 (patch) | |
tree | 8e1da40835f925efdd29128b62b914ac4029de9e /gnome-extra/gnome-characters | |
parent | x11-themes/gnome-backgrounds: Version bump to 45_beta (diff) | |
download | gentoo-779f3a186b273ddd3cb744929555111901794082.tar.gz gentoo-779f3a186b273ddd3cb744929555111901794082.tar.bz2 gentoo-779f3a186b273ddd3cb744929555111901794082.zip |
gnome-extra/gnome-characters: Version bump to 45_alpha
Signed-off-by: Guillermo Joandet <gjoandet@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/31753
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'gnome-extra/gnome-characters')
-rw-r--r-- | gnome-extra/gnome-characters/Manifest | 1 | ||||
-rw-r--r-- | gnome-extra/gnome-characters/gnome-characters-45_alpha.ebuild | 47 |
2 files changed, 48 insertions, 0 deletions
diff --git a/gnome-extra/gnome-characters/Manifest b/gnome-extra/gnome-characters/Manifest index d04e419f1439..6d381493e7bd 100644 --- a/gnome-extra/gnome-characters/Manifest +++ b/gnome-extra/gnome-characters/Manifest @@ -1 +1,2 @@ DIST gnome-characters-44.0.tar.xz 586540 BLAKE2B 996e06151f0bd35f41212ed4cf46181105011c7dee3b60ae46de0f244f2d9c39741e0c844628e9a308d13b977089ef448790094f3dbd924b12d8f49ebeddb70f SHA512 d49f4df21e7ff295bb16cf66640446e9e572689252e1a04314316443da670e585ef918a00bd7503b764d49b76e4c32286df2be2a3c432552e5bbcad6fe62e724 +DIST gnome-characters-45.alpha.tar.xz 588028 BLAKE2B 7aaa00ff58176b60d58164ae3e3242c00cdafe994b50c574065bff56d90b3924c24679ec6045d56dd174b669d67f34fb8188c1595d32920f94b4634ce5766c4f SHA512 83fbdd47e354d23538cc638f068c0276b79c12fac9fca5214a6950deb996008e8279ccbca7dd04214eff978706422e08db1bd14292ed40b1154da38605f4acd8 diff --git a/gnome-extra/gnome-characters/gnome-characters-45_alpha.ebuild b/gnome-extra/gnome-characters/gnome-characters-45_alpha.ebuild new file mode 100644 index 000000000000..e58cf99b88cf --- /dev/null +++ b/gnome-extra/gnome-characters/gnome-characters-45_alpha.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson xdg + +DESCRIPTION="Unicode character map viewer and library" +HOMEPAGE="https://wiki.gnome.org/Design/Apps/CharacterMap" + +LICENSE="GPL-2+ BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" + +RDEPEND=" + >=dev-libs/gjs-1.50 + >=dev-libs/glib-2.32:2 + >=dev-libs/gobject-introspection-1.35.9:= + >=gui-libs/gtk-4.6:4[introspection] + >=gui-libs/libadwaita-1.2:1= + x11-libs/gdk-pixbuf:2 + >=x11-libs/pango-1.36[introspection] + gnome-base/gnome-desktop:3[introspection] +" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-libs/glib + dev-libs/libxml2:2 + dev-util/glib-utils + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig + test? ( x11-misc/xvfb-run ) +" + +src_test() { + meson test -C "${BUILD_DIR}" || die 'tests failed' +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} |