Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] dracut: update to 059
@ 2023-01-18 13:31 LaszloGombos
  2023-01-18 13:34 ` [PR PATCH] [Updated] " LaszloGombos
                   ` (52 more replies)
  0 siblings, 53 replies; 54+ messages in thread
From: LaszloGombos @ 2023-01-18 13:31 UTC (permalink / raw)
  To: ml

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

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

https://github.com/LaszloGombos/void-packages master
https://github.com/void-linux/void-packages/pull/41716

dracut: update to 059
#### Testing the changes
- I tested the changes in this PR: **briefly**

I hope others from the community can help testing as well.

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

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

From dbe6e5b139448a2f122583a71dfa6537b9135270 Mon Sep 17 00:00:00 2001
From: Laszlo Gombos <laszlo.gombos@gmail.com>
Date: Wed, 18 Jan 2023 13:29:38 +0000
Subject: [PATCH] dracut: update to 059

---
 srcpkgs/dracut/patches/kmod-fix.patch        | 15 ---------------
 srcpkgs/dracut/patches/musl-__wordsize.patch | 15 ---------------
 srcpkgs/dracut/template                      | 11 +++++------
 3 files changed, 5 insertions(+), 36 deletions(-)
 delete mode 100644 srcpkgs/dracut/patches/kmod-fix.patch
 delete mode 100644 srcpkgs/dracut/patches/musl-__wordsize.patch

