Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/iw/
Date: Sat, 03 Oct 2020 11:11:53
Message-Id: 1601723505.4c622f93b6f49267eaafa028d8c5822d925454be.polynomial-c@gentoo
1 commit: 4c622f93b6f49267eaafa028d8c5822d925454be
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 3 11:11:45 2020 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 3 11:11:45 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c622f93
7
8 net-wireless/iw: Bump to version 5.9
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 net-wireless/iw/Manifest | 1 +
14 net-wireless/iw/iw-5.9.ebuild | 37 +++++++++++++++++++++++++++++++++++++
15 2 files changed, 38 insertions(+)
16
17 diff --git a/net-wireless/iw/Manifest b/net-wireless/iw/Manifest
18 index 5afc487f791..15f8c788ad5 100644
19 --- a/net-wireless/iw/Manifest
20 +++ b/net-wireless/iw/Manifest
21 @@ -1 +1,2 @@
22 DIST iw-5.4.tar.xz 136252 BLAKE2B 0e69d1520a1a41f135207affd610e84f693e744d3c7891c7efd75451df0d7aac84be71d02a72b5c08d0b8d850b29b8ed7afb4c3481ef0bd1bef98f14c3f3aaeb SHA512 84408194e5b3a2f119ae9711d856ecb4343734ebb91150e0441b2410af8f75f460ce9ab1ce7151b0dda3926270bcb80fa684058945b7549c98964a0379e39ba2
23 +DIST iw-5.9.tar.xz 145296 BLAKE2B d7abe6c65d408a7570227dbe69fe11e1d72a1f502de21d1fcb7dcff6bfe229804020d5c1ebdda42a3694e31cf87c631faf089746f8df4733b0b1a459c185e2af SHA512 08b0c8d92c7e695bb2a107b89c3cc406e8386393b65ecbf96ded6fd757043ccd12bedaa90c14138e03e53f107365d04e229633c1cfa024ecab5fe993578491be
24
25 diff --git a/net-wireless/iw/iw-5.9.ebuild b/net-wireless/iw/iw-5.9.ebuild
26 new file mode 100644
27 index 00000000000..f87a241976d
28 --- /dev/null
29 +++ b/net-wireless/iw/iw-5.9.ebuild
30 @@ -0,0 +1,37 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit toolchain-funcs
37 +
38 +DESCRIPTION="nl80211 configuration utility for wireless devices using the mac80211 stack"
39 +HOMEPAGE="https://wireless.wiki.kernel.org/en/users/Documentation/iw"
40 +SRC_URI="https://www.kernel.org/pub/software/network/${PN}/${P}.tar.xz"
41 +
42 +LICENSE="ISC"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux"
45 +IUSE=""
46 +
47 +RDEPEND="dev-libs/libnl:="
48 +DEPEND="${RDEPEND}"
49 +BDEPEND="virtual/pkgconfig"
50 +
51 +src_prepare() {
52 + default
53 + tc-export CC LD PKG_CONFIG
54 +
55 + # do not compress man pages by default.
56 + sed 's@\(iw\.8\)\.gz@\1@' -i Makefile || die
57 +}
58 +
59 +src_compile() {
60 + CFLAGS="${CFLAGS} ${CPPFLAGS}" \
61 + LDFLAGS="${CFLAGS} ${LDFLAGS}" \
62 + emake V=1
63 +}
64 +
65 +src_install() {
66 + emake V=1 DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
67 +}