mirror of https://github.com/containers/conmon.git
23 lines
583 B
Bash
23 lines
583 B
Bash
#!/bin/sh -euf
|
|
set -x
|
|
|
|
if [ ! -e /usr/bin/git ]; then
|
|
dnf -y install git-core
|
|
fi
|
|
|
|
git fetch --unshallow || :
|
|
|
|
COMMIT=$(git rev-parse HEAD)
|
|
COMMIT_SHORT=$(git rev-parse --short=8 HEAD)
|
|
COMMIT_NUM=$(git rev-list HEAD --count)
|
|
COMMIT_DATE=$(date +%s)
|
|
|
|
sed "s,#COMMIT#,${COMMIT},;
|
|
s,#SHORTCOMMIT#,${COMMIT_SHORT},;
|
|
s,#COMMITNUM#,${COMMIT_NUM},;
|
|
s,#COMMITDATE#,${COMMIT_DATE}," \
|
|
contrib/spec/conmon.spec.in > contrib/spec/conmon.spec
|
|
|
|
mkdir build/
|
|
git archive --prefix "conmon-${COMMIT_SHORT}/" --format "tar.gz" HEAD -o "build/conmon-${COMMIT_SHORT}.tar.gz"
|