2011-03-25 19:56:25 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2013-04-09 13:12:11 +00:00
|
|
|
# 2011-2013 Nico Schottelius (nico-cdist at schottelius.org)
|
2011-03-25 19:56:25 +00:00
|
|
|
#
|
|
|
|
# This file is part of cdist.
|
|
|
|
#
|
|
|
|
# cdist is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# cdist is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
#
|
2013-06-03 20:29:49 +00:00
|
|
|
# This file contains the heavy lifting found usually in the Makefile
|
2011-03-25 19:56:25 +00:00
|
|
|
#
|
2011-03-20 02:23:13 +00:00
|
|
|
|
2013-06-20 07:24:05 +00:00
|
|
|
basedir=${0%/*}/../
|
|
|
|
# Change to checkout directory
|
|
|
|
cd "$basedir"
|
|
|
|
|
|
|
|
version=$(git describe)
|
2011-11-16 07:10:50 +00:00
|
|
|
|
2013-07-09 13:32:10 +00:00
|
|
|
option=$1; shift
|
|
|
|
|
|
|
|
case "$option" in
|
2012-11-07 11:12:26 +00:00
|
|
|
changelog-changes)
|
2013-07-09 13:32:10 +00:00
|
|
|
if [ "$#" -eq 1 ]; then
|
|
|
|
start=$1
|
|
|
|
else
|
|
|
|
start="[[:digit:]]"
|
|
|
|
fi
|
|
|
|
|
|
|
|
end="[[:digit:]]"
|
|
|
|
|
|
|
|
awk -F: "BEGIN { start=0 }
|
|
|
|
{
|
|
|
|
if(start == 0) {
|
|
|
|
if (\$0 ~ /^$start/) {
|
|
|
|
start = 1
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (\$0 ~ /^$end/) {
|
|
|
|
exit
|
|
|
|
} else {
|
|
|
|
print \$0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}" "$basedir/docs/changelog"
|
2012-10-26 16:20:09 +00:00
|
|
|
;;
|
|
|
|
|
2012-10-26 16:35:47 +00:00
|
|
|
changelog-version)
|
2013-07-09 13:32:10 +00:00
|
|
|
# get version from changelog
|
2012-10-26 16:35:47 +00:00
|
|
|
grep '^[[:digit:]]' "$basedir/docs/changelog" | head -n1 | sed 's/:.*//'
|
|
|
|
;;
|
|
|
|
|
2013-06-03 20:29:49 +00:00
|
|
|
check-date)
|
2013-07-09 13:32:10 +00:00
|
|
|
# verify date in changelog is today
|
2012-10-26 16:35:47 +00:00
|
|
|
date_today="$(date +%Y-%m-%d)"
|
|
|
|
date_changelog=$(grep '^[[:digit:]]' "$basedir/docs/changelog" | head -n1 | sed 's/.*: //')
|
|
|
|
|
|
|
|
if [ "$date_today" != "$date_changelog" ]; then
|
|
|
|
echo "Date in changelog is not today"
|
|
|
|
echo "Changelog: $date_changelog"
|
|
|
|
exit 1
|
|
|
|
fi
|
2012-10-25 16:28:19 +00:00
|
|
|
;;
|
2011-03-25 21:10:52 +00:00
|
|
|
|
2013-07-09 13:32:10 +00:00
|
|
|
check-unittest)
|
|
|
|
"$0" test
|
|
|
|
;;
|
|
|
|
|
2012-11-07 11:12:26 +00:00
|
|
|
blog)
|
2013-07-09 13:32:10 +00:00
|
|
|
version=$1; shift
|
|
|
|
blogfile=$1; shift
|
2013-07-09 13:46:57 +00:00
|
|
|
dir=${blogfile%/*}
|
|
|
|
file=${blogfile##*/}
|
|
|
|
|
2013-07-09 13:32:10 +00:00
|
|
|
|
2012-11-07 11:12:26 +00:00
|
|
|
cat << eof > "$blogfile"
|
|
|
|
[[!meta title="Cdist $version released"]]
|
|
|
|
|
2013-07-03 20:33:48 +00:00
|
|
|
Here's a short overview about the changes found in version ${version}:
|
2012-11-07 11:12:26 +00:00
|
|
|
|
|
|
|
eof
|
|
|
|
|
2013-07-09 13:46:57 +00:00
|
|
|
$0 changelog-changes "$version" >> "$blogfile"
|
2012-11-07 11:12:26 +00:00
|
|
|
|
|
|
|
cat << eof >> "$blogfile"
|
|
|
|
For more information visit the [[cdist homepage|software/cdist]].
|
|
|
|
|
|
|
|
[[!tag cdist config unix]]
|
|
|
|
eof
|
2013-07-09 13:46:57 +00:00
|
|
|
cd "$dir"
|
2012-11-07 11:12:26 +00:00
|
|
|
git add "$file"
|
2013-07-09 13:46:57 +00:00
|
|
|
# Allow git commit to fail if there are no changes
|
|
|
|
git commit -m "cdist blog update: $version" "$blogfile" || true
|
2012-11-07 11:12:26 +00:00
|
|
|
;;
|
|
|
|
|
2013-07-09 15:22:56 +00:00
|
|
|
ml-release)
|
2014-05-04 08:37:32 +00:00
|
|
|
if [ $# -ne 1 ]; then
|
|
|
|
echo "$0 ml-release version" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2013-07-09 15:22:56 +00:00
|
|
|
version=$1; shift
|
2013-07-09 13:32:10 +00:00
|
|
|
|
2012-11-07 11:12:26 +00:00
|
|
|
to_a=cdist
|
|
|
|
to_d=l.schottelius.org
|
|
|
|
to=${to_a}@${to_d}
|
|
|
|
|
|
|
|
from_a=nico-cdist
|
|
|
|
from_d=schottelius.org
|
|
|
|
from=${from_a}@${from_d}
|
|
|
|
|
|
|
|
(
|
|
|
|
cat << eof
|
|
|
|
From: Nico -telmich- Schottelius <$from>
|
|
|
|
To: cdist mailing list <$to>
|
2012-11-07 11:13:06 +00:00
|
|
|
Subject: cdist $version released
|
2012-11-07 11:12:26 +00:00
|
|
|
|
|
|
|
Hello .*,
|
|
|
|
|
|
|
|
cdist $version has been released with the following changes:
|
|
|
|
|
|
|
|
eof
|
|
|
|
|
2013-07-09 15:22:56 +00:00
|
|
|
"$0" changelog-changes "$version"
|
2012-11-07 11:12:26 +00:00
|
|
|
cat << eof
|
|
|
|
|
|
|
|
Cheers,
|
|
|
|
|
|
|
|
Nico
|
|
|
|
|
|
|
|
--
|
|
|
|
Automatisation at its best level. With cdist.
|
|
|
|
eof
|
|
|
|
) | /usr/sbin/sendmail -f "$from" "$to"
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
2013-09-04 20:33:26 +00:00
|
|
|
release-git-tag)
|
|
|
|
target_version=$($0 changelog-version)
|
2014-03-19 17:58:54 +00:00
|
|
|
if git rev-parse --verify refs/tags/$target_version 2>/dev/null; then
|
2013-09-04 20:33:26 +00:00
|
|
|
echo "Tag for $target_version exists, aborting"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
printf "Enter tag description for ${target_version}: "
|
|
|
|
read tagmessage
|
2016-07-10 19:17:42 +00:00
|
|
|
|
|
|
|
# setup for signed tags:
|
|
|
|
# gpg --fulL-gen-key
|
|
|
|
# gpg --list-secret-keys --keyid-format LONG
|
|
|
|
# git config --local user.signingkey <id>
|
|
|
|
# for exporting pub key:
|
|
|
|
# gpg --armor --export <id> > pubkey.asc
|
|
|
|
# gpg --output pubkey.gpg --export <id>
|
|
|
|
# show tag with signature
|
|
|
|
# git show <tag>
|
|
|
|
# verify tag signature
|
|
|
|
# git tag -v <tag>
|
|
|
|
#
|
|
|
|
# gpg verify signature
|
|
|
|
# gpg --verify <asc-file> <file>
|
|
|
|
# gpg --no-default-keyring --keyring <pubkey.gpg> --verify <asc-file> <file>
|
2016-07-15 20:15:46 +00:00
|
|
|
# Ensure gpg-agent is running.
|
2016-07-15 20:21:07 +00:00
|
|
|
export GPG_TTY=$(tty)
|
2016-07-15 20:15:46 +00:00
|
|
|
gpg-agent
|
2016-07-10 19:17:42 +00:00
|
|
|
|
|
|
|
git tag -s "$target_version" -m "$tagmessage"
|
|
|
|
git push --tags
|
|
|
|
;;
|
|
|
|
|
2016-07-11 10:28:22 +00:00
|
|
|
sign-git-release)
|
2016-07-11 06:19:10 +00:00
|
|
|
if [ $# -lt 2 ]
|
2016-07-10 19:17:42 +00:00
|
|
|
then
|
2016-07-11 10:28:22 +00:00
|
|
|
printf "usage: $0 sign-git-release TAG TOKEN [ARCHIVE]\n"
|
2016-07-11 06:19:10 +00:00
|
|
|
printf " if ARCHIVE is not specified then it is created\n"
|
2016-07-10 19:17:42 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2016-07-11 06:19:10 +00:00
|
|
|
tag="$1"
|
2016-07-10 19:17:42 +00:00
|
|
|
if ! git rev-parse -q --verify "${tag}" >/dev/null 2>&1
|
2016-07-10 19:44:57 +00:00
|
|
|
then
|
2016-07-10 19:17:42 +00:00
|
|
|
printf "Tag \"${tag}\" not found.\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
2016-07-11 06:19:10 +00:00
|
|
|
token="$2"
|
2016-07-15 20:33:33 +00:00
|
|
|
if [ $# -gt 2 ]
|
2016-07-11 06:19:10 +00:00
|
|
|
then
|
|
|
|
archivename="$3"
|
|
|
|
else
|
|
|
|
archivename="cdist-${tag}.tar.gz"
|
2016-07-18 17:48:54 +00:00
|
|
|
git archive --prefix="cdist-${tag}/" -o "${archivename}" "${tag}" \
|
2016-07-11 06:19:10 +00:00
|
|
|
|| exit 1
|
|
|
|
fi
|
2016-07-10 19:17:42 +00:00
|
|
|
gpg --armor --detach-sign "${archivename}" || exit 1
|
|
|
|
|
|
|
|
# make github release
|
|
|
|
curl -H "Authorization: token ${token}" \
|
|
|
|
--request POST \
|
|
|
|
--data "{ \"tag_name\":\"${tag}\", \
|
|
|
|
\"target_commitish\":\"master\", \
|
|
|
|
\"name\": \"${tag}\", \
|
|
|
|
\"body\":\"${tag}\", \
|
|
|
|
\"draft\":false, \
|
|
|
|
\"prerelease\": false}" \
|
|
|
|
"https://api.github.com/repos/ungleich/cdist/releases" || exit 1
|
|
|
|
|
|
|
|
# get release ID
|
|
|
|
repoid=$(curl "https://api.github.com/repos/ungleich/cdist/releases/tags/${tag}" \
|
2016-07-15 20:50:26 +00:00
|
|
|
| python3 -c 'import json; import sys; print(json.loads(sys.stdin.read())["id"])') \
|
2016-07-10 19:17:42 +00:00
|
|
|
|| exit 1
|
|
|
|
|
2016-07-18 17:58:21 +00:00
|
|
|
# upload archive and then signature
|
|
|
|
curl -H "Authorization: token ${token}" \
|
|
|
|
-H "Accept: application/vnd.github.manifold-preview" \
|
|
|
|
-H "Content-Type: application/x-gtar" \
|
|
|
|
--data-binary @${archivename} \
|
|
|
|
"https://uploads.github.com/repos/ungleich/cdist/releases/${repoid}/assets?name=${archivename}" \
|
|
|
|
|| exit 1
|
2016-07-10 19:17:42 +00:00
|
|
|
curl -H "Authorization: token ${token}" \
|
|
|
|
-H "Accept: application/vnd.github.manifold-preview" \
|
|
|
|
-H "Content-Type: application/pgp-signature" \
|
|
|
|
--data-binary @${archivename}.asc \
|
|
|
|
"https://uploads.github.com/repos/ungleich/cdist/releases/${repoid}/assets?name=${archivename}.asc" \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# remove generated files (archive and asc)
|
2016-07-15 22:07:13 +00:00
|
|
|
if [ $# -eq 2]
|
2016-07-11 06:19:10 +00:00
|
|
|
then
|
|
|
|
rm -f "${archivename}"
|
|
|
|
fi
|
|
|
|
rm -f "${archivename}.asc"
|
2013-09-04 20:33:26 +00:00
|
|
|
;;
|
|
|
|
|
2013-09-04 19:20:05 +00:00
|
|
|
release)
|
|
|
|
set -e
|
2013-09-04 20:33:26 +00:00
|
|
|
target_version=$($0 changelog-version)
|
|
|
|
target_branch=$($0 version-branch)
|
|
|
|
|
|
|
|
echo "Beginning release process for $target_version"
|
|
|
|
|
2013-09-04 19:20:05 +00:00
|
|
|
# First check everything is sane
|
|
|
|
"$0" check-date
|
|
|
|
"$0" check-unittest
|
2016-07-24 20:24:15 +00:00
|
|
|
"$0" check-pep8
|
2013-09-04 20:33:26 +00:00
|
|
|
|
|
|
|
# Generate version file to be included in packaging
|
2016-07-15 23:38:22 +00:00
|
|
|
"$0" target-version
|
2013-09-04 20:33:26 +00:00
|
|
|
|
|
|
|
# Ensure the git status is clean, else abort
|
2013-09-04 21:11:41 +00:00
|
|
|
if ! git diff-index --name-only --exit-code HEAD ; then
|
2013-09-04 21:14:02 +00:00
|
|
|
echo "Unclean tree, see files above, aborting"
|
2013-09-04 20:33:26 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Ensure we are on the master branch
|
2014-01-20 13:43:48 +00:00
|
|
|
masterbranch=yes
|
2013-09-04 20:33:26 +00:00
|
|
|
if [ "$(git rev-parse --abbrev-ref HEAD)" != "master" ]; then
|
|
|
|
echo "Releases are happening from the master branch, aborting"
|
2014-01-20 13:40:54 +00:00
|
|
|
|
|
|
|
echo "Enter the magic word to release anyway"
|
|
|
|
read magicword
|
|
|
|
|
2014-01-20 13:43:48 +00:00
|
|
|
if [ "$magicword" = "iknowwhatido" ]; then
|
|
|
|
masterbranch=no
|
|
|
|
else
|
2014-01-20 13:40:54 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2013-09-04 20:33:26 +00:00
|
|
|
fi
|
|
|
|
|
2014-01-20 13:43:48 +00:00
|
|
|
if [ "$masterbranch" = yes ]; then
|
|
|
|
# Ensure version branch exists
|
|
|
|
if ! git rev-parse --verify refs/heads/$target_branch 2>/dev/null; then
|
|
|
|
git branch "$target_branch"
|
|
|
|
fi
|
2013-09-04 20:33:26 +00:00
|
|
|
|
2014-01-20 13:43:48 +00:00
|
|
|
# Merge master branch into version branch
|
|
|
|
git checkout "$target_branch"
|
|
|
|
git merge master
|
|
|
|
fi
|
2013-09-04 20:33:26 +00:00
|
|
|
|
|
|
|
# Verify that after the merge everything works
|
|
|
|
"$0" check-date
|
|
|
|
"$0" check-unittest
|
|
|
|
|
2016-06-30 13:05:26 +00:00
|
|
|
# Generate documentation (man and html)
|
2016-07-15 22:50:01 +00:00
|
|
|
# First, clean old generated docs
|
|
|
|
make docs-clean
|
2016-06-30 13:05:26 +00:00
|
|
|
make docs
|
2013-09-04 20:33:26 +00:00
|
|
|
|
|
|
|
# Generate speeches (indirect check if they build)
|
|
|
|
make speeches
|
|
|
|
|
|
|
|
#############################################################
|
|
|
|
# Everything green, let's do the release
|
|
|
|
|
|
|
|
# Tag the current commit
|
|
|
|
"$0" release-git-tag
|
|
|
|
|
2016-07-10 19:17:42 +00:00
|
|
|
# sign git tag
|
|
|
|
printf "Enter github authentication token: "
|
|
|
|
read token
|
2016-07-11 10:28:22 +00:00
|
|
|
"$0" sign-git-release "${target_version}" "${token}"
|
2016-07-10 19:17:42 +00:00
|
|
|
|
2013-09-04 20:33:26 +00:00
|
|
|
# Also merge back the version branch
|
2014-01-20 13:48:05 +00:00
|
|
|
if [ "$masterbranch" = yes ]; then
|
|
|
|
git checkout master
|
|
|
|
git merge "$target_branch"
|
|
|
|
fi
|
2013-09-04 20:33:26 +00:00
|
|
|
|
2013-09-04 20:58:52 +00:00
|
|
|
# Publish git changes
|
|
|
|
make pub
|
2013-09-04 20:33:26 +00:00
|
|
|
|
2013-09-04 20:58:52 +00:00
|
|
|
# publish man, speeches, website
|
2014-02-14 19:58:12 +00:00
|
|
|
if [ "$masterbranch" = yes ]; then
|
|
|
|
make web-release-all
|
|
|
|
else
|
|
|
|
make web-release-all-no-latest
|
|
|
|
fi
|
2013-09-04 20:33:26 +00:00
|
|
|
|
2013-09-09 09:46:29 +00:00
|
|
|
# Ensure that pypi release has the right version
|
|
|
|
"$0" version
|
|
|
|
|
2013-09-04 20:58:52 +00:00
|
|
|
# Create and publish package for pypi
|
|
|
|
make pypi-release
|
2013-09-04 20:33:26 +00:00
|
|
|
|
2013-09-04 20:58:52 +00:00
|
|
|
# Archlinux release is based on pypi
|
|
|
|
make archlinux-release
|
2013-09-04 20:33:26 +00:00
|
|
|
|
2013-09-04 20:58:52 +00:00
|
|
|
# Announce change on ML
|
|
|
|
make ml-release
|
2013-09-05 11:19:47 +00:00
|
|
|
|
|
|
|
cat << eof
|
|
|
|
Manual steps post release:
|
|
|
|
|
|
|
|
- linkedin
|
|
|
|
- hackernews
|
2013-09-05 11:29:28 +00:00
|
|
|
- reddit
|
2013-09-05 11:19:47 +00:00
|
|
|
- twitter
|
|
|
|
|
|
|
|
eof
|
|
|
|
|
2013-09-04 19:20:05 +00:00
|
|
|
;;
|
|
|
|
|
2012-10-25 16:44:05 +00:00
|
|
|
test)
|
2012-11-01 13:13:52 +00:00
|
|
|
export PYTHONPATH="$(pwd -P)"
|
2012-10-25 16:44:05 +00:00
|
|
|
|
|
|
|
if [ $# -lt 1 ]; then
|
|
|
|
python3 -m cdist.test
|
|
|
|
else
|
|
|
|
python3 -m unittest "$@"
|
|
|
|
fi
|
2012-10-25 16:28:19 +00:00
|
|
|
;;
|
2013-07-09 13:32:10 +00:00
|
|
|
|
2016-07-10 09:21:52 +00:00
|
|
|
pep8)
|
2016-07-23 13:10:32 +00:00
|
|
|
pep8 "${basedir}" "${basedir}/scripts/cdist" | less
|
2016-07-24 20:24:15 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
check-pep8)
|
|
|
|
"$0" pep8
|
2016-07-10 09:21:52 +00:00
|
|
|
echo "Please review pep8 report."
|
|
|
|
while true
|
|
|
|
do
|
|
|
|
echo "Continue (yes/no)?"
|
|
|
|
any=
|
|
|
|
read any
|
|
|
|
case "$any" in
|
|
|
|
yes)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
no)
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Please answer with 'yes' or 'no' explicitly."
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
|
2013-09-04 20:33:26 +00:00
|
|
|
version-branch)
|
|
|
|
"$0" changelog-version | cut -d. -f '1,2'
|
|
|
|
;;
|
|
|
|
|
2013-06-07 19:14:51 +00:00
|
|
|
version)
|
2013-06-08 01:36:59 +00:00
|
|
|
echo "VERSION = \"$(git describe)\"" > cdist/version.py
|
2013-06-07 19:14:51 +00:00
|
|
|
;;
|
2011-03-25 21:10:52 +00:00
|
|
|
|
2016-07-15 23:38:22 +00:00
|
|
|
target-version)
|
|
|
|
target_version=$($0 changelog-version)
|
|
|
|
echo "VERSION = \"${target_version}\"" > cdist/version.py
|
|
|
|
;;
|
|
|
|
|
2012-10-25 16:44:05 +00:00
|
|
|
*)
|
2013-07-09 12:53:00 +00:00
|
|
|
echo "Unknown helper target $@ - aborting"
|
2012-10-25 16:44:05 +00:00
|
|
|
exit 1
|
|
|
|
;;
|
2011-10-02 13:56:27 +00:00
|
|
|
|
2011-03-25 20:04:26 +00:00
|
|
|
esac
|