From e6bfe7668d4cef2a18185466c994c6e8b07e47d9 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Tue, 23 Jan 2024 09:17:39 +0800 Subject: lshw: upgrade 02.19.2 -> 02.20 Changelog: get rid of some snprintf warnings Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- meta-oe/recipes-devtools/lshw/lshw_02.19.2.bb | 43 --------------------------- meta-oe/recipes-devtools/lshw/lshw_02.20.bb | 43 +++++++++++++++++++++++++++ 2 files changed, 43 insertions(+), 43 deletions(-) delete mode 100644 meta-oe/recipes-devtools/lshw/lshw_02.19.2.bb create mode 100644 meta-oe/recipes-devtools/lshw/lshw_02.20.bb (limited to 'meta-oe/recipes-devtools') diff --git a/meta-oe/recipes-devtools/lshw/lshw_02.19.2.bb b/meta-oe/recipes-devtools/lshw/lshw_02.19.2.bb deleted file mode 100644 index f5eda17f48..0000000000 --- a/meta-oe/recipes-devtools/lshw/lshw_02.19.2.bb +++ /dev/null @@ -1,43 +0,0 @@ -DESCRIPTION = "A small tool to provide detailed information on the hardware \ -configuration of the machine. It can report exact memory configuration, \ -firmware version, mainboard configuration, CPU version and speed, cache \ -configuration, bus speed, etc. on DMI-capable or EFI systems." -SUMMARY = "Hardware lister" -HOMEPAGE = "http://ezix.org/project/wiki/HardwareLiSter" -SECTION = "console/tools" - -LICENSE = "GPL-2.0-or-later" -LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" - -COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64|riscv64).*-linux" - -PV .= "+git${SRCPV}" -SRCREV = "b4e067307906ec6f277cce5c8a882f5edd03cbbc" -SRC_URI = " \ - git://github.com/lyonel/lshw.git;protocol=https;branch=master \ - file://0001-disable-docbook2man.patch \ -" - -S = "${WORKDIR}/git" - -inherit pkgconfig - -DEPENDS = "gettext-native" - -PACKAGECONFIG ??= "zlib" -PACKAGECONFIG[sqlite] = "SQLITE=1,SQLITE=0,sqlite3" -PACKAGECONFIG[zlib] = "ZLIB=1,ZLIB=0,zlib gzip-native" - -# use the PACKAGECONFIG configurations arguments -EXTRA_OEMAKE = "${PACKAGECONFIG_CONFARGS} RPM_OPT_FLAGS='${CFLAGS}'" - -do_compile() { - # build core only - don't ship gui - oe_runmake -C src core -} - -do_install() { - oe_runmake install DESTDIR=${D} -} - -BBCLASSEXTEND = "native" diff --git a/meta-oe/recipes-devtools/lshw/lshw_02.20.bb b/meta-oe/recipes-devtools/lshw/lshw_02.20.bb new file mode 100644 index 0000000000..70ae38caa2 --- /dev/null +++ b/meta-oe/recipes-devtools/lshw/lshw_02.20.bb @@ -0,0 +1,43 @@ +DESCRIPTION = "A small tool to provide detailed information on the hardware \ +configuration of the machine. It can report exact memory configuration, \ +firmware version, mainboard configuration, CPU version and speed, cache \ +configuration, bus speed, etc. on DMI-capable or EFI systems." +SUMMARY = "Hardware lister" +HOMEPAGE = "http://ezix.org/project/wiki/HardwareLiSter" +SECTION = "console/tools" + +LICENSE = "GPL-2.0-or-later" +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" + +COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64|riscv64).*-linux" + +PV .= "+git${SRCPV}" +SRCREV = "4c6497c8b0a67cd9fa9693e9101a7cafd3297e81" +SRC_URI = " \ + git://github.com/lyonel/lshw.git;protocol=https;branch=master \ + file://0001-disable-docbook2man.patch \ +" + +S = "${WORKDIR}/git" + +inherit pkgconfig + +DEPENDS = "gettext-native" + +PACKAGECONFIG ??= "zlib" +PACKAGECONFIG[sqlite] = "SQLITE=1,SQLITE=0,sqlite3" +PACKAGECONFIG[zlib] = "ZLIB=1,ZLIB=0,zlib gzip-native" + +# use the PACKAGECONFIG configurations arguments +EXTRA_OEMAKE = "${PACKAGECONFIG_CONFARGS} RPM_OPT_FLAGS='${CFLAGS}'" + +do_compile() { + # build core only - don't ship gui + oe_runmake -C src core +} + +do_install() { + oe_runmake install DESTDIR=${D} +} + +BBCLASSEXTEND = "native" -- cgit 1.2.3-korg