Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
hwdata: Update to 0.394, fix build failure
- Update pci, usb and vendor ids.
- Patch Makefile to omit install -T argument until uutils-coreutils is
  fixed upstream (PR here: uutils/coreutils#7867)

Signed-off-by: Rune Morling <ermo@serpentos.com>
  • Loading branch information
ermo committed May 1, 2025
commit 542d1053529f777c934aa6f8b857dd7801ed98e7
Binary file modified h/hwdata/manifest.x86_64.bin
Binary file not shown.
4 changes: 2 additions & 2 deletions h/hwdata/manifest.x86_64.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@
}
},
"source-name": "hwdata",
"source-release": "13",
"source-version": "0.387"
"source-release": "14",
"source-version": "0.394"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/Makefile b/Makefile
index afa929d..96e83e0 100644
--- a/Makefile
+++ b/Makefile
@@ -50,7 +50,7 @@ install: Makefile.inc hwdata.pc
done
@if [ "$(blacklist)" = true ]; then \
mkdir -p -m 755 $(DESTDIR)$(libdir)/modprobe.d ;\
- install -m 644 -T blacklist.conf $(DESTDIR)$(libdir)/modprobe.d/dist-blacklist.conf ;\
+ install -m 644 blacklist.conf $(DESTDIR)$(libdir)/modprobe.d/dist-blacklist.conf ;\
fi;
mkdir -p -m 755 $(DESTDIR)$(datadir)/pkgconfig
install -m 644 hwdata.pc $(DESTDIR)$(datadir)/pkgconfig/
8 changes: 5 additions & 3 deletions h/hwdata/stone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,19 @@
# SPDX-License-Identifier: MPL-2.0
#
name : hwdata
version : 0.387
release : 13
version : 0.394
release : 14
homepage : https://github.com/vcrhonek/hwdata
upstreams :
- https://github.com/vcrhonek/hwdata/archive/refs/tags/v0.387.tar.gz : 8c6be8f0863a8ff5c83b2c46aa525b503b30d42792ed57891c40849de543e1ee
- https://github.com/vcrhonek/hwdata/archive/refs/tags/v0.394.tar.gz : b7c3fd7214a3b7c49d2661db127a712dc11cffd1799f793947aa1cb20aaf3298
summary : Hardware identification + configuration data
description : |
hwdata contains various hardware identification and configuration data, such as the pci.ids and usb.ids databases.
license :
- GPL-2.0-or-later
setup : |
# Upstream PR here: https://github.com/uutils/coreutils/pull/7867
%patch %(pkgdir)/remove-unsupported-in-uutils-coreutils-install-T-argument.patch
%configure
build : |
%make
Expand Down