diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:49:25 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:49:25 +0000 |
commit | 464df1d5e5ab1322e2dd0a7796939fff1aeefa9a (patch) | |
tree | 6a403684e0978f0287d7f0ec0e5aab1fd31a59e1 /util/gen-git-tarball | |
parent | Initial commit. (diff) | |
download | e2fsprogs-464df1d5e5ab1322e2dd0a7796939fff1aeefa9a.tar.xz e2fsprogs-464df1d5e5ab1322e2dd0a7796939fff1aeefa9a.zip |
Adding upstream version 1.47.0.upstream/1.47.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'util/gen-git-tarball')
-rwxr-xr-x | util/gen-git-tarball | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/util/gen-git-tarball b/util/gen-git-tarball new file mode 100755 index 0000000..a959c4a --- /dev/null +++ b/util/gen-git-tarball @@ -0,0 +1,17 @@ +#!/bin/bash +# +# Generate the e2fsprogs release tar ball +# + +commit=HEAD + +if test -n "$1" ; then + commit="$1" +fi + +ver=`git show ${commit}:version.h | grep E2FSPROGS_VERSION \ + | awk '{print $3}' | tr \" " " | awk '{print $1}'` +fn=e2fsprogs-${ver}.tar.gz + +git archive --prefix=e2fsprogs-${ver}/ ${commit} | gzip -9n > $fn +echo "Generated $fn" |