diff options
Diffstat (limited to 'Build/source/libs/pixman/pixman-src/Makefile.am')
-rw-r--r-- | Build/source/libs/pixman/pixman-src/Makefile.am | 60 |
1 files changed, 30 insertions, 30 deletions
diff --git a/Build/source/libs/pixman/pixman-src/Makefile.am b/Build/source/libs/pixman/pixman-src/Makefile.am index e33b2b9c279..dccbf16eb1d 100644 --- a/Build/source/libs/pixman/pixman-src/Makefile.am +++ b/Build/source/libs/pixman/pixman-src/Makefile.am @@ -31,33 +31,33 @@ EXTRA_DIST = \ $(NULL) tar_gz = $(PACKAGE)-$(VERSION).tar.gz -tar_bz2 = $(PACKAGE)-$(VERSION).tar.bz2 +tar_xz = $(PACKAGE)-$(VERSION).tar.xz -sha1_tgz = $(tar_gz).sha1 -md5_tgz = $(tar_gz).md5 +sha512_tgz = $(tar_gz).sha512 +sha256_tgz = $(tar_gz).sha256 -sha1_tbz2 = $(tar_bz2).sha1 -md5_tbz2 = $(tar_bz2).md5 +sha512_txz = $(tar_xz).sha512 +sha256_txz = $(tar_xz).sha256 -gpg_file = $(sha1_tgz).asc +gpg_file = $(sha512_tgz).asc -$(sha1_tgz): $(tar_gz) - sha1sum $^ > $@ +$(sha512_tgz): $(tar_gz) + sha512sum $^ > $@ -$(md5_tgz): $(tar_gz) - md5sum $^ > $@ +$(sha256_tgz): $(tar_gz) + sha256sum $^ > $@ -$(sha1_tbz2): $(tar_bz2) - sha1sum $^ > $@ +$(sha512_txz): $(tar_xz) + sha512sum $^ > $@ -$(md5_tbz2): $(tar_bz2) - md5sum $^ > $@ +$(sha256_txz): $(tar_xz) + sha256sum $^ > $@ -$(gpg_file): $(sha1_tgz) +$(gpg_file): $(sha512_tgz) @echo "Please enter your GPG password to sign the checksum." gpg --armor --sign $^ -HASHFILES = $(sha1_tgz) $(sha1_tbz2) $(md5_tgz) $(md5_tbz2) +HASHFILES = $(sha512_tgz) $(sha512_txz) $(sha256_tgz) $(sha256_txz) release-verify-newer: @echo -n "Checking that no $(VERSION) release already exists at $(RELEASE_XORG_HOST)..." @@ -72,7 +72,7 @@ release-verify-newer: @echo "Good." release-remove-old: - $(RM) $(tar_gz) $(tar_bz2) $(HASHFILES) $(gpg_file) + $(RM) $(tar_gz) $(tar_xz) $(HASHFILES) $(gpg_file) ensure-prev: @if [[ "$(PREV)" == "" ]]; then \ @@ -91,9 +91,9 @@ release-check: ensure-prev release-verify-newer release-remove-old distcheck release-tag: git tag -u $(GPGKEY) -m "$(PACKAGE) $(VERSION) release" $(PACKAGE)-$(VERSION) -release-upload: release-check $(tar_gz) $(tar_bz2) $(sha1_tgz) $(sha1_tbz2) $(md5_tgz) $(gpg_file) - scp $(tar_gz) $(sha1_tgz) $(gpg_file) $(RELEASE_CAIRO_HOST):$(RELEASE_CAIRO_DIR) - scp $(tar_gz) $(tar_bz2) $(RELEASE_XORG_HOST):$(RELEASE_XORG_DIR) +release-upload: release-check $(tar_gz) $(tar_xz) $(sha512_tgz) $(sha512_txz) $(sha256_tgz) $(gpg_file) + scp $(tar_gz) $(sha512_tgz) $(gpg_file) $(RELEASE_CAIRO_HOST):$(RELEASE_CAIRO_DIR) + scp $(tar_gz) $(tar_xz) $(RELEASE_XORG_HOST):$(RELEASE_XORG_DIR) ssh $(RELEASE_CAIRO_HOST) "rm -f $(RELEASE_CAIRO_DIR)/LATEST-$(PACKAGE)-[0-9]* && ln -s $(tar_gz) $(RELEASE_CAIRO_DIR)/LATEST-$(PACKAGE)-$(VERSION)" RELEASE_TYPE = $$(if test "x$(PIXMAN_VERSION_MINOR)" = "x$$(echo "$(PIXMAN_VERSION_MINOR)/2*2" | bc)" ; then echo "stable release in the" ; else echo "development snapshot leading up to a stable"; fi) @@ -111,18 +111,18 @@ release-publish-message: $(HASHFILES) ensure-prev @echo " $(RELEASE_CAIRO_URL)/$(tar_gz)" @echo " $(RELEASE_XORG_URL)/$(tar_gz)" @echo "" - @echo "tar.bz2:" - @echo " $(RELEASE_XORG_URL)/$(tar_bz2)" + @echo "tar.xz:" + @echo " $(RELEASE_XORG_URL)/$(tar_xz)" @echo "" @echo "Hashes:" - @echo -n " MD5: " - @cat $(md5_tgz) - @echo -n " MD5: " - @cat $(md5_tbz2) - @echo -n " SHA1: " - @cat $(sha1_tgz) - @echo -n " SHA1: " - @cat $(sha1_tbz2) + @echo -n " SHA256: " + @cat $(sha256_tgz) + @echo -n " SHA256: " + @cat $(sha256_txz) + @echo -n " SHA512: " + @cat $(sha512_tgz) + @echo -n " SHA512: " + @cat $(sha512_txz) @echo "" @echo "GPG signature:" @echo " $(RELEASE_CAIRO_URL)/$(gpg_file)" |