Disable binary build until py2exe build works on Python 3.

This commit is contained in:
Bastian Kleineidam 2015-07-19 19:25:28 +02:00
parent 2369470fe3
commit fdbc0f2b49
1 changed files with 7 additions and 7 deletions

View File

@ -29,13 +29,13 @@ dist:
[ -d dist ] || mkdir dist [ -d dist ] || mkdir dist
$(PYTHON) setup.py sdist --formats=tar $(PYTHON) setup.py sdist --formats=tar
gzip --best dist/$(APPNAME)-$(VERSION).tar gzip --best dist/$(APPNAME)-$(VERSION).tar
[ ! -f ../$(ARCHIVE_WIN32) ] || cp ../$(ARCHIVE_WIN32) dist # [ ! -f ../$(ARCHIVE_WIN32) ] || cp ../$(ARCHIVE_WIN32) dist
sign: sign:
[ -f dist/$(ARCHIVE_SOURCE).asc ] || gpg --detach-sign --armor dist/$(ARCHIVE_SOURCE) [ -f dist/$(ARCHIVE_SOURCE).asc ] || gpg --detach-sign --armor dist/$(ARCHIVE_SOURCE)
[ -f dist/$(ARCHIVE_WIN32).asc ] || gpg --detach-sign --armor dist/$(ARCHIVE_WIN32) # [ -f dist/$(ARCHIVE_WIN32).asc ] || gpg --detach-sign --armor dist/$(ARCHIVE_WIN32)
upload: upload_source upload_binary upload: upload_source #upload_binary
upload_source: upload_source:
twine upload dist/$(ARCHIVE_SOURCE) dist/$(ARCHIVE_SOURCE).asc twine upload dist/$(ARCHIVE_SOURCE) dist/$(ARCHIVE_SOURCE).asc
@ -76,10 +76,10 @@ releasecheck: test check
@if egrep -i "xx\.|xxxx|\.xx" doc/changelog.txt > /dev/null; then \ @if egrep -i "xx\.|xxxx|\.xx" doc/changelog.txt > /dev/null; then \
echo "Could not release: edit doc/changelog.txt release date"; false; \ echo "Could not release: edit doc/changelog.txt release date"; false; \
fi fi
@if [ ! -f ../$(ARCHIVE_WIN32) ]; then \ # @if [ ! -f ../$(ARCHIVE_WIN32) ]; then \
echo "Missing WIN32 distribution archive at ../$(ARCHIVE_WIN32)"; \ # echo "Missing WIN32 distribution archive at ../$(ARCHIVE_WIN32)"; \
false; \ # false; \
fi # fi
$(PYTHON) setup.py check --restructuredtext $(PYTHON) setup.py check --restructuredtext
check: check: