diff options
author | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2021-10-04 02:40:42 +0200 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2021-10-04 02:45:58 +0200 |
commit | 0ff2ae5c23195ba8257102853c0226305b54948d (patch) | |
tree | 56cad6370e2b40e16ce56c2515ad21b1a057b166 | |
parent | 618a63e23e29443a13089b9c31f2ce3a32e559b1 (diff) |
All pre-make and compression tarballs now in unified format
Following the discussion in Task #15699 [1], all software that come
into Maneage will be archived in a unified format. To do this, the
downloaded tarball from each software's webpage (or the version we
already had) was put in an 'orig' directory, then the following two
commands were run (for example for xz version 5.2.5):
$ name=xz-5.2.5
$ tar xf orig/$name.tar.gz \
&& tar -c -Hustar --owner=root --group=root \
-f $name.tar $name/ \
&& lzip $name.tar \
&& rm -r $name/
But besides the formatting, the top directory within the tarballs is
now always just the name of the tarball without the 'tar.lz'. While
most software already follow that convention, some (like Zip or Unzip)
didn't. So they have also been corrected.
As one exception, for now, Make has not been updated because it would
have the same file name as before and we don't want to break any
dependencies (by modifying it, and thus its checksum). I tried
bootstrapping Make's latest commit (so the version identifier can be
different), but there was a bug when building the latest version on my
computer and it has been reported to its developers [2].
[1] https://savannah.nongnu.org/task/?15699
[2] https://lists.gnu.org/archive/html/bug-make/2021-10/msg00002.html
-rw-r--r-- | bzip2-1.0.8.tar.lz | bin | 0 -> 680942 bytes |
-rw-r--r-- | dash-0.5.11.5.tar.lz | bin | 0 -> 184396 bytes |
-rw-r--r-- | flock-0.4.0.tar.lz | bin | 0 -> 108128 bytes |
-rw-r--r-- | gzip-1.11.tar.lz | bin | 0 -> 822257 bytes |
-rw-r--r-- | lzip-1.22.tar | bin | 0 -> 450560 bytes |
-rw-r--r-- | tar-1.34.tar.lz | bin | 0 -> 2287654 bytes |
-rw-r--r-- | unzip-6.0.tar.lz | bin | 0 -> 899185 bytes |
-rw-r--r-- | xz-5.2.5.tar.lz | bin | 0 -> 1172663 bytes |
-rw-r--r-- | zip-3.0.tar.lz | bin | 0 -> 781750 bytes |
-rw-r--r-- | zlib-1.2.11.tar.lz | bin | 0 -> 477243 bytes |
10 files changed, 0 insertions, 0 deletions
diff --git a/bzip2-1.0.8.tar.lz b/bzip2-1.0.8.tar.lz Binary files differnew file mode 100644 index 0000000..e841d36 --- /dev/null +++ b/bzip2-1.0.8.tar.lz diff --git a/dash-0.5.11.5.tar.lz b/dash-0.5.11.5.tar.lz Binary files differnew file mode 100644 index 0000000..662a856 --- /dev/null +++ b/dash-0.5.11.5.tar.lz diff --git a/flock-0.4.0.tar.lz b/flock-0.4.0.tar.lz Binary files differnew file mode 100644 index 0000000..1aa0b1b --- /dev/null +++ b/flock-0.4.0.tar.lz diff --git a/gzip-1.11.tar.lz b/gzip-1.11.tar.lz Binary files differnew file mode 100644 index 0000000..b19b87c --- /dev/null +++ b/gzip-1.11.tar.lz diff --git a/lzip-1.22.tar b/lzip-1.22.tar Binary files differnew file mode 100644 index 0000000..e809e47 --- /dev/null +++ b/lzip-1.22.tar diff --git a/tar-1.34.tar.lz b/tar-1.34.tar.lz Binary files differnew file mode 100644 index 0000000..e6ec931 --- /dev/null +++ b/tar-1.34.tar.lz diff --git a/unzip-6.0.tar.lz b/unzip-6.0.tar.lz Binary files differnew file mode 100644 index 0000000..c1595cf --- /dev/null +++ b/unzip-6.0.tar.lz diff --git a/xz-5.2.5.tar.lz b/xz-5.2.5.tar.lz Binary files differnew file mode 100644 index 0000000..6e2e706 --- /dev/null +++ b/xz-5.2.5.tar.lz diff --git a/zip-3.0.tar.lz b/zip-3.0.tar.lz Binary files differnew file mode 100644 index 0000000..92c469b --- /dev/null +++ b/zip-3.0.tar.lz diff --git a/zlib-1.2.11.tar.lz b/zlib-1.2.11.tar.lz Binary files differnew file mode 100644 index 0000000..9dd9b74 --- /dev/null +++ b/zlib-1.2.11.tar.lz |