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: Tue, 01 Feb 2022 04:23:27
Message-Id: 1643689256.0a17c5e2419015d42ff122f669f7008e3d8373bf.sam@gentoo
1 commit: 0a17c5e2419015d42ff122f669f7008e3d8373bf
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 1 04:20:56 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 1 04:20:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a17c5e2
7
8 sys-apps/hwdata: add 0.355
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 sys-apps/hwdata/Manifest | 1 +
13 sys-apps/hwdata/hwdata-0.355.ebuild | 25 +++++++++++++++++++++++++
14 2 files changed, 26 insertions(+)
15
16 diff --git a/sys-apps/hwdata/Manifest b/sys-apps/hwdata/Manifest
17 index ddc6cb5044b6..33bfdb10afb1 100644
18 --- a/sys-apps/hwdata/Manifest
19 +++ b/sys-apps/hwdata/Manifest
20 @@ -1,2 +1,3 @@
21 DIST hwdata-0.353.tar.gz 2206215 BLAKE2B e1c30d7d486a2f03eb8b59dfc12544a5e5a988295d5dc220e2d6a344991c62d8ded0e8e71a8b0907fb9fb7fe0bac8528386cc4665c903362db6ed6f0a6985b94 SHA512 f4bdea533a1cdf406d065da6a684b131b30f6a0b8fb791418d54b756c9297da981a8e25e128ef97af50ae88553e1473dba17a29c11a15490065faf9bf2dcd0d4
22 DIST hwdata-0.354.tar.gz 2212834 BLAKE2B 5df04fd6069e131be7195b515f4f7273e28030d46823fa3054371f9afde4eb9976df2663bc7d31d056cb718a479630676f05459064decd59914f3a69bcfb03f1 SHA512 07bbe5137f35c0402029e066e90a29da1ca95faa6996a192b1f9ac00568e5020cc540b642ad2b22b25c2cfa0d7e4c2d7b80c9978ca0cd091691d8f1cf2933915
23 +DIST hwdata-0.355.tar.gz 2220329 BLAKE2B 2374aa2c87b39181c251ad39d87d10ffa1ac3987de6bd4e8e0d2318ec13ecf0127998c9ca4dafd76076bedefd7f4c263df5a1bf1acad3e926887503d2acf34ca SHA512 d2141b1ae9dc582a2c1c820d5bd0a1532323ba8b5b09cff06863419a70500593b8e4636224e129848e605feafa267f11c5040af7bb2f5f101d812025324f0b0d
24
25 diff --git a/sys-apps/hwdata/hwdata-0.355.ebuild b/sys-apps/hwdata/hwdata-0.355.ebuild
26 new file mode 100644
27 index 000000000000..6ad75332f251
28 --- /dev/null
29 +++ b/sys-apps/hwdata/hwdata-0.355.ebuild
30 @@ -0,0 +1,25 @@
31 +# Copyright 2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DESCRIPTION="Hardware identification and configuration data"
37 +HOMEPAGE="https://github.com/vcrhonek/hwdata"
38 +SRC_URI="https://github.com/vcrhonek/hwdata/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
39 +
40 +LICENSE="GPL-2+"
41 +SLOT="0"
42 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
43 +RESTRICT="test"
44 +
45 +src_configure() {
46 + # configure is not compatible with econf
47 + local conf=(
48 + ./configure
49 + --prefix="${EPREFIX}/usr"
50 + --libdir="${EPREFIX}/lib"
51 + --datadir="${EPREFIX}/usr/share"
52 + )
53 + echo "${conf[@]}" >&2
54 + "${conf[@]}" || die
55 +}