2016-03-17 19:06:11 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-12-10 15:21:36 +03:00
|
|
|
: '
|
2018-12-10 15:20:34 +03:00
|
|
|
cat > .git/hooks/post-commit << EOF
|
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source ./extra/shutils/postcommit-hook.sh
|
|
|
|
EOF
|
|
|
|
|
|
|
|
chmod +x .git/hooks/post-commit
|
2018-12-10 15:21:36 +03:00
|
|
|
'
|
2018-12-10 15:20:34 +03:00
|
|
|
|
2016-03-17 19:06:11 +03:00
|
|
|
SETTINGS="../../lib/core/settings.py"
|
|
|
|
|
|
|
|
declare -x SCRIPTPATH="${0}"
|
|
|
|
|
|
|
|
FULLPATH=${SCRIPTPATH%/*}/$SETTINGS
|
|
|
|
|
|
|
|
if [ -f $FULLPATH ]
|
|
|
|
then
|
2016-08-02 13:00:21 +03:00
|
|
|
LINE=$(grep -o ${FULLPATH} -e 'VERSION = "[0-9.]*"')
|
|
|
|
declare -a LINE
|
2016-03-17 19:06:11 +03:00
|
|
|
NEW_TAG=$(python -c "import re, sys, time; version = re.search('\"([0-9.]*)\"', sys.argv[1]).group(1); _ = version.split('.'); print '.'.join(_[:-1]) if len(_) == 4 and _[-1] == '0' else ''" "$LINE")
|
|
|
|
if [ -n "$NEW_TAG" ]
|
|
|
|
then
|
2017-01-02 16:31:19 +03:00
|
|
|
#git commit -am "Automatic monthly tagging"
|
2016-08-02 13:00:21 +03:00
|
|
|
echo "Creating new tag ${NEW_TAG}"
|
|
|
|
git tag $NEW_TAG
|
2016-04-04 13:34:19 +03:00
|
|
|
git push origin $NEW_TAG
|
2016-08-02 13:00:21 +03:00
|
|
|
echo "Going to push PyPI package"
|
|
|
|
/bin/bash ${SCRIPTPATH%/*}/pypi.sh
|
2016-03-17 19:06:11 +03:00
|
|
|
fi
|
2016-08-02 13:00:21 +03:00
|
|
|
fi
|