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 ED432158090 for ; Wed, 4 May 2022 05:31:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28815E0391; Wed, 4 May 2022 05:31:37 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 065A4E0391 for ; Wed, 4 May 2022 05:31:37 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 03610341853 for ; Wed, 4 May 2022 05:31:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5FE72177 for ; Wed, 4 May 2022 05:31: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: <1651642286.9d496da13dcdd0ac472eb5239185443ae124fb8a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/smartmontools/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/smartmontools/smartmontools-7.3.ebuild sys-apps/smartmontools/smartmontools-9999.ebuild X-VCS-Directories: sys-apps/smartmontools/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9d496da13dcdd0ac472eb5239185443ae124fb8a X-VCS-Branch: master Date: Wed, 4 May 2022 05:31: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: 396d2774-9a7f-4083-bce3-7175b64bd4b5 X-Archives-Hash: ba5fad8dfa713001bafb992fe7537788 commit: 9d496da13dcdd0ac472eb5239185443ae124fb8a Author: Sam James gentoo org> AuthorDate: Wed May 4 05:30:56 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 4 05:31:26 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d496da1 sys-apps/smartmontools: drop unnecessary eautoreconf Signed-off-by: Sam James gentoo.org> sys-apps/smartmontools/smartmontools-7.3.ebuild | 11 +++++++---- sys-apps/smartmontools/smartmontools-9999.ebuild | 11 +++++++---- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/sys-apps/smartmontools/smartmontools-7.3.ebuild b/sys-apps/smartmontools/smartmontools-7.3.ebuild index 121f20999873..777bbd727cb1 100644 --- a/sys-apps/smartmontools/smartmontools-7.3.ebuild +++ b/sys-apps/smartmontools/smartmontools-7.3.ebuild @@ -3,11 +3,11 @@ EAPI=7 -inherit autotools flag-o-matic systemd -if [[ ${PV} == "9999" ]] ; then +inherit flag-o-matic systemd +if [[ ${PV} == 9999 ]] ; then ESVN_REPO_URI="https://svn.code.sf.net/p/smartmontools/code/trunk/smartmontools" ESVN_PROJECT="smartmontools" - inherit subversion + inherit autotools subversion else SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos" @@ -52,7 +52,10 @@ REQUIRED_USE="( src_prepare() { default - eautoreconf + + if [[ ${PV} == 9999 ]] ; then + eautoreconf + fi } src_configure() { diff --git a/sys-apps/smartmontools/smartmontools-9999.ebuild b/sys-apps/smartmontools/smartmontools-9999.ebuild index 1c0502087af3..2ebbc1a85dc9 100644 --- a/sys-apps/smartmontools/smartmontools-9999.ebuild +++ b/sys-apps/smartmontools/smartmontools-9999.ebuild @@ -3,11 +3,11 @@ EAPI=7 -inherit autotools flag-o-matic systemd -if [[ ${PV} == "9999" ]] ; then +inherit flag-o-matic systemd +if [[ ${PV} == 9999 ]] ; then ESVN_REPO_URI="https://svn.code.sf.net/p/smartmontools/code/trunk/smartmontools" ESVN_PROJECT="smartmontools" - inherit subversion + inherit autotools subversion else SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos" @@ -52,7 +52,10 @@ REQUIRED_USE="( src_prepare() { default - eautoreconf + + if [[ ${PV} == 9999 ]] ; then + eautoreconf + fi } src_configure() {