From 09ab19a69692176946a9594e69e35bc6605bd106 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 24 Feb 2020 11:54:15 -0500 Subject: bzip2: add script to import bzip2 from upstream --- Utilities/Scripts/update-bzip2.bash | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 Utilities/Scripts/update-bzip2.bash diff --git a/Utilities/Scripts/update-bzip2.bash b/Utilities/Scripts/update-bzip2.bash new file mode 100755 index 0000000..dc8dc02 --- /dev/null +++ b/Utilities/Scripts/update-bzip2.bash @@ -0,0 +1,27 @@ +#!/usr/bin/env bash + +set -e +set -x +shopt -s dotglob + +readonly name="bzip2" +readonly ownership="bzip2 upstream " +readonly subtree="Utilities/cmbzip2" +readonly repo="https://sourceware.org/git/bzip2.git" +readonly tag="bzip2-1.0.5" +readonly shortlog=false +readonly paths=" + LICENSE + README + *.c + *.h +" + +extract_source () { + git_archive + pushd "${extractdir}/${name}-reduced" + echo "* -whitespace" > .gitattributes + popd +} + +. "${BASH_SOURCE%/*}/update-third-party.bash" -- cgit v0.12