diff options
author | Jonathon Jongsma <jjongsma@gnome.org> | 2006-08-20 03:25:03 +0000 |
---|---|---|
committer | Jonathon Jongsma <jjongsma@gnome.org> | 2006-08-20 03:25:03 +0000 |
commit | c37a5786ef7a7194421e0d6ebf131d54ec4b7182 (patch) | |
tree | b6b5af72f82975b4e50308ef08daa5785adf4027 | |
parent | f9b10f7d4ba04dc4864cea982b95ed5abaa9ba11 (diff) |
2006-08-19 Jonathon Jongsma <jonathon.jongsma@gmail.com>
* Makefile.am: get rid of the concept of a snapshot. It doesn't really make
that much sense for cairomm, honestly, since we're just a simple wrapper
library.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.am | 9 |
2 files changed, 10 insertions, 5 deletions
@@ -1,5 +1,11 @@ 2006-08-19 Jonathon Jongsma <jonathon.jongsma@gmail.com> + * Makefile.am: get rid of the concept of a snapshot. It doesn't really make + that much sense for cairomm, honestly, since we're just a simple wrapper + library. + +2006-08-19 Jonathon Jongsma <jonathon.jongsma@gmail.com> + * MSVC/examples/.cvsignore: * MSVC/examples/Makefile.am: * MSVC/examples/pdf-surface/.cvsignore: diff --git a/Makefile.am b/Makefile.am index 8a0a39e..2aee9cb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -18,11 +18,10 @@ pkgconfig_DATA = cairomm-1.0.pc # make release-check # or make release-publish -RELEASE_OR_SNAPSHOT = `if [ "$(GENERIC_MINOR_VERSION)" = $$(echo "$(GENERIC_MINOR_VERSION)/2*2" | bc) ]; then echo release; else echo snapshot; fi` RELEASE_UPLOAD_HOST = cairographics.org RELEASE_UPLOAD_BASE = /srv/cairo.freedesktop.org/www -RELEASE_UPLOAD_DIR = $(RELEASE_UPLOAD_BASE)/$(RELEASE_OR_SNAPSHOT)s -RELEASE_URL_BASE = http://cairographics.org/$(RELEASE_OR_SNAPSHOT)s +RELEASE_UPLOAD_DIR = $(RELEASE_UPLOAD_BASE)/releases +RELEASE_URL_BASE = http://cairographics.org/releases RELEASE_ANNOUNCE_LIST = cairo-announce@cairographics.org (and CC gnome-announce-list@gnome.org) CVS = cvs @@ -82,10 +81,10 @@ release-publish: release-upload releases/$(sha1_file) @echo "Please send an announcement to $(RELEASE_ANNOUNCE_LIST)" @echo "including the following:" @echo "" - @echo "Subject: $(PACKAGE) $(RELEASE_OR_SNAPSHOT) $(VERSION) now available" + @echo "Subject: $(PACKAGE) release $(VERSION) now available" @echo "" @echo "============================== CUT HERE ==============================" - @echo "A new $(PACKAGE) $(RELEASE_OR_SNAPSHOT) $(VERSION) is now available from:" + @echo "A new $(PACKAGE) release $(VERSION) is now available from:" @echo "" @echo " $(RELEASE_URL_BASE)/$(tar_file)" @echo "" |