diff --git a/srcpkgs/dracut/patches/kmod-fix.patch b/srcpkgs/dracut/patches/kmod-fix.patch
deleted file mode 100644
index fcde1eb76dc4..000000000000
--- a/srcpkgs/dracut/patches/kmod-fix.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-The depmod program from kmod>=30 looks for modules.builtin.modinfo and throws a
-warning when it isn't found. Newer versions of dracut pull in this file as well
-as modules.builtin.alias, so let's pull this in here and avoid the warning.
-
---- a/dracut-init.sh
-+++ b/dracut-init.sh
-@@ -982,7 +982,7 @@
- }
- 
- dracut_kernel_post() {
--    for _f in modules.builtin.bin modules.builtin modules.order; do
-+    for _f in modules.builtin.{bin,alias,modinfo} modules.builtin modules.order; do
-         [[ -e $srcmods/$_f ]] && inst_simple "$srcmods/$_f" "/lib/modules/$kernel/$_f"
-     done
- 
diff --git a/srcpkgs/dracut/patches/musl-__wordsize.patch b/srcpkgs/dracut/patches/musl-__wordsize.patch
deleted file mode 100644
index 7a8b40a29034..000000000000
--- a/srcpkgs/dracut/patches/musl-__wordsize.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-For musl libc it is required to include <sys/reg.h> to
-have __WORDSIZE defined to e.g. 32 for arm*-musl.
-
---- a/install/util.h	2015-06-15 12:27:21.000000000 +0200
-+++ b/install/util.h	2015-09-02 09:07:57.321104222 +0200
-@@ -33,6 +33,9 @@
- #include <signal.h>
- #include <sched.h>
- #include <limits.h>
-+#if !defined(__GLIBC__)
-+#include <sys/reg.h>
-+#endif
- #include <sys/stat.h>
- #include <dirent.h>
- #include <sys/resource.h>
diff --git a/srcpkgs/dracut/template b/srcpkgs/dracut/template
index f490f37b3cf0..055dbe1e3d58 100644
--- a/srcpkgs/dracut/template
+++ b/srcpkgs/dracut/template
@@ -1,8 +1,7 @@
 # Template file for 'dracut'
 pkgname=dracut
-reverts="056_1"
-version=053
-revision=6
+version=059
+revision=1
 build_style=configure
 configure_args="--prefix=/usr --sysconfdir=/etc"
 conf_files="/etc/dracut.conf"
@@ -12,9 +11,9 @@ depends="bash coreutils cpio eudev gzip kmod>=3.7 kpartx util-linux"
 short_desc="Low-level tool for generating an initramfs/initrd image"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later, LGPL-2.0-or-later"
-homepage="http://www.kernel.org/pub/linux/utils/boot/dracut/dracut.html"
-distfiles="${KERNEL_SITE}/utils/boot/dracut/dracut-${version}.tar.xz"
-checksum=d5a1b47cdb07919d8225d5b5f538e6ae604988f3df0afbde99a8dc775277b726
+homepage="https://github.com/dracutdevs/dracut/wiki"
+distfiles="https://github.com/dracutdevs/dracut/archive/refs/tags/${version}.tar.xz"
+checksum=eabf0bb685420c1e1d5475b6855ef787104508f0135ff570312845256e0fcecf
 alternatives="
  initramfs:/etc/kernel.d/post-install/20-initramfs:/usr/libexec/dracut/kernel-hook-postinst
  initramfs:/etc/kernel.d/post-remove/20-initramfs:/usr/libexec/dracut/kernel-hook-postrm

^ permalink raw reply	[flat|nested] 54+ messages in thread

end of thread, other threads:[~2023-03-02  1:30 UTC | newest]

Thread overview: 54+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-18 13:31 [PR PATCH] dracut: update to 059 LaszloGombos
2023-01-18 13:34 ` [PR PATCH] [Updated] " LaszloGombos
2023-01-18 13:38 ` LaszloGombos
2023-01-18 13:42 ` LaszloGombos
2023-01-18 13:56 ` LaszloGombos
2023-01-18 14:02 ` LaszloGombos
2023-01-18 15:21 ` motorto
2023-01-18 16:15 ` [PR PATCH] [Updated] " LaszloGombos
2023-01-18 17:06 ` zdykstra
2023-01-18 17:25 ` [PR PATCH] [Updated] " LaszloGombos
2023-01-18 17:27 ` LaszloGombos
2023-01-18 17:31 ` zdykstra
2023-01-18 17:58 ` classabbyamp
2023-01-18 17:59 ` classabbyamp
2023-01-18 17:59 ` classabbyamp
2023-01-18 18:01 ` classabbyamp
2023-01-18 18:02 ` classabbyamp
2023-01-18 18:05 ` classabbyamp
2023-01-18 18:31 ` LaszloGombos
2023-01-18 18:32 ` LaszloGombos
2023-01-18 18:52 ` LaszloGombos
2023-01-18 20:16 ` LaszloGombos
2023-01-18 20:28 ` LaszloGombos
2023-01-18 21:00 ` [PR PATCH] [Updated] " LaszloGombos
2023-01-18 21:01 ` LaszloGombos
2023-01-18 21:22 ` zdykstra
2023-01-18 21:34 ` [PR PATCH] [Updated] " LaszloGombos
2023-01-18 21:35 ` LaszloGombos
2023-01-18 21:44 ` LaszloGombos
2023-01-19  0:12 ` mhmdanas
2023-01-19  0:58 ` [PR PATCH] [Updated] " LaszloGombos
2023-01-19  3:02 ` LaszloGombos
2023-01-19  3:05 ` LaszloGombos
2023-01-19  3:26 ` LaszloGombos
2023-01-19  5:07 ` [PR REVIEW] " ahesford
2023-01-19  5:25 ` ahesford
2023-01-19 17:37 ` [PR PATCH] [Updated] " LaszloGombos
2023-01-19 17:38 ` [PR REVIEW] " LaszloGombos
2023-01-19 18:03 ` [PR PATCH] [Updated] " ahesford
2023-01-19 18:05 ` [PR REVIEW] " ahesford
2023-01-19 18:05 ` ahesford
2023-01-19 19:10 ` [PR PATCH] [Updated] " LaszloGombos
2023-01-19 19:41 ` [PR REVIEW] " LaszloGombos
2023-01-19 20:13 ` classabbyamp
2023-01-19 20:16 ` [PR REVIEW] " ahesford
2023-01-19 20:30 ` [PR PATCH] [Updated] " LaszloGombos
2023-01-19 20:30 ` [PR REVIEW] " LaszloGombos
2023-01-19 20:33 ` [PR PATCH] [Updated] " LaszloGombos
2023-01-21 14:49 ` motorto
2023-01-22  1:52 ` classabbyamp
2023-01-22  1:55 ` classabbyamp
2023-01-22  2:55 ` [PR PATCH] [Merged]: " ahesford
2023-03-02  1:22 ` LaszloGombos
2023-03-02  1:30 ` zdykstra

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).