summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStef Walter <stefw@collabora.co.uk>2011-10-21 15:49:37 +0200
committerStef Walter <stefw@collabora.co.uk>2011-10-21 15:51:07 +0200
commitea2f0d5ee72541f65976b0c398c2b1ac08c0817a (patch)
tree1e8f66f54969b8e4b09239901ea37f960cd3e675
parent5a523d4614921a5f69cc85a1fca4b058d9ad3750 (diff)
Add upload-release make target, and start signing releases
-rw-r--r--.gitignore1
-rw-r--r--Makefile.am14
-rw-r--r--freshmeat.rel9
3 files changed, 24 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index aadccbe..90994b4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,6 +6,7 @@ Makefile.in
.cproject
.settings
*~
+*.sig
*.tar.gz
/compile
diff --git a/Makefile.am b/Makefile.am
index 0b6be3c..7aa2713 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,4 +1,8 @@
+SIGNER = stef@thewalter.net
+UPLOAD = thewalter.net:/data/www/stef/software/proxsmtp
+FRESHMEAT = freshmeat.rel
+
EXTRA_DIST = config.sub acsite.m4 config.guess scripts common
SUBDIRS = src doc
@@ -15,4 +19,14 @@ dist-hook:
else \
echo A git clone is required to generate a ChangeLog >&2; \
fi
+ @if test -f $(srcdir)/$(FRESHMEAT); then \
+ grep -qF "$(PACKAGE_VERSION)" $(srcdir)/$(FRESHMEAT) || \
+ ( echo "$(FRESHMEAT) release not updated" >&2; exit 1 ); \
+ fi
+
+upload-release: $(DIST_ARCHIVES)
+ gpg --detach-sign --local-user $(SIGNER) $(DIST_ARCHIVES)
+ scp $(DIST_ARCHIVES) $(DIST_ARCHIVES).sig $(FRESHMEAT) NEWS $(UPLOAD)
+ @echo
+ @echo "# Remember to update $(UPLOAD)/index.html"
diff --git a/freshmeat.rel b/freshmeat.rel
new file mode 100644
index 0000000..cbc6a24
--- /dev/null
+++ b/freshmeat.rel
@@ -0,0 +1,9 @@
+Project: ProxSMTP
+Version: 1.10
+Release-Focus: Minor bugfixes
+Hide: N
+Home-Page-URL: http://thewalter.net/stef/software/proxsmtp/
+Gzipped-Tar-URL: http://thewalter.net/stef/software/proxsmtp/proxsmtp-1.10.tar.gz
+Changelog-URL: http://thewalter.net/stef/software/proxsmtp/NEWS
+
+Fix bugs related to forking and waiting for filtering processes.