Added freshmeat-submit to release commands.
This commit is contained in:
parent
3fec42dcea
commit
04eef7301d
4
Makefile
4
Makefile
|
@ -40,6 +40,7 @@ upload:
|
||||||
release: clean releasecheck dist upload
|
release: clean releasecheck dist upload
|
||||||
@echo "Register at Python Package Index..."
|
@echo "Register at Python Package Index..."
|
||||||
python setup.py register
|
python setup.py register
|
||||||
|
freshmeat-submit < patool.freshmeat
|
||||||
|
|
||||||
|
|
||||||
.PHONY: releasecheck
|
.PHONY: releasecheck
|
||||||
|
@ -51,6 +52,9 @@ releasecheck: check test
|
||||||
echo "Missing WIN32 distribution archive at ../$(ARCHIVE_WIN32)"; \
|
echo "Missing WIN32 distribution archive at ../$(ARCHIVE_WIN32)"; \
|
||||||
false; \
|
false; \
|
||||||
fi
|
fi
|
||||||
|
@if ! grep "Version: $(VERSION)" patool.freshmeat > /dev/null; then \
|
||||||
|
echo "Could not release: edit patool.freshmeat version"; false; \
|
||||||
|
fi
|
||||||
|
|
||||||
# The check programs used here are mostly local scripts on my private system.
|
# The check programs used here are mostly local scripts on my private system.
|
||||||
# So for other developers there is no need to execute this target.
|
# So for other developers there is no need to execute this target.
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
Project: patool
|
||||||
|
Version: 0.12
|
||||||
|
Release-Focus: Minor bugfixes
|
||||||
|
Hide: N
|
||||||
|
Website-URL: http://patool.sourceforge.net/
|
||||||
|
Changelog-URL: http://patool.git.sourceforge.net/git/gitweb.cgi?p=patool/patool;a=blob;f=doc/changelog.txt;hb=HEAD
|
||||||
|
Tar/GZ-URL: http://downloads.sourceforge.net/patool/patool-${version}.tar.gz
|
||||||
|
GIT-Tree-URL: http://patool.git.sourceforge.net/
|
||||||
|
Windows-installer-URL: http://downloads.sourceforge.net/patool/patool-${version}.win32.exe
|
||||||
|
|
||||||
|
Archive commands are now printed on the console before running them.
|
||||||
|
A RAR extraction bug has been fixed.
|
Loading…
Reference in New Issue