Skip to content

Commit

Permalink
Update 3 packages
Browse files Browse the repository at this point in the history
mingw-w64-i686-sqlite3 (3.45.1-1 -> 3.45.2-1)
mingw-w64-x86_64-osslsigncode (2.7-1 -> 2.8-1)
mingw-w64-x86_64-sqlite3 (3.45.1-1 -> 3.45.2-1)

Signed-off-by: Git for Windows Build Agent <[email protected]>
  • Loading branch information
Git for Windows Build Agent committed Mar 13, 2024
1 parent 2c349ce commit e5ed5b0
Show file tree
Hide file tree
Showing 172 changed files with 90 additions and 41 deletions.
Binary file modified mingw32/bin/dbhash.exe
Binary file not shown.
Binary file modified mingw32/bin/libsqlite3-0.dll
Binary file not shown.
Binary file modified mingw32/bin/showdb.exe
Binary file not shown.
Binary file modified mingw32/bin/showjournal.exe
Binary file not shown.
Binary file modified mingw32/bin/showstat4.exe
Binary file not shown.
Binary file modified mingw32/bin/showwal.exe
Binary file not shown.
Binary file modified mingw32/bin/sqldiff.exe
Binary file not shown.
Binary file modified mingw32/bin/sqlite3.exe
Binary file not shown.
Binary file modified mingw32/bin/sqlite3_analyzer.exe
Binary file not shown.
8 changes: 5 additions & 3 deletions mingw32/include/sqlite3.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ extern "C" {
** [sqlite3_libversion_number()], [sqlite3_sourceid()],
** [sqlite_version()] and [sqlite_source_id()].
*/
#define SQLITE_VERSION "3.45.1"
#define SQLITE_VERSION_NUMBER 3045001
#define SQLITE_SOURCE_ID "2024-01-30 16:01:20 e876e51a0ed5c5b3126f52e532044363a014bc594cfefa87ffb5b82257ccalt1"
#define SQLITE_VERSION "3.45.2"
#define SQLITE_VERSION_NUMBER 3045002
#define SQLITE_SOURCE_ID "2024-03-12 11:06:23 d8cd6d49b46a395b13955387d05e9e1a2a47e54fb99f3c9b59835bbefad6alt1"

/*
** CAPI3REF: Run-Time Library Version Numbers
Expand Down Expand Up @@ -420,6 +420,8 @@ typedef int (*sqlite3_callback)(void*,int,char**, char**);
** the 1st parameter to sqlite3_exec() while sqlite3_exec() is running.
** <li> The application must not modify the SQL statement text passed into
** the 2nd parameter of sqlite3_exec() while sqlite3_exec() is running.
** <li> The application must not dereference the arrays or string pointers
** passed as the 3rd and 4th callback parameters after it returns.
** </ul>
*/
SQLITE_API int sqlite3_exec(
Expand Down
Binary file modified mingw32/lib/libsqlite3.a
Binary file not shown.
2 changes: 1 addition & 1 deletion mingw32/lib/pkgconfig/sqlite3.pc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ includedir=${prefix}/include

Name: SQLite
Description: SQL database engine
Version: 3.45.1
Version: 3.45.2
Libs: -L${libdir} -lsqlite3
Libs.private: -lz
Cflags: -I${includedir}
1 change: 0 additions & 1 deletion mingw32/lib/sqlite3.45.1/pkgIndex.tcl

This file was deleted.

Binary file not shown.
1 change: 1 addition & 0 deletions mingw32/lib/sqlite3.45.2/pkgIndex.tcl
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package ifneeded sqlite3 3.45.2 [list load [file join $dir libtclsqlite3[info sharedlibextension]] sqlite3]
2 changes: 1 addition & 1 deletion mingw32/share/sqlite/extensions/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sqlite Extensions - Usage (Sqlite 3.45.1)
# Sqlite Extensions - Usage (Sqlite 3.45.2)

This folder contains shared libraries (dll files) `sqlite3.exe` can be
instructed to load at run-time in order to add functions usable in `sqlite3` SQL code.
Expand Down
Binary file modified mingw32/share/sqlite/extensions/amatch.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/anycollseq.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/appendvfs.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/base64.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/base85.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/basexx.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/blobio.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/btreeinfo.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/carray.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/cksumvfs.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/closure.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/completion.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/compress.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/csv.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/dbdump.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/decimal.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/eval.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/explain.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/fossildelta.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/fuzzer.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/ieee754.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/memstat.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/memvfs.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/mmapwarm.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/nextchar.dll
Binary file not shown.
22 changes: 22 additions & 0 deletions mingw32/share/sqlite/extensions/noop.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,24 @@ static void noopfunc(
sqlite3_result_value(context, argv[0]);
}

/*
** Implementation of the multitype_text() function.
**
** The function returns its argument. The result will always have a
** TEXT value. But if the original input is numeric, it will also
** have that numeric value.
*/
static void multitypeTextFunc(
sqlite3_context *context,
int argc,
sqlite3_value **argv
){
assert( argc==1 );
(void)argc;
(void)sqlite3_value_text(argv[0]);
sqlite3_result_value(context, argv[0]);
}

#ifdef _WIN32
__declspec(dllexport)
#endif
Expand All @@ -64,5 +82,9 @@ int sqlite3_noop_init(
rc = sqlite3_create_function(db, "noop_nd", 1,
SQLITE_UTF8,
0, noopfunc, 0, 0);
if( rc ) return rc;
rc = sqlite3_create_function(db, "multitype_text", 1,
SQLITE_UTF8,
0, multitypeTextFunc, 0, 0);
return rc;
}
Binary file modified mingw32/share/sqlite/extensions/noop.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/normalize.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/pcachetrace.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/percentile.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/prefixes.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/qpvtab.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/randomjson.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/remember.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/rot13.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/scrub.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/series.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/sha1.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/shathree.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/showauth.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/spellfix.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/sqlar.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/stmt.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/templatevtab.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/totype.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/uint.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/unionvtab.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/urifuncs.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/uuid.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/vfslog.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/vfsstat.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/vtablog.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/vtshim.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/wholenumber.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/zipfile.dll
Binary file not shown.
Binary file modified mingw32/share/sqlite/extensions/zorder.dll
Binary file not shown.
Binary file modified mingw64/bin/dbhash.exe
Binary file not shown.
Binary file modified mingw64/bin/libsqlite3-0.dll
Binary file not shown.
Binary file modified mingw64/bin/osslsigncode.exe
Binary file not shown.
Binary file modified mingw64/bin/showdb.exe
Binary file not shown.
Binary file modified mingw64/bin/showjournal.exe
Binary file not shown.
Binary file modified mingw64/bin/showstat4.exe
Binary file not shown.
Binary file modified mingw64/bin/showwal.exe
Binary file not shown.
Binary file modified mingw64/bin/sqldiff.exe
Binary file not shown.
Binary file modified mingw64/bin/sqlite3.exe
Binary file not shown.
Binary file modified mingw64/bin/sqlite3_analyzer.exe
Binary file not shown.
8 changes: 5 additions & 3 deletions mingw64/include/sqlite3.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ extern "C" {
** [sqlite3_libversion_number()], [sqlite3_sourceid()],
** [sqlite_version()] and [sqlite_source_id()].
*/
#define SQLITE_VERSION "3.45.1"
#define SQLITE_VERSION_NUMBER 3045001
#define SQLITE_SOURCE_ID "2024-01-30 16:01:20 e876e51a0ed5c5b3126f52e532044363a014bc594cfefa87ffb5b82257ccalt1"
#define SQLITE_VERSION "3.45.2"
#define SQLITE_VERSION_NUMBER 3045002
#define SQLITE_SOURCE_ID "2024-03-12 11:06:23 d8cd6d49b46a395b13955387d05e9e1a2a47e54fb99f3c9b59835bbefad6alt1"

/*
** CAPI3REF: Run-Time Library Version Numbers
Expand Down Expand Up @@ -420,6 +420,8 @@ typedef int (*sqlite3_callback)(void*,int,char**, char**);
** the 1st parameter to sqlite3_exec() while sqlite3_exec() is running.
** <li> The application must not modify the SQL statement text passed into
** the 2nd parameter of sqlite3_exec() while sqlite3_exec() is running.
** <li> The application must not dereference the arrays or string pointers
** passed as the 3rd and 4th callback parameters after it returns.
** </ul>
*/
SQLITE_API int sqlite3_exec(
Expand Down
Binary file modified mingw64/lib/libsqlite3.a
Binary file not shown.
2 changes: 1 addition & 1 deletion mingw64/lib/pkgconfig/sqlite3.pc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ includedir=${prefix}/include

Name: SQLite
Description: SQL database engine
Version: 3.45.1
Version: 3.45.2
Libs: -L${libdir} -lsqlite3
Libs.private: -lz
Cflags: -I${includedir}
1 change: 0 additions & 1 deletion mingw64/lib/sqlite3.45.1/pkgIndex.tcl

This file was deleted.

Binary file not shown.
1 change: 1 addition & 0 deletions mingw64/lib/sqlite3.45.2/pkgIndex.tcl
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package ifneeded sqlite3 3.45.2 [list load [file join $dir libtclsqlite3[info sharedlibextension]] sqlite3]
2 changes: 1 addition & 1 deletion mingw64/share/sqlite/extensions/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sqlite Extensions - Usage (Sqlite 3.45.1)
# Sqlite Extensions - Usage (Sqlite 3.45.2)

This folder contains shared libraries (dll files) `sqlite3.exe` can be
instructed to load at run-time in order to add functions usable in `sqlite3` SQL code.
Expand Down
Binary file modified mingw64/share/sqlite/extensions/amatch.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/anycollseq.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/appendvfs.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/base64.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/base85.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/basexx.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/blobio.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/btreeinfo.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/carray.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/cksumvfs.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/closure.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/completion.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/compress.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/csv.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/dbdump.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/decimal.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/eval.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/explain.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/fossildelta.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/fuzzer.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/ieee754.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/memstat.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/memvfs.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/mmapwarm.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/nextchar.dll
Binary file not shown.
22 changes: 22 additions & 0 deletions mingw64/share/sqlite/extensions/noop.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,24 @@ static void noopfunc(
sqlite3_result_value(context, argv[0]);
}

/*
** Implementation of the multitype_text() function.
**
** The function returns its argument. The result will always have a
** TEXT value. But if the original input is numeric, it will also
** have that numeric value.
*/
static void multitypeTextFunc(
sqlite3_context *context,
int argc,
sqlite3_value **argv
){
assert( argc==1 );
(void)argc;
(void)sqlite3_value_text(argv[0]);
sqlite3_result_value(context, argv[0]);
}

#ifdef _WIN32
__declspec(dllexport)
#endif
Expand All @@ -64,5 +82,9 @@ int sqlite3_noop_init(
rc = sqlite3_create_function(db, "noop_nd", 1,
SQLITE_UTF8,
0, noopfunc, 0, 0);
if( rc ) return rc;
rc = sqlite3_create_function(db, "multitype_text", 1,
SQLITE_UTF8,
0, multitypeTextFunc, 0, 0);
return rc;
}
Binary file modified mingw64/share/sqlite/extensions/noop.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/normalize.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/pcachetrace.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/percentile.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/prefixes.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/qpvtab.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/randomjson.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/remember.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/rot13.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/scrub.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/series.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/sha1.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/shathree.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/showauth.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/spellfix.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/sqlar.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/stmt.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/templatevtab.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/totype.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/uint.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/unionvtab.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/urifuncs.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/uuid.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/vfslog.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/vfsstat.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/vtablog.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/vtshim.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/wholenumber.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/zipfile.dll
Binary file not shown.
Binary file modified mingw64/share/sqlite/extensions/zorder.dll
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
mingw-w64-i686-sqlite3

%VERSION%
3.45.1-1
3.45.2-1

%BASE%
mingw-w64-sqlite3
Expand All @@ -17,16 +17,16 @@ https://www.sqlite.org/
any

%BUILDDATE%
1706855926
1710256056

%INSTALLDATE%
1706929173
1710298777

%PACKAGER%
CI (msys2/msys2-autobuild/b78070c6/7752304897)
CI (msys2/msys2-autobuild/dad66715/8251076287)

%SIZE%
19057039
19070828

%REASON%
1
Expand All @@ -51,6 +51,6 @@ mingw-w64-i686-zlib
mingw-w64-i686-sqlite-analyzer

%PROVIDES%
mingw-w64-i686-sqlite=3.45.1
mingw-w64-i686-sqlite-analyzer=3.45.1
mingw-w64-i686-sqlite=3.45.2
mingw-w64-i686-sqlite-analyzer=3.45.2

Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ mingw32/lib/libsqlite3.a
mingw32/lib/libsqlite3.dll.a
mingw32/lib/pkgconfig/
mingw32/lib/pkgconfig/sqlite3.pc
mingw32/lib/sqlite3.45.1/
mingw32/lib/sqlite3.45.1/libtclsqlite3.dll
mingw32/lib/sqlite3.45.1/libtclsqlite3.dll.a
mingw32/lib/sqlite3.45.1/pkgIndex.tcl
mingw32/lib/sqlite3.45.2/
mingw32/lib/sqlite3.45.2/libtclsqlite3.dll
mingw32/lib/sqlite3.45.2/libtclsqlite3.dll.a
mingw32/lib/sqlite3.45.2/pkgIndex.tcl
mingw32/share/
mingw32/share/licenses/
mingw32/share/licenses/sqlite3/
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ any
1682971619

%INSTALLDATE%
1710212389
1710298783

%PACKAGER%
Johannes Schindelin <[email protected]>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
mingw-w64-x86_64-osslsigncode

%VERSION%
2.7-1
2.8-1

%BASE%
mingw-w64-osslsigncode
Expand All @@ -17,21 +17,22 @@ https://github.com/mtrojnar/osslsigncode
any

%BUILDDATE%
1696451511
1710255915

%INSTALLDATE%
1696647577
1710298777

%PACKAGER%
CI (msys2/msys2-autobuild/a79a8c4c/6410841885)
CI (msys2/msys2-autobuild/dad66715/8251076287)

%SIZE%
214846
238440

%LICENSE%
GPL3
spdx:GPL-3.0-or-later

%VALIDATION%
sha256
pgp

%DEPENDS%
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
mingw-w64-x86_64-sqlite3

%VERSION%
3.45.1-1
3.45.2-1

%BASE%
mingw-w64-sqlite3
Expand All @@ -17,16 +17,16 @@ https://www.sqlite.org/
any

%BUILDDATE%
1706855921
1710255990

%INSTALLDATE%
1706929175
1710298777

%PACKAGER%
CI (msys2/msys2-autobuild/b78070c6/7752304897)
CI (msys2/msys2-autobuild/dad66715/8251076287)

%SIZE%
19977282
19991139

%REASON%
1
Expand All @@ -51,6 +51,6 @@ mingw-w64-x86_64-zlib
mingw-w64-x86_64-sqlite-analyzer

%PROVIDES%
mingw-w64-x86_64-sqlite=3.45.1
mingw-w64-x86_64-sqlite-analyzer=3.45.1
mingw-w64-x86_64-sqlite=3.45.2
mingw-w64-x86_64-sqlite-analyzer=3.45.2

Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ mingw64/lib/libsqlite3.a
mingw64/lib/libsqlite3.dll.a
mingw64/lib/pkgconfig/
mingw64/lib/pkgconfig/sqlite3.pc
mingw64/lib/sqlite3.45.1/
mingw64/lib/sqlite3.45.1/libtclsqlite3.dll
mingw64/lib/sqlite3.45.1/libtclsqlite3.dll.a
mingw64/lib/sqlite3.45.1/pkgIndex.tcl
mingw64/lib/sqlite3.45.2/
mingw64/lib/sqlite3.45.2/libtclsqlite3.dll
mingw64/lib/sqlite3.45.2/libtclsqlite3.dll.a
mingw64/lib/sqlite3.45.2/pkgIndex.tcl
mingw64/share/
mingw64/share/licenses/
mingw64/share/licenses/sqlite3/
Expand Down
Binary file not shown.
Binary file modified var/lib/pacman/sync/clang32.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/clang32.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/clang64.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/clang64.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/clangarm64.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/clangarm64.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/mingw32.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/mingw32.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/mingw64.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/mingw64.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/ucrt64.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/ucrt64.db.sig
Binary file not shown.

0 comments on commit e5ed5b0

Please sign in to comment.