git-sqlite-vfs 0.0.2 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/README.md +67 -32
  2. package/bin/cli.js +53 -0
  3. package/c/Makefile +31 -16
  4. package/c/download-sqlite.cjs +17 -0
  5. package/c/git-merge-sqlitevfs.c +210 -186
  6. package/c/gitvfs.c +69 -21
  7. package/c/output/git-merge-sqlitevfs.exe +0 -0
  8. package/c/output/gitvfs.dll +0 -0
  9. package/c/output/gitvfs.o +0 -0
  10. package/c/output/gitvfs_test.exe +0 -0
  11. package/c/output/main.o +0 -0
  12. package/c/output/sqlite3.o +0 -0
  13. package/c/sqlite-autoconf-3450200/INSTALL +370 -0
  14. package/c/sqlite-autoconf-3450200/Makefile.am +20 -0
  15. package/c/sqlite-autoconf-3450200/Makefile.fallback +19 -0
  16. package/c/sqlite-autoconf-3450200/Makefile.in +1050 -0
  17. package/c/sqlite-autoconf-3450200/Makefile.msc +1069 -0
  18. package/c/sqlite-autoconf-3450200/README.txt +113 -0
  19. package/c/sqlite-autoconf-3450200/Replace.cs +223 -0
  20. package/c/sqlite-autoconf-3450200/aclocal.m4 +10204 -0
  21. package/c/sqlite-autoconf-3450200/compile +348 -0
  22. package/c/sqlite-autoconf-3450200/config.guess +1754 -0
  23. package/c/sqlite-autoconf-3450200/config.sub +1890 -0
  24. package/c/sqlite-autoconf-3450200/configure +16887 -0
  25. package/c/sqlite-autoconf-3450200/configure.ac +270 -0
  26. package/c/sqlite-autoconf-3450200/depcomp +791 -0
  27. package/c/sqlite-autoconf-3450200/install-sh +541 -0
  28. package/c/sqlite-autoconf-3450200/ltmain.sh +11251 -0
  29. package/c/sqlite-autoconf-3450200/missing +215 -0
  30. package/c/sqlite-autoconf-3450200/shell.c +29659 -0
  31. package/c/sqlite-autoconf-3450200/sqlite3.1 +161 -0
  32. package/c/sqlite-autoconf-3450200/sqlite3.c +255811 -0
  33. package/c/sqlite-autoconf-3450200/sqlite3.h +13357 -0
  34. package/c/sqlite-autoconf-3450200/sqlite3.pc.in +13 -0
  35. package/c/sqlite-autoconf-3450200/sqlite3.rc +83 -0
  36. package/c/sqlite-autoconf-3450200/sqlite3ext.h +719 -0
  37. package/c/sqlite-autoconf-3450200/sqlite3rc.h +3 -0
  38. package/c/sqlite-autoconf-3450200/tea/Makefile.in +475 -0
  39. package/c/sqlite-autoconf-3450200/tea/README +36 -0
  40. package/c/sqlite-autoconf-3450200/tea/aclocal.m4 +9 -0
  41. package/c/sqlite-autoconf-3450200/tea/configure +10179 -0
  42. package/c/sqlite-autoconf-3450200/tea/configure.ac +227 -0
  43. package/c/sqlite-autoconf-3450200/tea/doc/sqlite3.n +15 -0
  44. package/c/sqlite-autoconf-3450200/tea/generic/tclsqlite3.c +4080 -0
  45. package/c/sqlite-autoconf-3450200/tea/license.terms +6 -0
  46. package/c/sqlite-autoconf-3450200/tea/pkgIndex.tcl.in +10 -0
  47. package/c/sqlite-autoconf-3450200/tea/tclconfig/install-sh +528 -0
  48. package/c/sqlite-autoconf-3450200/tea/tclconfig/tcl.m4 +4067 -0
  49. package/c/sqlite-autoconf-3450200/tea/win/makefile.vc +430 -0
  50. package/c/sqlite-autoconf-3450200/tea/win/nmakehlp.c +815 -0
  51. package/c/sqlite-autoconf-3450200/tea/win/rules.vc +711 -0
  52. package/c/sqlite-autoconf-3450200.tar.gz +0 -0
  53. package/c/sqlite3.c +255811 -0
  54. package/c/sqlite3.h +13357 -0
  55. package/c/sqlite3ext.h +719 -0
  56. package/downloader.js +63 -0
  57. package/index.d.ts +14 -0
  58. package/index.js +103 -51
  59. package/install.js +13 -49
  60. package/package.json +22 -3
  61. package/c/output/git-merge-sqlitevfs +0 -0
  62. package/c/output/gitvfs.so +0 -0
  63. package/c/output/gitvfs_test +0 -0
  64. package/test.js +0 -209
