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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 304EA1581EC for ; Sat, 23 Nov 2024 16:54:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D417FE0829; Sat, 23 Nov 2024 16:54:47 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B8E28E0829 for ; Sat, 23 Nov 2024 16:54:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D484C34131D for ; Sat, 23 Nov 2024 16:54:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 75A8C1E15 for ; Sat, 23 Nov 2024 16:54:45 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1732380844.ff33eb6f5fb5988a4563810346f347876c069857.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/tinyssh/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/tinyssh/tinyssh-20241111.ebuild net-misc/tinyssh/tinyssh-99999999.ebuild X-VCS-Directories: net-misc/tinyssh/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ff33eb6f5fb5988a4563810346f347876c069857 X-VCS-Branch: master Date: Sat, 23 Nov 2024 16:54:45 +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: f1255cf5-5812-4f26-8d65-d9b0c27b1cc8 X-Archives-Hash: a1960c1466da7f9aefa364cd6e5e8d7f commit: ff33eb6f5fb5988a4563810346f347876c069857 Author: Sam James gentoo org> AuthorDate: Sat Nov 23 16:48:44 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Nov 23 16:54:04 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff33eb6f net-misc/tinyssh: small style tweaks Not invasive ones, more general Gentoo style ones: * use 'local i' * use ${x} And add a missing die. Signed-off-by: Sam James gentoo.org> net-misc/tinyssh/tinyssh-20241111.ebuild | 5 +++-- net-misc/tinyssh/tinyssh-99999999.ebuild | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/net-misc/tinyssh/tinyssh-20241111.ebuild b/net-misc/tinyssh/tinyssh-20241111.ebuild index 07aeb225e8ec..e1c07e90c588 100644 --- a/net-misc/tinyssh/tinyssh-20241111.ebuild +++ b/net-misc/tinyssh/tinyssh-20241111.ebuild @@ -31,7 +31,7 @@ RDEPEND=" src_prepare() { default - echo 'gentoo-autoheaders: $(AUTOHEADERS)' >> Makefile + echo 'gentoo-autoheaders: $(AUTOHEADERS)' >> Makefile || die } src_configure() { @@ -46,6 +46,7 @@ src_configure() { emake gentoo-autoheaders + local i for i in has*.log do einfo "$i" @@ -55,7 +56,7 @@ src_configure() { src_install() { einstalldocs - emake install DESTDIR="$D" PREFIX=/usr + emake install DESTDIR="${D}" PREFIX=/usr newinitd "${FILESDIR}/${PN}.initd" "${PN}" newconfd "${FILESDIR}/${PN}.confd" "${PN}" diff --git a/net-misc/tinyssh/tinyssh-99999999.ebuild b/net-misc/tinyssh/tinyssh-99999999.ebuild index 07aeb225e8ec..e1c07e90c588 100644 --- a/net-misc/tinyssh/tinyssh-99999999.ebuild +++ b/net-misc/tinyssh/tinyssh-99999999.ebuild @@ -31,7 +31,7 @@ RDEPEND=" src_prepare() { default - echo 'gentoo-autoheaders: $(AUTOHEADERS)' >> Makefile + echo 'gentoo-autoheaders: $(AUTOHEADERS)' >> Makefile || die } src_configure() { @@ -46,6 +46,7 @@ src_configure() { emake gentoo-autoheaders + local i for i in has*.log do einfo "$i" @@ -55,7 +56,7 @@ src_configure() { src_install() { einstalldocs - emake install DESTDIR="$D" PREFIX=/usr + emake install DESTDIR="${D}" PREFIX=/usr newinitd "${FILESDIR}/${PN}.initd" "${PN}" newconfd "${FILESDIR}/${PN}.confd" "${PN}"