Github messages for voidlinux
 help / color / mirror / Atom feed
From: vimalamp <vimalamp@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: [PR PATCH] Removing fwupdate package because the project was abandoned
Date: Sat, 11 Apr 2020 02:11:43 +0200	[thread overview]
Message-ID: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-20859@inbox.vuxu.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 512 bytes --]

There is a new pull request by vimalamp against master on the void-packages repository

https://github.com/vimalamp/void-packages master
https://github.com/void-linux/void-packages/pull/20859

Removing fwupdate package because the project was abandoned
Removing fwupdate package. Abandoned project based on https://github.com/rhboot/fwupdate/pull/136. Fixes issue https://github.com/void-linux/void-packages/issues/20776

A patch file from https://github.com/void-linux/void-packages/pull/20859.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-master-20859.patch --]
[-- Type: text/x-diff, Size: 3525 bytes --]

From 81d8e1a769428e7909676aa6c2631ba12eaa0993 Mon Sep 17 00:00:00 2001
From: user <irchello@gmail.com>
Date: Fri, 10 Apr 2020 14:07:32 -1000
Subject: [PATCH] Removing fwupdate package. Abandoned project based on
 rhboot/fwupdate#136. Fixes issue
 https://github.com/void-linux/void-packages/issues/20776

---
 srcpkgs/fwupdate/INSTALL.msg                 |  4 --
 srcpkgs/fwupdate/patches/musl-strndupa.patch | 18 -------
 srcpkgs/fwupdate/template                    | 53 --------------------
 3 files changed, 75 deletions(-)
 delete mode 100644 srcpkgs/fwupdate/INSTALL.msg
 delete mode 100644 srcpkgs/fwupdate/patches/musl-strndupa.patch
 delete mode 100644 srcpkgs/fwupdate/template

diff --git a/srcpkgs/fwupdate/INSTALL.msg b/srcpkgs/fwupdate/INSTALL.msg
deleted file mode 100644
index 0116decaa53..00000000000
--- a/srcpkgs/fwupdate/INSTALL.msg
+++ /dev/null
@@ -1,4 +0,0 @@
-
-TO use the EFI firmware update executable, copy the /usr/lib/fwupdate/EFI
-folder to your EFI partition
-
diff --git a/srcpkgs/fwupdate/patches/musl-strndupa.patch b/srcpkgs/fwupdate/patches/musl-strndupa.patch
deleted file mode 100644
index 3e487113f71..00000000000
--- a/srcpkgs/fwupdate/patches/musl-strndupa.patch
+++ /dev/null
@@ -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"
- 
diff --git a/srcpkgs/fwupdate/template b/srcpkgs/fwupdate/template
deleted file mode 100644
index e00c79225b9..00000000000
--- a/srcpkgs/fwupdate/template
+++ /dev/null
@@ -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
-	}
-}

             reply	other threads:[~2020-04-11  0:11 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-11  0:11 vimalamp [this message]
2020-04-12  9:09 ` [PR PATCH] [Merged]: " Hoshpak

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-20859@inbox.vuxu.org \
    --to=vimalamp@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).