You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
634 B
36 lines
634 B
#!/bin/sh -e
|
|
|
|
_version="$1"
|
|
|
|
echo "Clean up sources"
|
|
rm -rf cockpit
|
|
|
|
echo "Cloning cockpit.git"
|
|
git clone https://github.com/cockpit-project/cockpit.git
|
|
cd cockpit
|
|
|
|
echo -n "Checking tag ${_version}... "
|
|
if ! git tag | grep -w ${_version}; then
|
|
echo "fail"
|
|
exit 1
|
|
else
|
|
echo "ok"
|
|
fi
|
|
|
|
echo "Checkout tag ${_version}"
|
|
git checkout ${_version}
|
|
|
|
echo "Patching souurces"
|
|
git am ../000*.patch
|
|
|
|
echo "Fix version in tools/make-dist"
|
|
sed -i "s@VERSION=\"\$(git describe.*@VERSION=${_version}@" tools/make-dist
|
|
|
|
echo "Make dist"
|
|
tools/make-dist
|
|
|
|
cd ..
|
|
|
|
cp cockpit/tmp/build-dist/cockpit-300.3.tar.xz .
|
|
sha1sum cockpit-300.3.tar.xz
|