@@ -0,0 +1,13 @@
1
+ # Package Information for pkg-config
2
+
3
+ prefix=@prefix@
4
+ exec_prefix=@exec_prefix@
5
+ libdir=@libdir@
6
+ includedir=@includedir@
7
+
8
+ Name: SQLite
9
+ Description: SQL database engine
10
+ Version: @PACKAGE_VERSION@
11
+ Libs: -L${libdir} -lsqlite3
12
+ Libs.private: @LIBS@
13
+ Cflags: -I${includedir}
@@ -0,0 +1,83 @@
1
+ /*
2
+ ** 2012 September 2
3
+ **
4
+ ** The author disclaims copyright to this source code. In place of
5
+ ** a legal notice, here is a blessing:
6
+ **
7
+ ** May you do good and not evil.
8
+ ** May you find forgiveness for yourself and forgive others.
9
+ ** May you share freely, never taking more than you give.
10
+ **
11
+ ******************************************************************************
12
+ **
13
+ ** This file contains code and resources that are specific to Windows.
14
+ */
15
+
16
+ #if !defined(_WIN32_WCE)
17
+ #include "winresrc.h"
18
+ #else
19
+ #include "windows.h"
20
+ #endif /* !defined(_WIN32_WCE) */
21
+
22
+ #if !defined(VS_FF_NONE)
23
+ # define VS_FF_NONE 0x00000000L
24
+ #endif /* !defined(VS_FF_NONE) */
25
+
26
+ #include "sqlite3.h"
27
+ #include "sqlite3rc.h"
28
+
29
+ /*
30
+ * English (U.S.) resources
31
+ */
32
+
33
+ #if defined(_WIN32)
34
+ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
35
+ #pragma code_page(1252)
36
+ #endif /* defined(_WIN32) */
37
+
38
+ /*
39
+ * Icon
40
+ */
41
+
42
+ #if !defined(RC_VERONLY)
43
+ #define IDI_SQLITE 101
44
+
45
+ IDI_SQLITE ICON "..\\art\\sqlite370.ico"
46
+ #endif /* !defined(RC_VERONLY) */
47
+
48
+ /*
49
+ * Version
50
+ */
51
+
52
+ VS_VERSION_INFO VERSIONINFO
53
+ FILEVERSION SQLITE_RESOURCE_VERSION
54
+ PRODUCTVERSION SQLITE_RESOURCE_VERSION
55
+ FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
56
+ #if defined(_DEBUG)
57
+ FILEFLAGS VS_FF_DEBUG
58
+ #else
59
+ FILEFLAGS VS_FF_NONE
60
+ #endif /* defined(_DEBUG) */
61
+ FILEOS VOS__WINDOWS32
62
+ FILETYPE VFT_DLL
63
+ FILESUBTYPE VFT2_UNKNOWN
64
+ BEGIN
65
+ BLOCK "StringFileInfo"
66
+ BEGIN
67
+ BLOCK "040904b0"
68
+ BEGIN
69
+ VALUE "CompanyName", "SQLite Development Team"
70
+ VALUE "FileDescription", "SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine."
71
+ VALUE "FileVersion", SQLITE_VERSION
72
+ VALUE "InternalName", "sqlite3"
73
+ VALUE "LegalCopyright", "http://www.sqlite.org/copyright.html"
74
+ VALUE "ProductName", "SQLite"
75
+ VALUE "ProductVersion", SQLITE_VERSION
76
+ VALUE "SourceId", SQLITE_SOURCE_ID
77
+ END
78
+ END
79
+ BLOCK "VarFileInfo"
80
+ BEGIN
81
+ VALUE "Translation", 0x409, 0x4b0
82
+ END
83
+ END