Removing fwupdate package. Abandoned project based on rhboot/fwupdate#136. Fixes issue https://github.com/void-linux/void-packages/issues/20776

This commit is contained in:
user 2020-04-10 14:07:32 -10:00 committed by Helmut Pozimski
parent 63882ad642
commit 11cc381d75
3 changed files with 0 additions and 75 deletions

View File

@ -1,4 +0,0 @@
TO use the EFI firmware update executable, copy the /usr/lib/fwupdate/EFI
folder to your EFI partition

View File

@ -1,18 +0,0 @@
--- linux/libfwup.c
+++ linux/libfwup.c
@@ -30,6 +30,15 @@
#include "ucs2.h"
#include "fwup-efi.h"
+#ifndef strndupa
+#define strndupa(s, n) \
+ (__extension__ ({const char *__in = (s); \
+ size_t __len = strnlen (__in, (n)) + 1; \
+ char *__out = (char *) alloca (__len); \
+ __out[__len-1] = '\0'; \
+ (char *) memcpy (__out, __in, __len-1);}))
+#endif
+
static int verbose;
#include "error.h"

View File

@ -1,53 +0,0 @@
# Template file for 'fwupdate'
pkgname=fwupdate
version=12
revision=1
archs="x86_64* i686* aarch64* arm*"
build_style=gnu-makefile
make_install_args="EFIDIR=void LIBDIR=/usr/lib"
make_build_args="EFIDIR=void GNUEFIDIR=/usr/lib"
hostmakedepends="pkg-config"
makedepends="elfutils-devel gnu-efi-libs libefivar-devel popt-devel"
checkdepends="libabigail-tools"
short_desc="Tool for using the ESRT and UpdateCapsule() to apply firmware updates"
maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-2.0-or-later"
homepage="https://github.com/rhboot/fwupdate"
distfiles="https://github.com/rhboot/fwupdate/releases/download/${version}/fwupdate-${version}.tar.bz2"
checksum=4167d569f14e00ecf620c369ab34709e4bb1574ed588ef2e2398667e9e968703
nocross="fails to find efi.h"
case "$XBPS_TARGET_MACHINE" in
x86_64|i686) makedepends+=" libsmbios-devel" ;;
esac
do_check() {
EFIDIR=void make abicheck
}
post_install() {
vmkdir usr/lib/fwupdate
mv "${DESTDIR}"/boot/efi/EFI "${DESTDIR}"/usr/lib/fwupdate/EFI
rm -rf "${DESTDIR}"/boot
rm -rf "${DESTDIR}"/usr/src
rm -rf "${DESTDIR}"/usr/lib/debug
rm -rf "${DESTDIR}"/usr/lib/systemd
}
libfwup_package() {
short_desc+=" - fwupdate library"
pkg_install() {
vmove "usr/lib/libfwup.so.*"
}
}
fwupdate-devel_package() {
depends="libfwup-${version}_${revision} libefivar-devel"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/lib/libfwup.so
vmove usr/share/man/man3
}
}