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: Tue, 01 Dec 2020 22:15:33
Message-Id: 1606860922.346390c81862c7775595ac2952780e4bd0f04750.pacho@gentoo
1 commit: 346390c81862c7775595ac2952780e4bd0f04750
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 1 22:13:51 2020 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 1 22:15:22 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=346390c8
7
8 gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen: Bump
9
10 Package-Manager: Portage-3.0.9, Repoman-3.0.2
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 .../Manifest | 1 +
14 ...trol-blur-effect-on-lock-screen-20200901.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 3cb8eb87758..ececc1f3775 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-20200713.tar.gz 3431 BLAKE2B 6355135f9027d53b10ba1f02f2fdf90dc0acbd090be8905addc78f22f7b136464831985152d8a112febc8891bbd18ea42aedd8009c7db4afc52ba48b6d502511 SHA512 322da0bc511bbb6943713fd3fc3d75d8f32b9872ced9eeb611acc77756392d0b9c9dc1311bdb4e255d131637de6a17a3d0a76f1cebcc71218d67d2ef6078a4d1
23 +DIST gnome-shell-extension-control-blur-effect-on-lock-screen-20200901.tar.gz 15697 BLAKE2B e689b1cb09dd7a84b8c542a78fcc45dcf09af16725f44aa325d68009f189d4cd72ee435b8b66989cd18c6d1d33cda5d7a2408533f32a8da93a9b8cdd2f4f0bd0 SHA512 db29ea4ad68ed945857e2aef3c5afcc8449b5eb5163a7940487fa2fe174ab036a2a436a35dac345e3a3d96ec075460afe3ba48f5f460f14ed033ad5307ae5969
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-20200901.ebuild b/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/gnome-shell-extension-control-blur-effect-on-lock-screen-20200901.ebuild
26 new file mode 100644
27 index 00000000000..8d72170e4b9
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-20200901.ebuild
30 @@ -0,0 +1,56 @@
31 +# Copyright 1999-2020 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 +COMMIT="df16335b2b7f4bbbd22b9e95a16f074ae405b3a3"
40 +SRC_URI="https://github.com/PRATAP-KUMAR/Control_Blur_Effect_On_Lock_Screen/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="GPL-3+"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +
47 +# glib for glib-compile-schemas at build time, needed at runtime anyways
48 +COMMON_DEPEND="
49 + dev-libs/glib:2
50 +"
51 +RDEPEND="${COMMON_DEPEND}
52 + app-eselect/eselect-gnome-shell-extensions
53 + >=gnome-base/gnome-shell-3.36.4
54 +"
55 +DEPEND="${COMMON_DEPEND}"
56 +BDEPEND=""
57 +
58 +S="${WORKDIR}/Control_Blur_Effect_On_Lock_Screen-${COMMIT}"
59 +extension_uuid="ControlBlurEffectOnLockScreen@×××××××××××××××.fm"
60 +
61 +src_compile() { :; }
62 +
63 +src_install() {
64 + einstalldocs
65 + cd "${extension_uuid}"
66 + insinto /usr/share/glib-2.0/schemas
67 + doins schemas/*.xml
68 + rm -rf 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 +}