Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-tweaks/
Date: Fri, 16 Apr 2021 03:41:44
Message-Id: 1618544335.5a98d5e6fb736c338b3b1139293f09b66420cd09.mattst88@gentoo
1 commit: 5a98d5e6fb736c338b3b1139293f09b66420cd09
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 16 03:33:31 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 16 03:38:55 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a98d5e6
7
8 gnome-extra/gnome-tweaks: Version bump to 40.0
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 gnome-extra/gnome-tweaks/Manifest | 1 +
13 gnome-extra/gnome-tweaks/gnome-tweaks-40.0.ebuild | 49 +++++++++++++++++++++++
14 2 files changed, 50 insertions(+)
15
16 diff --git a/gnome-extra/gnome-tweaks/Manifest b/gnome-extra/gnome-tweaks/Manifest
17 index 098765e9895..4af9eea366b 100644
18 --- a/gnome-extra/gnome-tweaks/Manifest
19 +++ b/gnome-extra/gnome-tweaks/Manifest
20 @@ -1 +1,2 @@
21 DIST gnome-tweaks-3.34.1.tar.xz 247980 BLAKE2B 55fbb16bcdb1a9ea4b5ca84df802266e07347377eab3712284973146fcc0797af59df5985725b1a95a1fba0d26b580a1c9862675978876de5eeb0de9c0060be3 SHA512 c922bf696b9ff48c8c39fd4ae06f4b72ea7b18645ad41552b0367859066d7601bc59521643335931e1cce799344a1c1ac9a7c28408de4c19bfa4127594a2ec7d
22 +DIST gnome-tweaks-40.0.tar.xz 251908 BLAKE2B 4280e7565da3f95d7bcd81ba874d2f15e8c3834ab052cb4cf7cde8060eaea016670acf6f441d2cbce4b7566ba0bb7a7f9666b257893bc7b22b1cdc4d5a0edee2 SHA512 c3467f40af6bb79c2b10cb429e93aa29261066c2a5fd744bf2801c4e596cc270d45302ebfa942ee0c40067849c12e1ccd404c40e7f594bcff4c44cfe3f90bb97
23
24 diff --git a/gnome-extra/gnome-tweaks/gnome-tweaks-40.0.ebuild b/gnome-extra/gnome-tweaks/gnome-tweaks-40.0.ebuild
25 new file mode 100644
26 index 00000000000..127de63566b
27 --- /dev/null
28 +++ b/gnome-extra/gnome-tweaks/gnome-tweaks-40.0.ebuild
29 @@ -0,0 +1,49 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +PYTHON_COMPAT=( python3_{7..9} )
35 +
36 +inherit gnome.org meson python-single-r1 xdg
37 +
38 +DESCRIPTION="Customize advanced GNOME 3 options"
39 +HOMEPAGE="https://wiki.gnome.org/Apps/Tweaks"
40 +
41 +LICENSE="GPL-3+ CC0-1.0"
42 +SLOT="0"
43 +
44 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
45 +
46 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
47 +
48 +DEPEND="${PYTHON_DEPS}"
49 +# See README.md for list of deps
50 +RDEPEND="${DEPEND}
51 + $(python_gen_cond_dep '
52 + >=dev-python/pygobject-3.10.2:3[${PYTHON_MULTI_USEDEP}]
53 + ')
54 + >=gnome-base/gnome-settings-daemon-3
55 + x11-themes/sound-theme-freedesktop
56 +
57 + >=dev-libs/glib-2.58:2
58 + >=x11-libs/gtk+-3.12:3[introspection]
59 + >=gnome-base/gnome-desktop-3.30:3[introspection]
60 + gui-libs/libhandy:0.0[introspection]
61 + net-libs/libsoup:2.4[introspection]
62 + x11-libs/libnotify[introspection]
63 +
64 + >=gnome-base/gsettings-desktop-schemas-3.33.0
65 + >=gnome-base/gnome-shell-3.24
66 + x11-wm/mutter
67 +"
68 +BDEPEND=">=sys-devel/gettext-0.19.8"
69 +
70 +PATCHES=(
71 + "${FILESDIR}"/3.28.1-gentoo-cursor-themes.patch # Add contents of Gentoo's cursor theme directory to cursor theme list
72 +)
73 +
74 +src_install() {
75 + meson_src_install
76 + python_optimize
77 + python_fix_shebang "${ED}"/usr/bin/
78 +}