Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 766612
Collapse All | Expand All

(-)a/net-wireless/wireless-regdb/Manifest (+1 lines)
Lines 1-2 Link Here
1
DIST wireless-regdb-2019.03.01.tar.xz 23196 BLAKE2B 804ad05a0270df58dd89eb7193f8b568b5534abfc52b35f519e27cfa1f1922db457c77477b3014bd6b48cdd1bbe9e859a6508afa848cf01efbbf6b20d10c4984 SHA512 f0b94e1f661d86f4fcd39384588e10d7353ad085563ddc40a98446b416ce0d7bd0cbe34f1d9620ac45a33f16b7bfe58419da915061942cd5f51d5a3bf9809d72
1
DIST wireless-regdb-2019.03.01.tar.xz 23196 BLAKE2B 804ad05a0270df58dd89eb7193f8b568b5534abfc52b35f519e27cfa1f1922db457c77477b3014bd6b48cdd1bbe9e859a6508afa848cf01efbbf6b20d10c4984 SHA512 f0b94e1f661d86f4fcd39384588e10d7353ad085563ddc40a98446b416ce0d7bd0cbe34f1d9620ac45a33f16b7bfe58419da915061942cd5f51d5a3bf9809d72
2
DIST wireless-regdb-2019.06.03.tar.xz 23176 BLAKE2B 46ed9c25103a57d2370f07035f27ffd89d6a65cdccb22d283aef524aff60b669f21dd4a4dd78c68229a443640a5fd0faa1ad6917e712181881d4b27ead74f480 SHA512 73209ca28c59d6760349ffb713f550300e80db1592bae52b6d252ac9401fa2bb2ace7e6c30cf55df7541da9cef4c8587f3790f7aa34529552468e4b63a3d8fdb
2
DIST wireless-regdb-2019.06.03.tar.xz 23176 BLAKE2B 46ed9c25103a57d2370f07035f27ffd89d6a65cdccb22d283aef524aff60b669f21dd4a4dd78c68229a443640a5fd0faa1ad6917e712181881d4b27ead74f480 SHA512 73209ca28c59d6760349ffb713f550300e80db1592bae52b6d252ac9401fa2bb2ace7e6c30cf55df7541da9cef4c8587f3790f7aa34529552468e4b63a3d8fdb
3
DIST wireless-regdb-2020.11.20.tar.xz 24840 BLAKE2B b2db70097db43710cc2b6d8966b5c6d4d910a704a87a0bc979667bfd293d8baa402677b5e5bc0fcc4f49647ede4cd6bc3e17d41288f41e58c5c6cf3b968489a9 SHA512 93764e677c4d5cdcb4e927bff206c646061fe1e65896dd63f683e145d45917545b4e08caa14bfb3ea04ffb85438935503bbde386cbabfef2804905e508ecf7a0
(-)a/net-wireless/wireless-regdb/wireless-regdb-20201120.ebuild (-1 / +38 lines)
Line 0 Link Here
0
- 
1
# Copyright 1999-2021 Gentoo Authors
2
# Distributed under the terms of the GNU General Public License v2
3
4
EAPI=7
5
6
MY_P="wireless-regdb-${PV:0:4}.${PV:4:2}.${PV:6:2}"
7
DESCRIPTION="Binary regulatory database for CRDA"
8
HOMEPAGE="https://wireless.kernel.org/en/developers/Regulatory"
9
SRC_URI="https://www.kernel.org/pub/software/network/${PN}/${MY_P}.tar.xz"
10
11
LICENSE="ISC"
12
SLOT="0"
13
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
14
15
S="${WORKDIR}/${MY_P}"
16
17
src_compile() {
18
	einfo "Recompiling regulatory.bin from db.txt would break CRDA verify. Installing unmodified binary version."
19
}
20
21
src_install() {
22
	# This file is not ABI-specific, and crda itself always hardcodes
23
	# this path.  So install into a common location for all ABIs to use.
24
	insinto /usr/lib/crda
25
	doins regulatory.bin
26
27
	insinto /etc/wireless-regdb/pubkeys
28
	doins sforshee.key.pub.pem
29
30
	# Linux 4.15 now complains if the firmware loader
31
	# can't find these files #643520
32
	insinto /lib/firmware
33
	doins regulatory.db
34
	doins regulatory.db.p7s
35
36
	doman regulatory.bin.5
37
	dodoc README db.txt
38
}

Return to bug 766612