mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-04-22 10:30:41 +02:00
It seems that everything up to this point in release-publish worked fine, so with these fixes, hopefully the next run of make release-publish will work without any snags.
194 lines
6.9 KiB
Text
194 lines
6.9 KiB
Text
# Some custom targets to make it easier to release things.
|
|
#
|
|
# To make real stable releases or devel snapshots, use either:
|
|
# make release-check
|
|
# or make release-publish
|
|
#
|
|
# To make a quick properly named (date and git hash stamped) tarball:
|
|
# make snapshot
|
|
|
|
|
|
TAR_OPTIONS = --owner=0 --group=0
|
|
|
|
dist-hook: dist-clear-sticky-bits
|
|
|
|
# Clean up any sticky bits we may inherit from parent dir
|
|
dist-clear-sticky-bits:
|
|
chmod -R a-s $(distdir)
|
|
|
|
|
|
snapshot:
|
|
distdir="$(distdir)-`date '+%Y%m%d'`"; \
|
|
test -d "$(srcdir)/.git" && distdir=$$distdir-`cd "$(srcdir)" && git rev-parse HEAD | cut -c 1-6`; \
|
|
TAR_OPTIONS="$(TAR_OPTIONS)" $(MAKE) $(AM_MAKEFLAGS) distdir="$$distdir" snapshot-dist
|
|
|
|
snapshot-dist: dist
|
|
@(echo "$(distdir) archives ready for distribution: "; \
|
|
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
|
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
|
|
|
RELEASE_OR_SNAPSHOT = $$(if test "x$(CAIRO_VERSION_MINOR)" = "x$$(echo "$(CAIRO_VERSION_MINOR)/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_ANNOUNCE_LIST = cairo-announce@cairographics.org (and CC gnome-announce-list@gnome.org)
|
|
|
|
MANUAL_VERSIONED = manual-$(VERSION)
|
|
MANUAL_TAR_FILE = $(MANUAL_VERSIONED).tar.gz
|
|
MANUAL_UPLOAD_DIR = $(RELEASE_UPLOAD_BASE)
|
|
|
|
tar_file = $(PACKAGE)-$(VERSION).tar.gz
|
|
sha1_file = $(tar_file).sha1
|
|
gpg_file = $(sha1_file).asc
|
|
|
|
$(sha1_file): $(tar_file)
|
|
sha1sum $^ > $@
|
|
|
|
$(gpg_file): $(sha1_file)
|
|
@echo "Please enter your GPG password to sign the checksum."
|
|
gpg --armor --sign $^
|
|
|
|
release-verify-sane-changelogs: changelogs
|
|
@echo -n "Checking that the ChangeLog files are sane..."
|
|
@if grep -q "is required to generate" $(CHANGELOGS); then \
|
|
(echo "Ouch." && echo "Some of the ChangeLogs are not generated correctly." \
|
|
&& echo "Remove ChangeLog* and make changelogs" \
|
|
&& false); else :; fi
|
|
@echo "Good."
|
|
|
|
release-verify-sane-tests:
|
|
@echo "Checking that the test suite is sane..."
|
|
@cd test && $(MAKE) $(AM_MAKEFLAGS) release-verify-sane-tests
|
|
|
|
release-verify-even-micro:
|
|
@echo -n "Checking that $(VERSION) has an even micro component..."
|
|
@test "$(CAIRO_VERSION_MICRO)" = "`echo $(CAIRO_VERSION_MICRO)/2*2 | bc`" \
|
|
|| (echo "Ouch." && echo "The version micro component '$(CAIRO_VERSION_MICRO)' is not an even number." \
|
|
&& echo "The version in configure.in must be incremented before a new release." \
|
|
&& false)
|
|
@echo "Good."
|
|
|
|
release-verify-newer:
|
|
@echo -n "Checking that no $(VERSION) release already exists..."
|
|
@ssh $(RELEASE_UPLOAD_HOST) test ! -e $(RELEASE_UPLOAD_DIR)/$(tar_file) \
|
|
|| (echo "Ouch." && echo "Found: $(RELEASE_UPLOAD_HOST):$(RELEASE_UPLOAD_DIR)/$(tar_file)" \
|
|
&& echo "Are you sure you have an updated checkout?" \
|
|
&& echo "This should never happen." \
|
|
&& false)
|
|
@echo "Good."
|
|
|
|
release-remove-old:
|
|
$(RM) $(tar_file) $(sha1_file) $(gpg_file)
|
|
|
|
|
|
# Strict ordering enforced for parallel make to work
|
|
release-check: \
|
|
release-verify-even-micro \
|
|
release-verify-sane-changelogs \
|
|
release-verify-sane-tests \
|
|
release-verify-newer \
|
|
$(NULL)
|
|
$(MAKE) $(AM_MAKEFLAGS) release-remove-old
|
|
TAR_OPTIONS="$(TAR_OPTIONS)" $(MAKE) $(AM_MAKEFLAGS) distcheck
|
|
|
|
release-upload: $(tar_file) $(sha1_file) $(gpg_file)
|
|
mkdir -p releases
|
|
scp $(tar_file) $(sha1_file) $(gpg_file) $(RELEASE_UPLOAD_HOST):$(RELEASE_UPLOAD_DIR)
|
|
mv $(tar_file) $(sha1_file) $(gpg_file) releases
|
|
ssh $(RELEASE_UPLOAD_HOST) "rm -f $(RELEASE_UPLOAD_DIR)/LATEST-$(PACKAGE)-[0-9]* && ln -s $(tar_file) $(RELEASE_UPLOAD_DIR)/LATEST-$(PACKAGE)-$(VERSION)"
|
|
git tag -s -m "cairo $(CAIRO_VERSION_MAJOR).$(CAIRO_VERSION_MINOR).$(CAIRO_VERSION_MICRO) release" $(CAIRO_VERSION_MAJOR).$(CAIRO_VERSION_MINOR).$(CAIRO_VERSION_MICRO)
|
|
|
|
release-publish-message: releases/$(sha1_file)
|
|
@echo "Please follow the instructions in RELEASING to push stuff out and"
|
|
@echo "send out the announcement mails. Here is the excerpt you need:"
|
|
@echo ""
|
|
@echo "Subject: $(PACKAGE) $(RELEASE_OR_SNAPSHOT) $(VERSION) now available"
|
|
@echo ""
|
|
@echo "============================== CUT HERE =============================="
|
|
@echo "A new $(PACKAGE) $(RELEASE_OR_SNAPSHOT) $(VERSION) is now available from:"
|
|
@echo ""
|
|
@echo " $(RELEASE_URL_BASE)/$(tar_file)"
|
|
@echo ""
|
|
@echo " which can be verified with:"
|
|
@echo ""
|
|
@echo " $(RELEASE_URL_BASE)/$(sha1_file)"
|
|
@echo -n " "
|
|
@cat releases/$(sha1_file)
|
|
@echo ""
|
|
@echo " $(RELEASE_URL_BASE)/$(gpg_file)"
|
|
@echo " (signed by `getent passwd "$$USER" | cut -d: -f 5 | cut -d, -f 1`)"
|
|
@echo ""
|
|
@echo " Additionally, a git clone of the source tree:"
|
|
@echo ""
|
|
@echo " git clone git://git.cairographics.org/git/cairo"
|
|
@echo ""
|
|
@echo " will include a signed $(VERSION) tag which points to a commit named:"
|
|
@echo " `git cat-file tag $(VERSION) | grep ^object | sed -e 's,object ,,'`"
|
|
@echo ""
|
|
@echo " which can be verified with:"
|
|
@echo " git verify-tag $(VERSION)"
|
|
@echo ""
|
|
@echo " and can be checked out with a command such as:"
|
|
@echo " git checkout -b build $(VERSION)"
|
|
@echo ""
|
|
@echo "============================== CUT HERE =============================="
|
|
|
|
doc-publish-versioned: doc
|
|
rm -rf ./$(MANUAL_VERSIONED)
|
|
cp -a doc/public/html $(MANUAL_VERSIONED)
|
|
tar czf $(MANUAL_TAR_FILE) $(MANUAL_VERSIONED)
|
|
scp $(MANUAL_TAR_FILE) $(RELEASE_UPLOAD_HOST):$(MANUAL_UPLOAD_DIR)
|
|
ssh $(RELEASE_UPLOAD_HOST) "cd $(MANUAL_UPLOAD_DIR) && tar xzf $(MANUAL_TAR_FILE) && ln -sf $(MANUAL_TAR_FILE) cairo-$(MANUAL_TAR_FILE)"
|
|
|
|
doc-publish-symlinks:
|
|
ssh $(RELEASE_UPLOAD_HOST) "cd $(MANUAL_UPLOAD_DIR) && rm -f manual && ln -s $(MANUAL_VERSIONED) manual && ln -sf $(MANUAL_TAR_FILE) cairo-manual.tar.gz"
|
|
|
|
doc-publish:
|
|
$(MAKE) $(AM_MAKEFLAGS) doc-publish-versioned
|
|
@if test "$(RELEASE_OR_SNAPSHOT)" = release; then $(MAKE) $(AM_MAKEFLAGS) doc-publish-symlinks; fi
|
|
|
|
# Strict ordering enforced for parallel make to work
|
|
release-publish: release-check
|
|
$(MAKE) $(AM_MAKEFLAGS) release-upload
|
|
$(MAKE) $(AM_MAKEFLAGS) doc-publish
|
|
$(MAKE) $(AM_MAKEFLAGS) release-publish-message
|
|
|
|
if OS_WIN32
|
|
|
|
# Win32 package zipfiles
|
|
runtime_zip_file = $(PACKAGE)-$(VERSION).zip
|
|
developer_zip_file = $(PACKAGE)-dev-$(VERSION).zip
|
|
|
|
$(runtime_zip_file): install
|
|
-$(RM) $@
|
|
pwd=`pwd`; cd $(prefix); \
|
|
zip "$$pwd"/$@ bin/libcairo-$(CAIRO_VERSION_SONUM).dll
|
|
|
|
$(developer_zip_file): install
|
|
-$(RM) $@
|
|
pwd=`pwd`; cd $(prefix); \
|
|
zip -r "$$pwd"/$@ include/cairo lib/libcairo.dll.a lib/cairo.lib lib/pkgconfig/cairo.pc lib/pkgconfig/cairo-*.pc share/gtk-doc/html/cairo
|
|
|
|
zips: $(runtime_zip_file) $(developer_zip_file)
|
|
|
|
endif
|
|
|
|
|
|
.PHONY: \
|
|
dist-clear-sticky-bits \
|
|
doc-publish \
|
|
doc-publish-symlinks \
|
|
doc-publish-versioned \
|
|
release-check \
|
|
release-publish \
|
|
release-publish-message \
|
|
release-remove-old \
|
|
release-upload \
|
|
release-verify-even-micro \
|
|
release-verify-newer \
|
|
release-verify-sane-changelogs \
|
|
release-verify-sane-tests \
|
|
snapshot \
|
|
snapshot-dist \
|
|
$(NULL)
|