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 727A713835A for ; Fri, 11 Jun 2021 02:07:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 361FCE089A; Fri, 11 Jun 2021 02:07:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 1EBC1E089A for ; Fri, 11 Jun 2021 02:07:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 B011333DE47 for ; Fri, 11 Jun 2021 02:07:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0CAFE7AB for ; Fri, 11 Jun 2021 02:07:34 +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: <1623377162.ddc94ea52b95a8274768f178b9a5390602b72a75.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/zfs-kmod/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/zfs-kmod/zfs-kmod-2.1.0_rc7.ebuild sys-fs/zfs-kmod/zfs-kmod-9999.ebuild X-VCS-Directories: sys-fs/zfs-kmod/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ddc94ea52b95a8274768f178b9a5390602b72a75 X-VCS-Branch: master Date: Fri, 11 Jun 2021 02:07:34 +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: 78728f8e-2e94-4f55-85da-a8db99b4e3d3 X-Archives-Hash: f89bdaf35f4eac1df76c7d282a0a7804 commit: ddc94ea52b95a8274768f178b9a5390602b72a75 Author: Sam James gentoo org> AuthorDate: Fri Jun 11 02:06:02 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jun 11 02:06:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddc94ea5 sys-fs/zfs-kmod: run eautoreconf unconditionally Bug: https://bugs.gentoo.org/792627 Signed-off-by: Sam James gentoo.org> sys-fs/zfs-kmod/zfs-kmod-2.1.0_rc7.ebuild | 7 ++++--- sys-fs/zfs-kmod/zfs-kmod-9999.ebuild | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/sys-fs/zfs-kmod/zfs-kmod-2.1.0_rc7.ebuild b/sys-fs/zfs-kmod/zfs-kmod-2.1.0_rc7.ebuild index 34cc83a6093..27cf80ed430 100644 --- a/sys-fs/zfs-kmod/zfs-kmod-2.1.0_rc7.ebuild +++ b/sys-fs/zfs-kmod/zfs-kmod-2.1.0_rc7.ebuild @@ -106,9 +106,10 @@ pkg_setup() { src_prepare() { default - if [[ ${PV} == "9999" ]]; then - eautoreconf - else + # Run unconditionally (bug #792627) + eautoreconf + + if [[ ${PV} != "9999" ]]; then # Set module revision number sed -i "s/\(Release:\)\(.*\)1/\1\2${PR}-gentoo/" META || die "Could not set Gentoo release" fi diff --git a/sys-fs/zfs-kmod/zfs-kmod-9999.ebuild b/sys-fs/zfs-kmod/zfs-kmod-9999.ebuild index 34cc83a6093..27cf80ed430 100644 --- a/sys-fs/zfs-kmod/zfs-kmod-9999.ebuild +++ b/sys-fs/zfs-kmod/zfs-kmod-9999.ebuild @@ -106,9 +106,10 @@ pkg_setup() { src_prepare() { default - if [[ ${PV} == "9999" ]]; then - eautoreconf - else + # Run unconditionally (bug #792627) + eautoreconf + + if [[ ${PV} != "9999" ]]; then # Set module revision number sed -i "s/\(Release:\)\(.*\)1/\1\2${PR}-gentoo/" META || die "Could not set Gentoo release" fi