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 59834138350 for ; Wed, 12 Feb 2020 00:26:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D8E8E08C4; Wed, 12 Feb 2020 00:25:59 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 3FFA9E08C4 for ; Wed, 12 Feb 2020 00:25:59 +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 48FB434EC05 for ; Wed, 12 Feb 2020 00:25:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 58661116 for ; Wed, 12 Feb 2020 00:25:55 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1581467140.f7f755690f196dc3aa10a4a83f9a7f3bd0e739a3.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dialup/freeradius/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dialup/freeradius/freeradius-3.0.20.ebuild X-VCS-Directories: net-dialup/freeradius/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: f7f755690f196dc3aa10a4a83f9a7f3bd0e739a3 X-VCS-Branch: master Date: Wed, 12 Feb 2020 00:25:55 +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: 281eed19-63f4-40b3-9395-282adaa48b8d X-Archives-Hash: e3ddbea275af8ec725a1c6f01bcbc08d commit: f7f755690f196dc3aa10a4a83f9a7f3bd0e739a3 Author: Matt Turner gentoo org> AuthorDate: Wed Feb 12 00:16:04 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Feb 12 00:25:40 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7f75569 net-dialup/freeradius: Apply patches earlier src_prepare() selectively deletes subdirectories depending on USE flags since configure.ac does not offer configurable switches. If a patch applies changes to a directory that may be deleted, then src_prepare() can fail depending on the USE flags that are set. This was the case with USE=-python. Avoid this possibility by applying patches before deleting directories. Signed-off-by: Matt Turner gentoo.org> net-dialup/freeradius/freeradius-3.0.20.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/net-dialup/freeradius/freeradius-3.0.20.ebuild b/net-dialup/freeradius/freeradius-3.0.20.ebuild index 533b388bf6c..5d43f28c636 100644 --- a/net-dialup/freeradius/freeradius-3.0.20.ebuild +++ b/net-dialup/freeradius/freeradius-3.0.20.ebuild @@ -90,6 +90,7 @@ src_prepare() { # not interested in using. eapply_user + default use ssl || { rm -r src/modules/rlm_eap/types/rlm_eap_{tls,ttls,peap} || die ; } use ldap || { rm -r src/modules/rlm_ldap || die ; } @@ -158,8 +159,6 @@ src_prepare() { usesqldriver sqlite usesqldriver mongodb mongo - default - eautoreconf }