Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-tweaks/
Date: Sun, 29 Sep 2019 16:16:08
Message-Id: 1569773758.637b1550f7a03d6f0026f0f7935c3b51acbf46e0.pacho@gentoo
1 commit: 637b1550f7a03d6f0026f0f7935c3b51acbf46e0
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 29 16:15:42 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 29 16:15:58 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=637b1550
7
8 gnome-extra/gnome-tweaks: Bump to 3.32.0
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 gnome-extra/gnome-tweaks/Manifest | 1 +
14 .../gnome-tweaks/gnome-tweaks-3.32.0.ebuild | 49 ++++++++++++++++++++++
15 2 files changed, 50 insertions(+)
16
17 diff --git a/gnome-extra/gnome-tweaks/Manifest b/gnome-extra/gnome-tweaks/Manifest
18 index 5ff4a3f6c66..f393b81dc86 100644
19 --- a/gnome-extra/gnome-tweaks/Manifest
20 +++ b/gnome-extra/gnome-tweaks/Manifest
21 @@ -1 +1,2 @@
22 DIST gnome-tweaks-3.30.2.tar.xz 281820 BLAKE2B cd980f77a05d74f556fe461f1dc35122efb23ab0885b84ddb71c873dd6cb424d4ae213d393b7555f8baed8eb5fb3df8afa7d9b4cb92d772ba9eed59892871bfe SHA512 183df35e8051aa1fba54ca45aca64d665f28d92c56879ff6fa60adf3809a05676db15d97d7023bf5ffb9bac33df259eb62742bee3cebeb87d8ffa39679b2c078
23 +DIST gnome-tweaks-3.32.0.tar.xz 241492 BLAKE2B f3c0a25b39726600fc5d53d8d3c343dbcde594642a87fc56dd3fff9b88a3498e0f283568a944fc37445c138201db1f280222eb1161f5b8351c566537404cde5e SHA512 8107e9d2b33ac6c46e8d0076b27a1c3a84e1721e49a6b80da28fe854f6f4f6693bc7f7e836c54d39bafec79dcee8a6e2b2962580a77d7d01bfc06c6d11206d8f
24
25 diff --git a/gnome-extra/gnome-tweaks/gnome-tweaks-3.32.0.ebuild b/gnome-extra/gnome-tweaks/gnome-tweaks-3.32.0.ebuild
26 new file mode 100644
27 index 00000000000..d1198e1233e
28 --- /dev/null
29 +++ b/gnome-extra/gnome-tweaks/gnome-tweaks-3.32.0.ebuild
30 @@ -0,0 +1,49 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +PYTHON_COMPAT=( python3_{5,6,7} )
36 +
37 +inherit gnome.org meson python-single-r1 xdg
38 +
39 +DESCRIPTION="Customize advanced GNOME 3 options"
40 +HOMEPAGE="https://wiki.gnome.org/Apps/Tweaks"
41 +
42 +LICENSE="GPL-3+ CC0-1.0"
43 +SLOT="0"
44 +
45 +IUSE=""
46 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
47 +
48 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
49 +
50 +COMMON_DEPEND="
51 + ${PYTHON_DEPS}
52 +"
53 +# See README.md for list of deps
54 +RDEPEND="${COMMON_DEPEND}
55 + >=dev-python/pygobject-3.10.2:3[${PYTHON_USEDEP}]
56 + >=gnome-base/gnome-settings-daemon-3
57 + x11-themes/sound-theme-freedesktop
58 +
59 + >=dev-libs/glib-2.58:2
60 + >=x11-libs/gtk+-3.12:3[introspection]
61 + >=gnome-base/gnome-desktop-3.30:3[introspection]
62 + net-libs/libsoup:2.4[introspection]
63 + x11-libs/libnotify[introspection]
64 +
65 + >=gnome-base/gsettings-desktop-schemas-3.28
66 + >=gnome-base/gnome-shell-3.24
67 + x11-wm/mutter
68 +"
69 +DEPEND="${COMMON_DEPEND}"
70 +BDEPEND=">=sys-devel/gettext-0.19.8"
71 +
72 +PATCHES=(
73 + "${FILESDIR}"/3.28.1-gentoo-cursor-themes.patch # Add contents of Gentoo's cursor theme directory to cursor theme list
74 +)
75 +
76 +src_install() {
77 + meson_src_install
78 + python_fix_shebang "${ED}"/usr/bin/
79 +}