From: drh Date: Wed, 10 Feb 2016 13:36:17 +0000 (+0000) Subject: When generating the snapshot-tarball, truncate the date/time in the name to X-Git-Tag: version-3.11.0~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dd2b59b01dac09d0cf2a9747a50e3b86faee80ca;p=thirdparty%2Fsqlite.git When generating the snapshot-tarball, truncate the date/time in the name to 12 significant digits (YYYYMMDDhhmm) omitting the seconds and fractional seconds. FossilOrigin-Name: 604f77754797a4066f6cf275c7bc8a68d2839c2d --- diff --git a/manifest b/manifest index dc9efa1f83..6b82b46df3 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Updates\sto\sthe\sautoconf\starball\sREADME.txt\sfile. -D 2016-02-10T13:17:14.170 +C When\sgenerating\sthe\ssnapshot-tarball,\struncate\sthe\sdate/time\sin\sthe\sname\sto\s\n12\ssignificant\sdigits\s(YYYYMMDDhhmm)\somitting\sthe\sseconds\sand\sfractional\nseconds. +D 2016-02-10T13:36:17.175 F Makefile.in 4e90dc1521879022aa9479268a4cd141d1771142 F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434 F Makefile.msc 0fe3b22f8e29bcde0533ada7957a5f15835d797a @@ -1382,7 +1382,7 @@ F tool/lemon.c 799e73e19a33b8dd7767a7fa34618ed2a9c2397d F tool/lempar.c 3ec1463a034b37d87d782be5f6b8b10a3b1ecbe7 F tool/loadfts.c c3c64e4d5e90e8ba41159232c2189dba4be7b862 F tool/logest.c eef612f8adf4d0993dafed0416064cf50d5d33c6 -F tool/mkautoconfamal.sh 11cd32789d8b47bfc09c46487ca7686107b767ef +F tool/mkautoconfamal.sh c78caa3214f25dc28ea157b5a82abb311f209906 F tool/mkkeywordhash.c f7f3b342211ac6a14258b9726d5b97cf4f548f22 F tool/mkmsvcmin.tcl d57e6efc9428605f5418d0b235721ddf7b5d9c0b F tool/mkopcodec.tcl d1b6362bd3aa80d5520d4d6f3765badf01f6c43c @@ -1427,7 +1427,7 @@ F tool/vdbe_profile.tcl 246d0da094856d72d2c12efec03250d71639d19f F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh 48bd54594752d5be3337f12c72f28d2080cb630b F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f -P 070ec66f677cdcd30087871feb8afd010a184b75 -R c35b2492f0a904d8e09d6ee47a7b531b +P a3e911e3aa3e35446bed7f300bfe03f66e1494db +R 30240c9ea7a51d9fb3097cfc2aff9b45 U drh -Z 9b2d2749667b4588e32d718038a8ef78 +Z 38d599a4bb70ac4c3aebf51493f6b3e5 diff --git a/manifest.uuid b/manifest.uuid index 062ac32da4..c9229cedd9 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -a3e911e3aa3e35446bed7f300bfe03f66e1494db \ No newline at end of file +604f77754797a4066f6cf275c7bc8a68d2839c2d \ No newline at end of file diff --git a/tool/mkautoconfamal.sh b/tool/mkautoconfamal.sh index 11d3f566ff..75a0b09a4c 100644 --- a/tool/mkautoconfamal.sh +++ b/tool/mkautoconfamal.sh @@ -23,7 +23,7 @@ set -u TMPSPACE=./mkpkg_tmp_dir VERSION=`cat $TOP/VERSION` HASH=`sed 's/^\(..........\).*/\1/' $TOP/manifest.uuid` -DATETIME=`grep '^D' $TOP/manifest | sed 's/[^0-9]//g'` +DATETIME=`grep '^D' $TOP/manifest | sed -e 's/[^0-9]//g' -e 's/\(............\).*/\1/'` # If this script is given an argument of --snapshot, then generate a # snapshot tarball named for the current checkout SHA1 hash, rather than