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-shell-extensions/
Date: Tue, 13 Jul 2021 08:20:04
Message-Id: 1626164391.0259517e874f5c6a977f2e5222ba6797a1bdfa47.pacho@gentoo
1 commit: 0259517e874f5c6a977f2e5222ba6797a1bdfa47
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 13 08:19:51 2021 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 13 08:19:51 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0259517e
7
8 gnome-extra/gnome-shell-extensions: Version bump to 40.3
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 gnome-extra/gnome-shell-extensions/Manifest | 1 +
14 .../gnome-shell-extensions-40.3.ebuild | 67 ++++++++++++++++++++++
15 2 files changed, 68 insertions(+)
16
17 diff --git a/gnome-extra/gnome-shell-extensions/Manifest b/gnome-extra/gnome-shell-extensions/Manifest
18 index 4edf8cd4c8a..b3b07e356cb 100644
19 --- a/gnome-extra/gnome-shell-extensions/Manifest
20 +++ b/gnome-extra/gnome-shell-extensions/Manifest
21 @@ -1,2 +1,3 @@
22 DIST gnome-shell-extensions-40.1.tar.xz 218084 BLAKE2B 0f54dc53ce279af424658d540961bda698c4d6c2968bf778e626a91c7da47b8f56bd4b1dd874956dce9fbb0d1719bd64b8cf8883788d625049aa14dcc02ff313 SHA512 e537312c0790b6e54b3eebb0df189f65f093e81ec7cf1cde886df747188765775fc4616e98bff0157b543bac26c51a5c7006f1505f4554fea00972f790e781f1
23 DIST gnome-shell-extensions-40.2.tar.xz 218032 BLAKE2B f4b8daf2fcd62eaef0ad0960c930fc9368bd426b867a31351b39a2a628dfe9c0631419a5f067b4ac1eb03d2df931ba3a8ea99d4e72043459463b86eb00f6787b SHA512 f02a02a8410e77e8c8b0a764bb7949727974e9a4c0125ac2b6e68c1b20b663ef2de82ddaaed882dd5ffb3a6fd9898b372b6201d53da33f11677c32e82272d2aa
24 +DIST gnome-shell-extensions-40.3.tar.xz 218108 BLAKE2B 33174ef4c80caf375d48f11b7678ec78bfbe60a9d4456e21856b09a0a83e99ee7b68598c719a6913a29d9686317015fbc8d8bfae856e433414889e59e82e5ca3 SHA512 3773b0a5ec81b6663a3b2c5f5d1f8e7619fdba49ce67b25ee0f5555d17ea7c9740c3698b7a4e4f7fa78241c8738663c602cb5ed1ff9874b8ad2321fec0dbc737
25
26 diff --git a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.3.ebuild b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.3.ebuild
27 new file mode 100644
28 index 00000000000..f5bc021adca
29 --- /dev/null
30 +++ b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.3.ebuild
31 @@ -0,0 +1,67 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +inherit gnome.org readme.gentoo-r1 meson xdg
37 +
38 +DESCRIPTION="JavaScript extensions for GNOME Shell"
39 +HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShell/Extensions"
40 +
41 +LICENSE="GPL-2+"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~ppc64 ~x86"
44 +
45 +DEPEND="
46 + >=dev-libs/glib-2.26:2
47 + >=gnome-base/libgtop-2.28.3[introspection]
48 + >=app-eselect/eselect-gnome-shell-extensions-20111211
49 +"
50 +RDEPEND="${DEPEND}
51 + >=dev-libs/gjs-1.29
52 + dev-libs/gobject-introspection:=
53 + dev-libs/atk[introspection]
54 + gnome-base/gnome-menus:3[introspection]
55 + =gnome-base/gnome-shell-$(ver_cut 1-2)*
56 + media-libs/clutter:1.0[introspection]
57 + net-libs/telepathy-glib[introspection]
58 + x11-libs/gdk-pixbuf:2[introspection]
59 + x11-libs/gtk+:3[introspection]
60 + x11-libs/pango[introspection]
61 + x11-themes/adwaita-icon-theme
62 + >=x11-wm/mutter-3.32[introspection]
63 +"
64 +BDEPEND="
65 + >=sys-devel/gettext-0.19.8
66 + virtual/pkgconfig
67 +"
68 +
69 +DISABLE_AUTOFORMATTING="yes"
70 +DOC_CONTENTS="Installed extensions installed are initially disabled by default.
71 +To change the system default and enable some extensions, you can use
72 +# eselect gnome-shell-extensions
73 +
74 +Alternatively, to enable/disable extensions on a per-user basis,
75 +you can use the https://extensions.gnome.org/ web interface, the
76 +gnome-extra/gnome-tweaks GUI, or modify the org.gnome.shell
77 +enabled-extensions gsettings key from the command line or a script."
78 +
79 +src_configure() {
80 + meson_src_configure \
81 + -Dextension_set=all \
82 + -Dclassic_mode=true
83 +}
84 +
85 +src_install() {
86 + meson_src_install
87 + readme.gentoo_create_doc
88 +}
89 +
90 +pkg_postinst() {
91 + xdg_pkg_postinst
92 +
93 + ebegin "Updating list of installed extensions"
94 + eselect gnome-shell-extensions update
95 + eend $?
96 +
97 + readme.gentoo_print_elog
98 +}