Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwd/
Date: Fri, 01 Nov 2019 16:24:03
Message-Id: 1572625375.ef332c239ad8db53cb36a95ee7e7c474507bf03e.bkohler@gentoo
1 commit: ef332c239ad8db53cb36a95ee7e7c474507bf03e
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 1 15:01:57 2019 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 1 16:22:55 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef332c23
7
8 net-wireless/iwd: skip eautoreconf for release builds
9
10 Bug: https://bugs.gentoo.org/699042
11 Package-Manager: Portage-2.3.78_p4, Repoman-2.3.17_p100
12 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
13 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
14
15 net-wireless/iwd/iwd-9999.ebuild | 8 +++++---
16 1 file changed, 5 insertions(+), 3 deletions(-)
17
18 diff --git a/net-wireless/iwd/iwd-9999.ebuild b/net-wireless/iwd/iwd-9999.ebuild
19 index 72992be15e1..7f6f1bdeef4 100644
20 --- a/net-wireless/iwd/iwd-9999.ebuild
21 +++ b/net-wireless/iwd/iwd-9999.ebuild
22 @@ -2,11 +2,11 @@
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=6
26 -inherit autotools flag-o-matic linux-info systemd
27 +inherit flag-o-matic linux-info systemd
28
29 if [[ ${PV} == *9999* ]]; then
30 EGIT_REPO_URI="https://git.kernel.org/pub/scm/network/wireless/iwd.git"
31 - inherit git-r3
32 + inherit autotools git-r3
33 else
34 SRC_URI="https://www.kernel.org/pub/linux/network/wireless/${P}.tar.xz"
35 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~sparc ~x86"
36 @@ -110,7 +110,9 @@ src_unpack() {
37
38 src_prepare() {
39 default
40 - eautoreconf
41 + if [[ ${PV} == *9999* ]] ; then
42 + eautoreconf
43 + fi
44 }
45
46 src_configure() {