46 lines
1.0 KiB
Bash
46 lines
1.0 KiB
Bash
|
#!/bin/sh
|
||
|
|
||
|
user="tianocore"
|
||
|
repo="edk2"
|
||
|
branch="master"
|
||
|
|
||
|
uri="https://github.com/${user}/${repo}"
|
||
|
api="${uri/github.com/api.github.com/repos}"
|
||
|
tar="${uri/github.com/codeload.github.com}/legacy.tar.gz"
|
||
|
|
||
|
hash=$(curl -s "${api}/git/refs/heads/${branch}" | grep '"sha"' | cut -d'"' -f4)
|
||
|
if test "$hash" = ""; then
|
||
|
echo "# failed to fetch $branch hash"
|
||
|
exit 1
|
||
|
fi
|
||
|
short=$(echo $hash | sed -e 's/^\(.......\).*/\1/')
|
||
|
|
||
|
date=$(curl -s "${api}/git/commits/$hash" | awk '
|
||
|
/"committer"/ { c=1 }
|
||
|
/"date"/ { if (c) { print } }
|
||
|
' | cut -d'"' -f4)
|
||
|
date="${date%T*}"
|
||
|
date="${date//-/}"
|
||
|
|
||
|
name="${repo}-${date}-${short}.tar.gz"
|
||
|
|
||
|
if test -f "$name"; then
|
||
|
echo "# exists: $name"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
echo
|
||
|
echo "# specfile update: version $date, release $short"
|
||
|
sed -i.old \
|
||
|
-e "s/\(%global edk2_date[ \t]\+\)\(.*\)/\1$date/" \
|
||
|
-e "s/\(%global edk2_githash[ \t]\+\)\(.*\)/\1$short/" \
|
||
|
edk2.spec
|
||
|
diff -u edk2.spec.old edk2.spec
|
||
|
|
||
|
echo
|
||
|
echo "# cleanup ..."
|
||
|
rm -vf ${repo}-*.tar*
|
||
|
echo "# fetching $name ..."
|
||
|
curl "$tar/$hash" > "$name"
|
||
|
exit 0
|