mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-26 10:50:22 +00:00
release target
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1719 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
4320282ce5
commit
8552497f6f
1 changed files with 13 additions and 6 deletions
19
Makefile
19
Makefile
|
|
@ -69,20 +69,27 @@ files: locale localbuild
|
|||
rm -f linkchecker-out.*.gz
|
||||
for f in linkchecker-out.*; do gzip --best $$f; done
|
||||
|
||||
sign-stamp: release-stamp
|
||||
for f in dist/*; do gpg --detach-sign --armor $$f; done
|
||||
touch $@
|
||||
release: releasecheck dist upload homepage
|
||||
mozilla -remote "openUrl(https://sourceforge.net/projects/linkchecker, new-tab)"
|
||||
@echo "Make SF release and press return..."
|
||||
@read
|
||||
@echo "Uploading new LinkChecker Homepage..."
|
||||
$(MAKE) -C ~/public_html/linkchecker.sf.net upload
|
||||
|
||||
release-stamp: releasecheck distclean locale config
|
||||
dist: locale config
|
||||
$(PYTHON) setup.py sdist --formats=gztar bdist_rpm
|
||||
touch $@
|
||||
|
||||
releasecheck:
|
||||
@if grep -i xxxx ChangeLog > /dev/null; then \
|
||||
echo "Could not release: edit ChangeLog release date"; false; \
|
||||
fi
|
||||
|
||||
upload: sign-stamp
|
||||
upload:
|
||||
for f in dist/*; do \
|
||||
if [ ! -f $${f}.asc ]; then \
|
||||
gpg --detach-sign --armor $$f; \
|
||||
fi; \
|
||||
done
|
||||
ncftpput upload.sourceforge.net /incoming dist/*
|
||||
|
||||
test:
|
||||
|
|
|
|||
Loading…
Reference in a new issue