commit: aabb91093d59afc2e8a900724ef489eb1f279051 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Oct 11 10:43:43 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Oct 11 10:54:01 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aabb9109
sys-apps/hwdata: add 0.400 Signed-off-by: Sam James <sam <AT> gentoo.org> sys-apps/hwdata/Manifest | 1 + sys-apps/hwdata/hwdata-0.400.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/sys-apps/hwdata/Manifest b/sys-apps/hwdata/Manifest index 9da4c37cf9e8..884105a21679 100644 --- a/sys-apps/hwdata/Manifest +++ b/sys-apps/hwdata/Manifest @@ -1,3 +1,4 @@ DIST hwdata-0.391.tar.gz 2479872 BLAKE2B 478d60635f338770751bf4b437f33ba0666b4c3d70d9c726c8e124c44e6d6f5a96ba96b63ae64a151732ca7607676aaccefc7a61c89cee584696b699b3234019 SHA512 9b831a7546ac6ca457b92bf438ba84d6487980b15a304af78ba8738cc456e02a62b1d19a849573ed596c85a3fbbc88ca305e5e4c665f27e8d75454be41d708f0 DIST hwdata-0.398.tar.gz 2531820 BLAKE2B 415cf2e0e1735c4b0a2186421e85186f20ae3b165a8224923ef24471b98f3f923484072702c2f0c21dffe98ad2144459e14f2829b77c110e2397141da2bde676 SHA512 ede23b1acf25444ed859d296ebd29cf630da3b07203ec49e536fda0726c3af04afcdcd4a45b142931036e9650780c29011e0c7e2f0fb23a8fdb9b48bcd2e0caa DIST hwdata-0.399.tar.gz 2531799 BLAKE2B d4acfe75acf4e4a2feb43f9ebdbb013be8c85f70f292a54f0e058801266b53c03d82e4efa45dc25dcfcdfac8416b37eebb3c50448eb3291837762db3d1526137 SHA512 2a4ea986e5eae4c909ec875df2eecee120fb003fdfff0061649e6c88bb79d42cd9555f551933d3eab41375d5dd9937a1c0d6276b89b10ede7598cb133633ca2e +DIST hwdata-0.400.tar.gz 2531836 BLAKE2B 40adc56864974dc68fd407980b3a071d2715d3aac80ec8812ad955bbd5462cef92a7dc4bf156c4e8da0395b53da29430db815f522cc8fcef1098cd33540828e5 SHA512 4aabdcb05b7c412f9c307f24f58fd1710cac6dc62f763b8c7eb490a2b2b02d6060cafba2de157ba43326b7259fa15653557525fdefb104db075e78980ce1833f diff --git a/sys-apps/hwdata/hwdata-0.400.ebuild b/sys-apps/hwdata/hwdata-0.400.ebuild new file mode 100644 index 000000000000..145dcd2debbe --- /dev/null +++ b/sys-apps/hwdata/hwdata-0.400.ebuild @@ -0,0 +1,28 @@ +# Copyright 2022-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit edo + +DESCRIPTION="Hardware identification and configuration data" +HOMEPAGE="https://github.com/vcrhonek/hwdata" +SRC_URI="https://github.com/vcrhonek/hwdata/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + +RESTRICT="test" + +src_configure() { + # configure is not compatible with econf + local conf=( + ./configure + --prefix="${EPREFIX}/usr" + --libdir="${EPREFIX}/lib" + --datadir="${EPREFIX}/usr/share" + ) + + edo "${conf[@]}" +}
