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 6a4ad199ea.

* chore: bump image name

* Revert "chore: bump image name"

This reverts commit ec70d375b5.

---------

Co-authored-by: Daan Selen <dselen@systemec.nl>
This commit is contained in:
DaanSelen
2025-10-22 22:48:10 +02:00
committed by GitHub
parent 09b9d853b7
commit e1414a8f43
3 changed files with 10 additions and 7 deletions

3
.gitignore vendored
View File

@@ -13,4 +13,5 @@
*.rej
*~
*.pyc
.DS_Store
.DS_Store
*.tar.gz

View File

@@ -1 +1 @@
sha1 9df9abe27302c73c856f78e5650b5be211b81d5f nwipe-v0.38.tar.gz
sha1 62adb09d04c8de18848efde4834115b7731a1c22 v0.39.tar.gz

View File

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