mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-05 15:55:57 +03:00
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
This commit is contained in:
12
manifest
12
manifest
@@ -1,5 +1,5 @@
|
|||||||
C Updates\sto\sthe\sautoconf\starball\sREADME.txt\sfile.
|
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:17:14.170
|
D 2016-02-10T13:36:17.175
|
||||||
F Makefile.in 4e90dc1521879022aa9479268a4cd141d1771142
|
F Makefile.in 4e90dc1521879022aa9479268a4cd141d1771142
|
||||||
F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
|
F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
|
||||||
F Makefile.msc 0fe3b22f8e29bcde0533ada7957a5f15835d797a
|
F Makefile.msc 0fe3b22f8e29bcde0533ada7957a5f15835d797a
|
||||||
@@ -1382,7 +1382,7 @@ F tool/lemon.c 799e73e19a33b8dd7767a7fa34618ed2a9c2397d
|
|||||||
F tool/lempar.c 3ec1463a034b37d87d782be5f6b8b10a3b1ecbe7
|
F tool/lempar.c 3ec1463a034b37d87d782be5f6b8b10a3b1ecbe7
|
||||||
F tool/loadfts.c c3c64e4d5e90e8ba41159232c2189dba4be7b862
|
F tool/loadfts.c c3c64e4d5e90e8ba41159232c2189dba4be7b862
|
||||||
F tool/logest.c eef612f8adf4d0993dafed0416064cf50d5d33c6
|
F tool/logest.c eef612f8adf4d0993dafed0416064cf50d5d33c6
|
||||||
F tool/mkautoconfamal.sh 11cd32789d8b47bfc09c46487ca7686107b767ef
|
F tool/mkautoconfamal.sh c78caa3214f25dc28ea157b5a82abb311f209906
|
||||||
F tool/mkkeywordhash.c f7f3b342211ac6a14258b9726d5b97cf4f548f22
|
F tool/mkkeywordhash.c f7f3b342211ac6a14258b9726d5b97cf4f548f22
|
||||||
F tool/mkmsvcmin.tcl d57e6efc9428605f5418d0b235721ddf7b5d9c0b
|
F tool/mkmsvcmin.tcl d57e6efc9428605f5418d0b235721ddf7b5d9c0b
|
||||||
F tool/mkopcodec.tcl d1b6362bd3aa80d5520d4d6f3765badf01f6c43c
|
F tool/mkopcodec.tcl d1b6362bd3aa80d5520d4d6f3765badf01f6c43c
|
||||||
@@ -1427,7 +1427,7 @@ F tool/vdbe_profile.tcl 246d0da094856d72d2c12efec03250d71639d19f
|
|||||||
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
|
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
|
||||||
F tool/warnings.sh 48bd54594752d5be3337f12c72f28d2080cb630b
|
F tool/warnings.sh 48bd54594752d5be3337f12c72f28d2080cb630b
|
||||||
F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
|
F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
|
||||||
P 070ec66f677cdcd30087871feb8afd010a184b75
|
P a3e911e3aa3e35446bed7f300bfe03f66e1494db
|
||||||
R c35b2492f0a904d8e09d6ee47a7b531b
|
R 30240c9ea7a51d9fb3097cfc2aff9b45
|
||||||
U drh
|
U drh
|
||||||
Z 9b2d2749667b4588e32d718038a8ef78
|
Z 38d599a4bb70ac4c3aebf51493f6b3e5
|
||||||
|
@@ -1 +1 @@
|
|||||||
a3e911e3aa3e35446bed7f300bfe03f66e1494db
|
604f77754797a4066f6cf275c7bc8a68d2839c2d
|
@@ -23,7 +23,7 @@ set -u
|
|||||||
TMPSPACE=./mkpkg_tmp_dir
|
TMPSPACE=./mkpkg_tmp_dir
|
||||||
VERSION=`cat $TOP/VERSION`
|
VERSION=`cat $TOP/VERSION`
|
||||||
HASH=`sed 's/^\(..........\).*/\1/' $TOP/manifest.uuid`
|
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
|
# If this script is given an argument of --snapshot, then generate a
|
||||||
# snapshot tarball named for the current checkout SHA1 hash, rather than
|
# snapshot tarball named for the current checkout SHA1 hash, rather than
|
||||||
|
Reference in New Issue
Block a user