From 2fede655ded755b52187d12a1da4d860233842f9 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sun, 22 Mar 2020 14:27:24 +0200 Subject: [PATCH] zstd: new package at 1.4.4 Looks like we'll be forced to include zstd in the near future. Software releases over the past few months have included zstd support with more software to follow (non-optionally). The GNU autotools suite has added support for creating dist tarballs with zstd as the compression method. We may start to see release tarballs of software compressed with zstd. ccache will use zstd in the next major release and this is a mandatory change. It cannot be avoided or disabled. We'd need zstd to continue to keep ccache up-to-date (important). GCC 10, GRUB and other software have received optional support for zstd. These may be made mandatory in the future, it's too early to tell. Basically, a mandatory requirement on zstd is coming for some software. This commit just readies KISS for the future though I would have preferred to not include it at all (similar reasoning to Debian). --- extra/zstd/build | 4 ++++ extra/zstd/checksums | 1 + extra/zstd/sources | 1 + extra/zstd/version | 1 + 4 files changed, 7 insertions(+) create mode 100755 extra/zstd/build create mode 100644 extra/zstd/checksums create mode 100644 extra/zstd/sources create mode 100644 extra/zstd/version diff --git a/extra/zstd/build b/extra/zstd/build new file mode 100755 index 00000000..954aa1f3 --- /dev/null +++ b/extra/zstd/build @@ -0,0 +1,4 @@ +#!/bin/sh -e + +make +make PREFIX=/usr DESTDIR="$1" install diff --git a/extra/zstd/checksums b/extra/zstd/checksums new file mode 100644 index 00000000..cdf81c5e --- /dev/null +++ b/extra/zstd/checksums @@ -0,0 +1 @@ +59ef70ebb757ffe74a7b3fe9c305e2ba3350021a918d168a046c6300aeea9315 zstd-1.4.4.tar.gz diff --git a/extra/zstd/sources b/extra/zstd/sources new file mode 100644 index 00000000..a07cc933 --- /dev/null +++ b/extra/zstd/sources @@ -0,0 +1 @@ +https://github.com/facebook/zstd/releases/download/v1.4.4/zstd-1.4.4.tar.gz diff --git a/extra/zstd/version b/extra/zstd/version new file mode 100644 index 00000000..b21a163a --- /dev/null +++ b/extra/zstd/version @@ -0,0 +1 @@ +1.4.4 1