From 38cae944d34a741f3b0ac6cb0c755b7e999cba65 Mon Sep 17 00:00:00 2001 From: thomas Date: Thu, 14 Jul 2022 13:38:21 +0200 Subject: [PATCH 1/3] lzip: raise version to 1.23 --- lzip.be0 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lzip.be0 b/lzip.be0 index f8b8fdde4..95728e46f 100755 --- a/lzip.be0 +++ b/lzip.be0 @@ -1,10 +1,10 @@ #!/usr/bin/env beesh -# BEE_VERSION lzip-1.22-0 +# BEE_VERSION lzip-1.23-0 ## The source URL(s) array # SRCURL[0]="https://download.savannah.gnu.org/releases/lzip/lzip-${PKGVERSION}.tar.gz" -SRCURL[0]="https://beehive.molgen.mpg.de/f062faf68595d594a28fade73a43c001/lzip-1.22.tar.gz" +SRCURL[0]="https://beehive.molgen.mpg.de/c47878da4af44ce7ab4115a75640a99d/lzip-1.23.tar.gz" ## enforce 'autotools' to cope with the './configure' used inhere BEE_BUILDTYPE=autotools From b5b6d8fa94ff75e4b3c8809647b3d52890e602fa Mon Sep 17 00:00:00 2001 From: thomas Date: Thu, 14 Jul 2022 14:06:51 +0200 Subject: [PATCH 2/3] lziprecover: update from 1.18 to 1.23 Fast-forward by ~5 years ... --- lziprecover.be0 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lziprecover.be0 b/lziprecover.be0 index 8e7baf534..5cef3f177 100755 --- a/lziprecover.be0 +++ b/lziprecover.be0 @@ -1,9 +1,11 @@ #!/usr/bin/env beesh -# BEE_VERSION lziprecover-1.18-0 +# BEE_VERSION lziprecover-1.23-0 ## The source URL(s) array -SRCURL[0]="https://download.savannah.gnu.org/releases/lzip/lziprecover/lziprecover-${PKGVERSION}.tar.gz" +#SRCURL[0]="https://download.savannah.gnu.org/releases/lzip/lziprecover/lziprecover-${PKGVERSION}.tar.gz" +SRCURL[0]="https://beehive.molgen.mpg.de/0268b4ba5ecdbadcfb6d3a9b5ff0aee5/lziprecover-1.23.tar.gz" + ## enforce 'autotools' to cope with the './configure' used inhere BEE_BUILDTYPE=autotools From 9d7ddfff00b45c41134d9f9dad8130e1edd5ba0e Mon Sep 17 00:00:00 2001 From: thomas Date: Thu, 14 Jul 2022 14:18:39 +0200 Subject: [PATCH 3/3] plzip: add the parallel variant of lzip plzip can be taken as an alternative to pigz. plzip additionally needs the lzlib package, which installs a small static library and a sole header file. --- lzlib.be0 | 44 ++++++++++++++++++++++++++++++++++++++++++++ plzip.be0 | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+) create mode 100755 lzlib.be0 create mode 100755 plzip.be0 diff --git a/lzlib.be0 b/lzlib.be0 new file mode 100755 index 000000000..e4700aa6e --- /dev/null +++ b/lzlib.be0 @@ -0,0 +1,44 @@ +#!/usr/bin/env beesh + +# BEE_VERSION lzlib-1.13-0 + +## The source URL(s) array +# SRCURL[0]="https://download.savannah.gnu.org/releases/lzip/lzlib-${PKGVERSION}.tar.gz" +SRCURL[0]="https://beehive.molgen.mpg.de/76748744393c000a15ded7a3e613aa79/lzlib-1.13.tar.gz" + +## enforce 'autotools' to cope with the './configure' used inhere +BEE_BUILDTYPE=autotools + +## Add URLs/pathes to patch files +# PATCHURL+=() + +## files that should not be added from the image directory. +# EXCLUDE+=() + + +## uncomment to change default +# build_in_sourcedir + +## specify different source directory +# sourcesubdir_append src + + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +#mee_configure() { +# bee_configure +#} + +#mee_build() { +# bee_build +#} + +#mee_install() { +# bee_install +#} diff --git a/plzip.be0 b/plzip.be0 new file mode 100755 index 000000000..5bec7fe87 --- /dev/null +++ b/plzip.be0 @@ -0,0 +1,44 @@ +#!/usr/bin/env beesh + +# BEE_VERSION plzip-1.10-0 + +## The source URL(s) array +# SRCURL[0]="https://download.savannah.gnu.org/releases/lzip/plzip-${PKGVERSION}.tar.gz" +SRCURL[0]="https://beehive.molgen.mpg.de/4601ee7a0a5e7a56a71b0558663d554e/plzip-1.10.tar.gz" + +## enforce 'autotools' to cope with the './configure' used inhere +BEE_BUILDTYPE=autotools + +## Add URLs/pathes to patch files +# PATCHURL+=() + +## files that should not be added from the image directory. +# EXCLUDE+=() + + +## uncomment to change default +# build_in_sourcedir + +## specify different source directory +# sourcesubdir_append src + + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +#mee_configure() { +# bee_configure +#} + +#mee_build() { +# bee_build +#} + +#mee_install() { +# bee_install +#}