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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8D881158090 for ; Fri, 20 May 2022 18:09:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D6B1EE08A0; Fri, 20 May 2022 18:09:38 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 B790AE08A0 for ; Fri, 20 May 2022 18:09:38 +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 B94F63414DA for ; Fri, 20 May 2022 18:09:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5500C46A for ; Fri, 20 May 2022 18:09:35 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1653069937.de045c154a9b7b9fc56549b12e6fa49a49336a3f.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/openssh/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/openssh/openssh-8.9_p1-r2.ebuild net-misc/openssh/openssh-9.0_p1-r1.ebuild X-VCS-Directories: net-misc/openssh/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: de045c154a9b7b9fc56549b12e6fa49a49336a3f X-VCS-Branch: master Date: Fri, 20 May 2022 18:09:35 +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: c7648a48-d95e-4ce0-9948-5f237787a9bb X-Archives-Hash: 8115ec84fca85a91cea0466593a52a0a commit: de045c154a9b7b9fc56549b12e6fa49a49336a3f Author: Arthur Zamarin gentoo org> AuthorDate: Fri May 20 18:05:37 2022 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri May 20 18:05:37 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de045c15 net-misc/openssh: format variable assignments The previous syntax, of assigning multiple times in same line might be legal for bash, but it was very confusing and breaking for the pkgcheck bash parser. Switch to a style that enables pkgcheck to parse correctly the ebuild. Acked-by: Mike Gilbert gentoo.org> Signed-off-by: Arthur Zamarin gentoo.org> net-misc/openssh/openssh-8.9_p1-r2.ebuild | 6 ++++-- net-misc/openssh/openssh-9.0_p1-r1.ebuild | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/net-misc/openssh/openssh-8.9_p1-r2.ebuild b/net-misc/openssh/openssh-8.9_p1-r2.ebuild index 7cc0b4d2528a..52bb14990c58 100644 --- a/net-misc/openssh/openssh-8.9_p1-r2.ebuild +++ b/net-misc/openssh/openssh-8.9_p1-r2.ebuild @@ -20,8 +20,10 @@ HPN_PATCHES=( ${PN}-${HPN_PV/./_}-hpn-PeakTput-${HPN_VER}.diff ) -SCTP_VER="1.2" SCTP_PATCH="${PARCH}-sctp-${SCTP_VER}.patch.xz" -X509_VER="13.3.1" X509_PATCH="${PARCH}+x509-${X509_VER}.diff.gz" +SCTP_VER="1.2" +SCTP_PATCH="${PARCH}-sctp-${SCTP_VER}.patch.xz" +X509_VER="13.3.1" +X509_PATCH="${PARCH}+x509-${X509_VER}.diff.gz" DESCRIPTION="Port of OpenBSD's free SSH release" HOMEPAGE="https://www.openssh.com/" diff --git a/net-misc/openssh/openssh-9.0_p1-r1.ebuild b/net-misc/openssh/openssh-9.0_p1-r1.ebuild index 9fc26e8968bf..25e69c941bf4 100644 --- a/net-misc/openssh/openssh-9.0_p1-r1.ebuild +++ b/net-misc/openssh/openssh-9.0_p1-r1.ebuild @@ -20,8 +20,10 @@ HPN_PATCHES=( ${PN}-${HPN_PV/./_}-hpn-PeakTput-${HPN_VER}.diff ) -SCTP_VER="1.2" SCTP_PATCH="${PARCH}-sctp-${SCTP_VER}.patch.xz" -X509_VER="13.3.2" X509_PATCH="${PARCH}+x509-${X509_VER}.diff.gz" +SCTP_VER="1.2" +SCTP_PATCH="${PARCH}-sctp-${SCTP_VER}.patch.xz" +X509_VER="13.3.2" +X509_PATCH="${PARCH}+x509-${X509_VER}.diff.gz" DESCRIPTION="Port of OpenBSD's free SSH release" HOMEPAGE="https://www.openssh.com/"