diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-08-10 11:05:14 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-08-10 11:05:14 +0100 |
commit | fbbf0ee3d56a6fd27adf182c6907dc745623aeaa (patch) | |
tree | 2c2869a78e5e3b6af9391df951ca217cced4608d /gui-apps | |
parent | 43297a4ed0a3760bbdd0b8c286b779f174ca5368 (diff) |
gentoo auto-resync : 10:08:2024 - 11:05:14
Diffstat (limited to 'gui-apps')
-rw-r--r-- | gui-apps/Manifest.gz | bin | 5050 -> 5047 bytes | |||
-rw-r--r-- | gui-apps/gnome-console/Manifest | 2 | ||||
-rw-r--r-- | gui-apps/gnome-console/gnome-console-46.0.ebuild | 53 |
3 files changed, 55 insertions, 0 deletions
diff --git a/gui-apps/Manifest.gz b/gui-apps/Manifest.gz Binary files differindex effc4f6fe993..f84005344561 100644 --- a/gui-apps/Manifest.gz +++ b/gui-apps/Manifest.gz diff --git a/gui-apps/gnome-console/Manifest b/gui-apps/gnome-console/Manifest index bd317198edbb..fa8f2335c15b 100644 --- a/gui-apps/gnome-console/Manifest +++ b/gui-apps/gnome-console/Manifest @@ -1,3 +1,5 @@ DIST gnome-console-45.0.tar.xz 178444 BLAKE2B ca04c31657b19ab1651899c56ff64ffa6d3913935fa5564ba115d83ba6dec50d2b816a47064ab7538aaa07347ebcb1890cc7dcb6e29164f7a36a6e18985e874a SHA512 940f02b8e1b02a680d9c25de59f655243a033883b9e21a183bd40ebe09c1803d6fbbfb45223e9a4ae20401d65e80a2bf0ba28bc7971fe84889176be64062b8d0 +DIST gnome-console-46.0.tar.xz 185424 BLAKE2B 8a30519df47da40578a9cb493ce981518432377bce95f55f41326502d260dd8fdb1302fb1edc38847c51c4a8fb266fb87561a61eb9ebf21711d87ddfc654eafb SHA512 de885b23979278774d0211103b3b15d58c1d0224d59baa2dc8f9ab369b95f5d5fe659b3d2fddd1e10c5406c11b3c56e4c7ec41bb369cb149a5f975404ab98147 EBUILD gnome-console-45.0-r1.ebuild 961 BLAKE2B c5e53dada789a7524e4e8f2236ba88478f01d0d0b1a6b08b68882d7be02a2cc7160aa46cd7068d39c5e62ba2f6e8ed384a3664d756a148d90209fe138d3db282 SHA512 f3b7af9462d637f9c0ad56bf2a509c19e8e4a416bb4b736f09fbcc254ca74d43c8e37b481d4b9f21661cc03dfce5f333cf077614ae617a0aaa46ad568732c9b7 +EBUILD gnome-console-46.0.ebuild 995 BLAKE2B 76ef6593c5defd23606bb8ffdbd2b2fa8401d7213b46ad2c53fa3fb218cf3ff0f51e761636e51a0485367e8830c7390218803a10f520d56049acca23c43bf275 SHA512 c0ec0c521e2b251fb23b65ae624dba507eba11c6cc24c7483f0a9d18444f27e32bf5e0f69428099a372eb9d09f610d3c6219a98875934479ad47efe7ff5ce9fa MISC metadata.xml 348 BLAKE2B 7b68ba89d6cf52bd1ecc31913e6e7e12e4bcf842915293546df88c6dce5ad05d133f1299d4bbc46aef63e65dfa8a9046b3d4b34c1aee5f638918c85560439c01 SHA512 fe32610a9f3cff3b26785ef27b8544afc81c99149e6183fe0fc9516dfd61c30b93c6f57981b35b0882e7042687a011fb8e7f11b6c11b5b581816b97c637117e9 diff --git a/gui-apps/gnome-console/gnome-console-46.0.ebuild b/gui-apps/gnome-console/gnome-console-46.0.ebuild new file mode 100644 index 000000000000..eff7652daf7e --- /dev/null +++ b/gui-apps/gnome-console/gnome-console-46.0.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson xdg + +DESCRIPTION="A simple user-friendly terminal emulator for the GNOME desktop" +HOMEPAGE="https://apps.gnome.org/Console/ https://gitlab.gnome.org/GNOME/console" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~loong" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/glib-2.76:2 + >=gui-libs/gtk-4.12.2:4 + >=gui-libs/libadwaita-1.4_alpha:1 + >=gui-libs/vte-0.75.1:2.91-gtk4 + gnome-base/libgtop:2= + >=dev-libs/libpcre2-10.32:0= + gnome-base/gsettings-desktop-schemas + + x11-libs/pango +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig + test? ( + dev-util/desktop-file-utils + dev-libs/appstream-glib + ) +" + +src_configure() { + local emesonargs=( + -Ddevel=false + $(meson_use test tests) + ) + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} |