From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9B0141382C5 for ; Mon, 21 Dec 2020 22:42:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E438BE0AAD; Mon, 21 Dec 2020 22:42:40 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D0D36E0AAD for ; Mon, 21 Dec 2020 22:42:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DE32134154C for ; Mon, 21 Dec 2020 22:42:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9146D3FB for ; Mon, 21 Dec 2020 22:42:38 +0000 (UTC) From: "Jian Lin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jian Lin" Message-ID: <1608589506.cfd0b7cb4794a27854881320104566015699b83c.jian@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: x11-misc/betterlockscreen_rapid/ X-VCS-Repository: repo/proj/guru X-VCS-Files: x11-misc/betterlockscreen_rapid/betterlockscreen_rapid-9999.ebuild X-VCS-Directories: x11-misc/betterlockscreen_rapid/ X-VCS-Committer: jian X-VCS-Committer-Name: Jian Lin X-VCS-Revision: cfd0b7cb4794a27854881320104566015699b83c X-VCS-Branch: dev Date: Mon, 21 Dec 2020 22:42:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3b91b2b8-44bd-4408-89fe-8c37a3c75360 X-Archives-Hash: 73652343dd0af95321e5ec4487624bec commit: cfd0b7cb4794a27854881320104566015699b83c Author: Jian Lin outlook com> AuthorDate: Mon Dec 21 22:25:06 2020 +0000 Commit: Jian Lin outlook com> CommitDate: Mon Dec 21 22:25:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cfd0b7cb x11-misc/betterlockscreen_rapid: improve live ebuild improve live ebuild: - don't use ${HOMEPAGE} in EGIT_REPO_URI - don't use ${PN} in src_install Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Jian Lin outlook.com> .../betterlockscreen_rapid/betterlockscreen_rapid-9999.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/x11-misc/betterlockscreen_rapid/betterlockscreen_rapid-9999.ebuild b/x11-misc/betterlockscreen_rapid/betterlockscreen_rapid-9999.ebuild index 055a321c..58fcaecc 100644 --- a/x11-misc/betterlockscreen_rapid/betterlockscreen_rapid-9999.ebuild +++ b/x11-misc/betterlockscreen_rapid/betterlockscreen_rapid-9999.ebuild @@ -2,15 +2,15 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit git-r3 DESCRIPTION="A rapid and good-looking screen locker" HOMEPAGE="https://github.com/oakszyjrnrdy/betterlockscreen_rapid" -EGIT_REPO_URI="${HOMEPAGE}" +EGIT_REPO_URI="https://github.com/oakszyjrnrdy/betterlockscreen_rapid.git" LICENSE="MIT" SLOT="0" -KEYWORDS="" RDEPEND=" x11-misc/i3lock-color @@ -18,7 +18,7 @@ RDEPEND=" " src_install() { - dobin "${PN}" + dobin betterlockscreen_rapid insinto /etc - doins "${PN}.conf" + doins betterlockscreen_rapid.conf }