Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: x11-misc/betterlockscreen_rapid/
Date: Tue, 22 Dec 2020 13:06:55
Message-Id: 1608589506.cfd0b7cb4794a27854881320104566015699b83c.andrewammerlaan@gentoo
1 commit: cfd0b7cb4794a27854881320104566015699b83c
2 Author: Jian Lin <jlin.gentoo <AT> outlook <DOT> com>
3 AuthorDate: Mon Dec 21 22:25:06 2020 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Mon Dec 21 22:25:06 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cfd0b7cb
7
8 x11-misc/betterlockscreen_rapid: improve live ebuild
9
10 improve live ebuild:
11 - don't use ${HOMEPAGE} in EGIT_REPO_URI
12 - don't use ${PN} in src_install
13
14 Package-Manager: Portage-3.0.9, Repoman-3.0.2
15 Signed-off-by: Jian Lin <jlin.gentoo <AT> outlook.com>
16
17 .../betterlockscreen_rapid/betterlockscreen_rapid-9999.ebuild | 8 ++++----
18 1 file changed, 4 insertions(+), 4 deletions(-)
19
20 diff --git a/x11-misc/betterlockscreen_rapid/betterlockscreen_rapid-9999.ebuild b/x11-misc/betterlockscreen_rapid/betterlockscreen_rapid-9999.ebuild
21 index 055a321c..58fcaecc 100644
22 --- a/x11-misc/betterlockscreen_rapid/betterlockscreen_rapid-9999.ebuild
23 +++ b/x11-misc/betterlockscreen_rapid/betterlockscreen_rapid-9999.ebuild
24 @@ -2,15 +2,15 @@
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=7
28 +
29 inherit git-r3
30
31 DESCRIPTION="A rapid and good-looking screen locker"
32 HOMEPAGE="https://github.com/oakszyjrnrdy/betterlockscreen_rapid"
33 -EGIT_REPO_URI="${HOMEPAGE}"
34 +EGIT_REPO_URI="https://github.com/oakszyjrnrdy/betterlockscreen_rapid.git"
35
36 LICENSE="MIT"
37 SLOT="0"
38 -KEYWORDS=""
39
40 RDEPEND="
41 x11-misc/i3lock-color
42 @@ -18,7 +18,7 @@ RDEPEND="
43 "
44
45 src_install() {
46 - dobin "${PN}"
47 + dobin betterlockscreen_rapid
48 insinto /etc
49 - doins "${PN}.conf"
50 + doins betterlockscreen_rapid.conf
51 }