1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-28 13:56:37 +02:00

core: remove build of .bz2 and .zst files in make dist

This commit is contained in:
Sébastien Helleu
2023-03-25 10:36:48 +01:00
parent a2ddfdf5a6
commit 2550153f26
2 changed files with 4 additions and 9 deletions
+1
View File
@@ -63,6 +63,7 @@ Build::
* core: remove build with autotools (issue #1860)
* core: remove RPM packaging
* core: remove build of .bz2 and .zst files in `make dist`
[[v3.8]]
== Version 3.8 (2023-01-08)
+3 -9
View File
@@ -19,15 +19,15 @@
#
#
# Build gzip/bzip2/xz tarballs for WeeChat using git-archive.
# Build compressed tarballs for WeeChat using git-archive.
#
# Syntax: makedist.sh [<version> [<tree-ish> [<path>]]]
#
# Optional arguments:
#
# version WeeChat version, for example 1.6 or 1.7-dev
# version WeeChat version, for example 4.0.0 or 4.1.0-dev
# defaults to current devel version (output of "version.sh devel-full")
# tree-ish git tree-ish, example: v1.6
# tree-ish git tree-ish, example: v4.0.0
# defaults to "HEAD"
# path where to put packages
# defaults to current directory
@@ -69,11 +69,5 @@ FILE="${OUTPATH}/weechat-${VERSION}.tar"
echo "Building package ${FILE}.gz"
git archive --prefix="${PREFIX}" "${TREEISH}" | gzip -c >"${FILE}.gz"
echo "Building package ${FILE}.bz2"
git archive --prefix="${PREFIX}" "${TREEISH}" | bzip2 -c >"${FILE}.bz2"
echo "Building package ${FILE}.xz"
git archive --prefix="${PREFIX}" "${TREEISH}" | xz -c >"${FILE}.xz"
echo "Building package ${FILE}.zst"
git archive --prefix="${PREFIX}" "${TREEISH}" | zstd -c -15 >"${FILE}.zst"