mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 02:44:21 +02:00
Merge pull request #3076 from certbot/release-prep
0.7.0 release script prep
This commit is contained in:
+3
-3
@@ -45,7 +45,7 @@ export GPG_TTY=$(tty)
|
|||||||
PORT=${PORT:-1234}
|
PORT=${PORT:-1234}
|
||||||
|
|
||||||
# subpackages to be released
|
# subpackages to be released
|
||||||
SUBPKGS=${SUBPKGS:-"acme certbot-apache certbot-nginx letshelp-certbot letsencrypt letsencrypt-apache letsencrypt-nginx letshelp-letsencrypt"}
|
SUBPKGS=${SUBPKGS:-"acme certbot-apache certbot-nginx letsencrypt letsencrypt-apache letsencrypt-nginx"}
|
||||||
subpkgs_modules="$(echo $SUBPKGS | sed s/-/_/g)"
|
subpkgs_modules="$(echo $SUBPKGS | sed s/-/_/g)"
|
||||||
# certbot_compatibility_test is not packaged because:
|
# certbot_compatibility_test is not packaged because:
|
||||||
# - it is not meant to be used by anyone else than Certbot devs
|
# - it is not meant to be used by anyone else than Certbot devs
|
||||||
@@ -162,13 +162,13 @@ for module in certbot $subpkgs_modules ; do
|
|||||||
echo testing $module
|
echo testing $module
|
||||||
nosetests $module
|
nosetests $module
|
||||||
done
|
done
|
||||||
deactivate
|
|
||||||
|
|
||||||
# pin pip hashes of the things we just built
|
# pin pip hashes of the things we just built
|
||||||
for pkg in acme certbot certbot-apache letsencrypt letsencrypt-apache ; do
|
for pkg in acme certbot certbot-apache letsencrypt letsencrypt-apache ; do
|
||||||
echo $pkg==$version \\
|
echo $pkg==$version \\
|
||||||
pip hash dist."$version/$pkg"/*.{whl,gz} | grep "^--hash" | python2 -c 'from sys import stdin; input = stdin.read(); print " ", input.replace("\n--hash", " \\\n --hash"),'
|
pip hash dist."$version/$pkg"/*.{whl,gz} | grep "^--hash" | python2 -c 'from sys import stdin; input = stdin.read(); print " ", input.replace("\n--hash", " \\\n --hash"),'
|
||||||
done > /tmp/hashes.$$
|
done > /tmp/hashes.$$
|
||||||
|
deactivate
|
||||||
|
|
||||||
if ! wc -l /tmp/hashes.$$ | grep -qE "^\s*15 " ; then
|
if ! wc -l /tmp/hashes.$$ | grep -qE "^\s*15 " ; then
|
||||||
echo Unexpected pip hash output
|
echo Unexpected pip hash output
|
||||||
@@ -176,7 +176,7 @@ if ! wc -l /tmp/hashes.$$ | grep -qE "^\s*15 " ; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# perform hideous surgery on requirements.txt...
|
# perform hideous surgery on requirements.txt...
|
||||||
head -n -9 letsencrypt-auto-source/pieces/letsencrypt-auto-requirements.txt > /tmp/req.$$
|
head -n -15 letsencrypt-auto-source/pieces/letsencrypt-auto-requirements.txt > /tmp/req.$$
|
||||||
cat /tmp/hashes.$$ >> /tmp/req.$$
|
cat /tmp/hashes.$$ >> /tmp/req.$$
|
||||||
cp /tmp/req.$$ letsencrypt-auto-source/pieces/letsencrypt-auto-requirements.txt
|
cp /tmp/req.$$ letsencrypt-auto-source/pieces/letsencrypt-auto-requirements.txt
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user