Check md5sum on hotspot downloads

Andrew Haley aph at redhat.com
Fri Dec 19 05:57:41 PST 2008


We weren't checking for an md5sum on the downloaded hotspot; fixed thusly.
Also, the hotspot.map parser was insisting on tabs rather than any whitespace
character as a separator, so I fixed that too.

Andrew.


2008-12-19  Andrew Haley  <aph at redhat.com>

	* Makefile.am (stamps/download.stamp): Check MD5sum on hotspot.tar.gz.
	* hotspot.map: Add md5sum for 14.0b08.

diff -r 83952ccf276b Makefile.am
--- a/Makefile.am       Wed Dec 17 22:16:21 2008 +0000
+++ b/Makefile.am       Fri Dec 19 13:54:41 2008 +0000
@@ -385,8 +385,19 @@
 if WITH_ALT_HSBUILD
 if USE_ALT_HOTSPOT_SRC_ZIP
 else
-       changeset="`cat $(abs_top_srcdir)/hotspot.map|grep $(HSBUILD)|cut -f2`"; \
-       $(WGET) $(HOTSPOT_URL)$${changeset}.tar.gz -O $(HOTSPOT_SRC_ZIP);
+       hotspot_md5sum="`$(AWK) 'version==$$1 {print $$3}' version=$(HSBUILD) \
+         $(abs_top_srcdir)/hotspot.map`" ; \
+       if ! echo "$${hotspot_md5sum}  $(HOTSPOT_SRC_ZIP)" \
+         | $(MD5SUM) --check ; \
+       then \
+         if [ $(HOTSPOT_SRC_ZIP) ] ; \
+         then \
+           mv $(HOTSPOT_SRC_ZIP) $(HOTSPOT_SRC_ZIP).old ; \
+         fi ; \
+         changeset="`$(AWK) 'version==$$1 {print $$2}' version=$(HSBUILD) \
+           $(abs_top_srcdir)/hotspot.map`" ; \
+         $(WGET) $(HOTSPOT_URL)$${changeset}.tar.gz -O $(HOTSPOT_SRC_ZIP) ; \
+       fi
 endif
 endif
 endif
diff -r 83952ccf276b hotspot.map
--- a/hotspot.map       Wed Dec 17 22:16:21 2008 +0000
+++ b/hotspot.map       Fri Dec 19 13:54:41 2008 +0000
@@ -1,1 +1,2 @@
-14.0b08        f9d938ede196
+# version changeset md5sum
+14.0b08        f9d938ede196 c8f78d48ac83987bc2adebeebcd354e9




More information about the distro-pkg-dev mailing list