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:
@@ -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
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user