Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/hwdata/
Date: Thu, 03 Nov 2022 06:15:20
Message-Id: 1667455511.33dbff10ac6d8cd37e02acdeea53acd9ec3e7bef.sam@gentoo
1 commit: 33dbff10ac6d8cd37e02acdeea53acd9ec3e7bef
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 3 05:31:06 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 3 06:05:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33dbff10
7
8 sys-apps/hwdata: add 0.364
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 sys-apps/hwdata/Manifest | 1 +
13 sys-apps/hwdata/hwdata-0.364.ebuild | 28 ++++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/sys-apps/hwdata/Manifest b/sys-apps/hwdata/Manifest
17 index 3a55e5d95ac5..fed9069f87a6 100644
18 --- a/sys-apps/hwdata/Manifest
19 +++ b/sys-apps/hwdata/Manifest
20 @@ -1,2 +1,3 @@
21 DIST hwdata-0.361.tar.gz 2263204 BLAKE2B 83f613dd75e677bb25e884c00e8c32aa97e1b030ac8642df2c35f895df815bf6b8c3333a150c448fb6a14a8cf6c6cec9ef351896a5762a45ea99c34c39790213 SHA512 942cf6fa17c2f6fa41d7c624aa7fd28d57d6ad7750eb7a01c8ce85a663154140af75108a8ab12d43375bae63574a594ea2117195a743c12e5c4cb2986f198454
22 DIST hwdata-0.363.tar.gz 2283349 BLAKE2B dd7aa9c7d202882a31a5359cf674c9399b23b07f47d2fa706739201f60227922572619cef42f50835c4a01efab19773e24b0540a87f759b805755389f8d6f7f4 SHA512 b53ffad2bdeea1ac8c78832e693c44655dc86c401a3f6921ccedf45a88731d82b40b2f033bb90bcaa058b1b3e8361a90aa4eeba9779ee4741efc40ae8ff6282a
23 +DIST hwdata-0.364.tar.gz 2290206 BLAKE2B f41fbc85fffa0561ccee55c2bbb9c32f2f67532dd2cd8c3731a2805712969a5950f31b4e5662adf3b55c6226c31cb00f0670af4a1fbff1a7c19d46ba067792fd SHA512 94cae67d9155b7abbaa7fc9047702a6f166721477b6320736d7984efd7c7c3c028b9f794269750f0ef421275a7e243fe1ae59816f63576fffc1bcd8deb49c6e9
24
25 diff --git a/sys-apps/hwdata/hwdata-0.364.ebuild b/sys-apps/hwdata/hwdata-0.364.ebuild
26 new file mode 100644
27 index 000000000000..9df06b92fe5f
28 --- /dev/null
29 +++ b/sys-apps/hwdata/hwdata-0.364.ebuild
30 @@ -0,0 +1,28 @@
31 +# Copyright 2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit edo
37 +
38 +DESCRIPTION="Hardware identification and configuration data"
39 +HOMEPAGE="https://github.com/vcrhonek/hwdata"
40 +SRC_URI="https://github.com/vcrhonek/hwdata/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="GPL-2+"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
45 +
46 +RESTRICT="test"
47 +
48 +src_configure() {
49 + # configure is not compatible with econf
50 + local conf=(
51 + ./configure
52 + --prefix="${EPREFIX}/usr"
53 + --libdir="${EPREFIX}/lib"
54 + --datadir="${EPREFIX}/usr/share"
55 + )
56 +
57 + edo "${conf[@]}"
58 +}