From e1414a8f43755b59409ddb4b3af4b0265dfc7b7d Mon Sep 17 00:00:00 2001 From: DaanSelen <80752476+DaanSelen@users.noreply.github.com> Date: Wed, 22 Oct 2025 22:48:10 +0200 Subject: [PATCH] chore(pkg): update nwipe version to 0.39 (#380) * chore: bump nwipe * chore: clean the .mk file of nwipe * chore: update .mk and .hash files * chore: add tar.gz into gitignore * chore: try to integrate https://github.com/PartialVolume/shredos.x86_64/pull/322 * Revert "chore: try to integrate https://github.com/PartialVolume/shredos.x86_64/pull/322" This reverts commit 6a4ad199ea64bb39dd44a014ddc369dd323d13ad. * chore: bump image name * Revert "chore: bump image name" This reverts commit ec70d375b5be56706be81bb024d69ce1087d95e0. --------- Co-authored-by: Daan Selen --- .gitignore | 3 ++- package/nwipe/nwipe.hash | 2 +- package/nwipe/nwipe.mk | 12 +++++++----- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index fd05562182..99af9bdeda 100644 --- a/.gitignore +++ b/.gitignore @@ -13,4 +13,5 @@ *.rej *~ *.pyc -.DS_Store \ No newline at end of file +.DS_Store +*.tar.gz diff --git a/package/nwipe/nwipe.hash b/package/nwipe/nwipe.hash index 568f62d6bb..b46c89c34d 100644 --- a/package/nwipe/nwipe.hash +++ b/package/nwipe/nwipe.hash @@ -1 +1 @@ -sha1 9df9abe27302c73c856f78e5650b5be211b81d5f nwipe-v0.38.tar.gz +sha1 62adb09d04c8de18848efde4834115b7731a1c22 v0.39.tar.gz diff --git a/package/nwipe/nwipe.mk b/package/nwipe/nwipe.mk index 3c76710dfe..53217e9072 100644 --- a/package/nwipe/nwipe.mk +++ b/package/nwipe/nwipe.mk @@ -4,15 +4,17 @@ # ################################################################################ -NWIPE_VERSION = v0.38 -NWIPE_SITE = $(call github,martijnvanbrummelen,nwipe,$(NWIPE_VERSION)) +NWIPE_VERSION = 0.39 +NWIPE_SOURCE = v$(NWIPE_VERSION).tar.gz +NWIPE_SITE = https://github.com/martijnvanbrummelen/nwipe/archive/refs/tags + NWIPE_DEPENDENCIES = ncurses parted dmidecode coreutils define NWIPE_INITSH - (cd $(@D) && cp ../../../package/nwipe/002-nwipe-banner-patch.sh $(@D) && ./002-nwipe-banner-patch.sh && PATH="../../host/bin:${PATH}" ./autogen.sh); + (cd $(@D) && cp ../../../package/nwipe/002-nwipe-banner-patch.sh $(@D) && ./002-nwipe-banner-patch.sh && PATH="../../host/bin:${PATH}" ./autogen.sh); endef -NWIPE_POST_PATCH_HOOKS += NWIPE_INITSH - +#NWIPE_POST_PATCH_HOOKS += NWIPE_INITSH +NWIPE_PRE_CONFIGURE_HOOKS += NWIPE_INITSH $(eval $(autotools-package))