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-extension-control-blur-effect-on-lock-screen/
Date: Mon, 14 Jun 2021 09:09:48
Message-Id: 1623661780.736ad40e1656cf15d46f02faa39353ff84eb6d86.pacho@gentoo
1 commit: 736ad40e1656cf15d46f02faa39353ff84eb6d86
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 14 09:09:13 2021 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 14 09:09:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=736ad40e
7
8 gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen: New snapshot
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 .../Manifest | 1 +
14 ...trol-blur-effect-on-lock-screen-20210430.ebuild | 56 ++++++++++++++++++++++
15 2 files changed, 57 insertions(+)
16
17 diff --git a/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/Manifest b/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/Manifest
18 index e30fbde7c48..781efc194fc 100644
19 --- a/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/Manifest
20 +++ b/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/Manifest
21 @@ -1 +1,2 @@
22 DIST gnome-shell-extension-control-blur-effect-on-lock-screen-20201211.tar.gz 15576 BLAKE2B 142cfb895f9adf2163e36a6005e222897c18e5ca347a9e6958664226abe9f4a6dd1a616b917ccee9531d3f1c27a3e8981a1d3335795543b782736a61b115fe67 SHA512 87efd0e222ba5676caabdff5fdb365e4f769ee4ca15a4718739934b40c3616c031283a1c3883d65dfc75ea59fdb63a9eaf3522465740602f987a136de688b19f
23 +DIST gnome-shell-extension-control-blur-effect-on-lock-screen-20210430.tar.gz 14854 BLAKE2B 20f1863c14fd1f578e50fdb7d818f7fc03c60833f8129b0300a467f201788b69dc0d405eaa637bc933a3ea69ce480acbadf6dd7ad7d7f4395b814cc53665a1e3 SHA512 64ff64d88a9127d981bc9a2e58fa12d04be723aedc29e172784cdd977bab4828cc6c52a293f11216f6f034e43cef025f83c71ec3cb2ae93d6e90ed77b565c7a5
24
25 diff --git a/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/gnome-shell-extension-control-blur-effect-on-lock-screen-20210430.ebuild b/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/gnome-shell-extension-control-blur-effect-on-lock-screen-20210430.ebuild
26 new file mode 100644
27 index 00000000000..b96d7d69592
28 --- /dev/null
29 +++ b/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/gnome-shell-extension-control-blur-effect-on-lock-screen-20210430.ebuild
30 @@ -0,0 +1,56 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +inherit gnome2-utils
36 +
37 +DESCRIPTION="Control the blur effect on gnome-shell lock screen"
38 +HOMEPAGE="https://github.com/PRATAP-KUMAR/Control_Blur_Effect_On_Lock_Screen"
39 +# Updates are now in 'gnome-shell-40' branch, not 'master'
40 +COMMIT="b52b79e957222d9a4c0ece35d64fc2dd8d93347d"
41 +SRC_URI="https://github.com/PRATAP-KUMAR/Control_Blur_Effect_On_Lock_Screen/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="GPL-3+"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE=""
47 +
48 +# glib for glib-compile-schemas at build time, needed at runtime anyways
49 +COMMON_DEPEND="
50 + dev-libs/glib:2
51 +"
52 +RDEPEND="${COMMON_DEPEND}
53 + app-eselect/eselect-gnome-shell-extensions
54 + >=gnome-base/gnome-shell-40
55 +"
56 +DEPEND="${COMMON_DEPEND}"
57 +BDEPEND=""
58 +
59 +extension_uuid="ControlBlurEffectOnLockScreen@×××××××××××××××.fm"
60 +S="${WORKDIR}/Control_Blur_Effect_On_Lock_Screen-${COMMIT}/${extension_uuid}"
61 +
62 +src_compile() { :; }
63 +
64 +src_install() {
65 + einstalldocs
66 + insinto /usr/share/glib-2.0/schemas
67 + doins schemas/*.xml
68 + rm -rf LICENSE README.md schemas
69 + insinto /usr/share/gnome-shell/extensions/"${extension_uuid}"
70 + doins -r *
71 +}
72 +
73 +pkg_preinst() {
74 + gnome2_schemas_savelist
75 +}
76 +
77 +pkg_postinst() {
78 + gnome2_schemas_update
79 + ebegin "Updating list of installed extensions"
80 + eselect gnome-shell-extensions update
81 + eend $?
82 +}
83 +
84 +pkg_postrm() {
85 + gnome2_schemas_update
86 +}