diff options
author | Guillermo Joandet <gjoandet@gmail.com> | 2023-09-23 13:51:30 -0300 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2023-10-08 13:51:13 +0200 |
commit | abde7b9e3e4bb26ca376ada5ed43ef027b3a3831 (patch) | |
tree | cdb0224ba1679e000e556cc800539c76bca665eb /gnome-extra | |
parent | x11-misc/alacarte: Version bump to 3.50.0 (diff) | |
download | gentoo-abde7b9e3e4bb26ca376ada5ed43ef027b3a3831.tar.gz gentoo-abde7b9e3e4bb26ca376ada5ed43ef027b3a3831.tar.bz2 gentoo-abde7b9e3e4bb26ca376ada5ed43ef027b3a3831.zip |
gnome-extra/gnome-tweaks: Version bump to 45.0
Signed-off-by: Guillermo Joandet <gjoandet@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/33009
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/gnome-tweaks/Manifest | 1 | ||||
-rw-r--r-- | gnome-extra/gnome-tweaks/gnome-tweaks-45.0.ebuild | 54 |
2 files changed, 55 insertions, 0 deletions
diff --git a/gnome-extra/gnome-tweaks/Manifest b/gnome-extra/gnome-tweaks/Manifest index 0d1c52c6fead..479939527189 100644 --- a/gnome-extra/gnome-tweaks/Manifest +++ b/gnome-extra/gnome-tweaks/Manifest @@ -1,2 +1,3 @@ DIST gnome-tweaks-40.10.tar.xz 251712 BLAKE2B 7e9e04b86ffcff25cafd2a6dfc0c7be14c8caa4ae003369c34ed2c40c36ce857b05de9994f7c2187cbdd535f464b92f782ec91b835318c2b5d2219ad817fbe56 SHA512 1247933ad2f93bd7817af367d715468591840df4840d45641033ca19ea26c64239828ba3e24fafb8694014a98024b911266c314172ba8e37d6c4165e7e6e8a29 DIST gnome-tweaks-42.beta.tar.xz 250480 BLAKE2B a9ff92c9927faad54128b969587a3e074bc9bc94a57d454f72807b7cadfa7fe15992c1370c4c9957c0f816aff73c9e432624060d5dacadffa067d6cdce6d0899 SHA512 f641d62891efd8f198f520fd467e6b3c73540e54a506d07a4a4578ae793d273ee76844f5da7581c3562c6cfeb5bcb6e2d86b49db5f7a09d506e6d17fe6b32a14 +DIST gnome-tweaks-45.0.tar.xz 738364 BLAKE2B 0568aa800ab1c981491c6b3a66430e33c720a09a23ab25ce9bf73b2fe761f485a0df585b86541b38f62ee3737c780e8f449f75ac969c5d58e8f2049ffe37720b SHA512 2bc6d64a412c13f84a971d157ce7ebfac31d791af8d4bfc80d7f6b8f88445ecd40dc9d9d12aee0688590ab6d9535add18f244dd9a216e3b59c82e1c88a1c7f86 diff --git a/gnome-extra/gnome-tweaks/gnome-tweaks-45.0.ebuild b/gnome-extra/gnome-tweaks/gnome-tweaks-45.0.ebuild new file mode 100644 index 000000000000..cca781162472 --- /dev/null +++ b/gnome-extra/gnome-tweaks/gnome-tweaks-45.0.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{10..12} ) + +inherit gnome.org gnome2-utils meson python-single-r1 xdg + +DESCRIPTION="Customize advanced GNOME options" +HOMEPAGE="https://wiki.gnome.org/Apps/Tweaks" + +LICENSE="GPL-3+ CC0-1.0" +SLOT="0" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" + +DEPEND="${PYTHON_DEPS}" +# See README.md for list of deps +RDEPEND="${DEPEND} + $(python_gen_cond_dep ' + >=dev-python/pygobject-3.10.2:3[${PYTHON_USEDEP}] + ') + >=gnome-base/gnome-settings-daemon-3 + x11-themes/sound-theme-freedesktop + + >=dev-libs/glib-2.58:2 + >=x11-libs/gtk+-3.12:3[introspection] + >=gnome-base/gnome-desktop-3.30:3[introspection] + gui-libs/libhandy:1[introspection] + x11-libs/libnotify[introspection] + x11-libs/pango[introspection] + >=gnome-base/gsettings-desktop-schemas-40.0 + >=gnome-base/gnome-shell-3.24 + x11-wm/mutter +" +BDEPEND=">=sys-devel/gettext-0.19.8" + +src_install() { + meson_src_install + python_optimize + python_fix_shebang "${ED}"/usr/bin/ +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} |