rugged 0.28.4 → 0.28.4.1

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 (350) hide show
  1. checksums.yaml +4 -4
  2. data/lib/rugged/version.rb +1 -1
  3. data/vendor/libgit2/AUTHORS +0 -1
  4. data/vendor/libgit2/CMakeLists.txt +16 -36
  5. data/vendor/libgit2/COPYING +0 -28
  6. data/vendor/libgit2/cmake/Modules/EnableWarnings.cmake +1 -5
  7. data/vendor/libgit2/cmake/Modules/FindCoreFoundation.cmake +2 -2
  8. data/vendor/libgit2/cmake/Modules/FindGSSAPI.cmake +1 -1
  9. data/vendor/libgit2/cmake/Modules/FindSecurity.cmake +2 -2
  10. data/vendor/libgit2/cmake/Modules/FindStatNsec.cmake +0 -6
  11. data/vendor/libgit2/deps/http-parser/http_parser.c +6 -11
  12. data/vendor/libgit2/deps/regex/CMakeLists.txt +2 -0
  13. data/vendor/libgit2/deps/regex/COPYING +502 -0
  14. data/vendor/libgit2/deps/regex/config.h +7 -0
  15. data/vendor/libgit2/deps/regex/regcomp.c +3857 -0
  16. data/vendor/libgit2/deps/regex/regex.c +92 -0
  17. data/vendor/libgit2/deps/regex/regex.h +582 -0
  18. data/vendor/libgit2/deps/regex/regex_internal.c +1744 -0
  19. data/vendor/libgit2/deps/regex/regex_internal.h +819 -0
  20. data/vendor/libgit2/deps/regex/regexec.c +4369 -0
  21. data/vendor/libgit2/deps/zlib/adler32.c +7 -0
  22. data/vendor/libgit2/deps/zlib/crc32.c +7 -0
  23. data/vendor/libgit2/include/git2.h +0 -2
  24. data/vendor/libgit2/include/git2/apply.h +2 -22
  25. data/vendor/libgit2/include/git2/attr.h +12 -19
  26. data/vendor/libgit2/include/git2/blame.h +2 -2
  27. data/vendor/libgit2/include/git2/blob.h +12 -44
  28. data/vendor/libgit2/include/git2/buffer.h +14 -20
  29. data/vendor/libgit2/include/git2/checkout.h +14 -46
  30. data/vendor/libgit2/include/git2/cherrypick.h +3 -3
  31. data/vendor/libgit2/include/git2/clone.h +2 -2
  32. data/vendor/libgit2/include/git2/commit.h +1 -23
  33. data/vendor/libgit2/include/git2/common.h +5 -7
  34. data/vendor/libgit2/include/git2/config.h +12 -12
  35. data/vendor/libgit2/include/git2/deprecated.h +3 -243
  36. data/vendor/libgit2/include/git2/describe.h +4 -4
  37. data/vendor/libgit2/include/git2/diff.h +14 -16
  38. data/vendor/libgit2/include/git2/filter.h +0 -8
  39. data/vendor/libgit2/include/git2/index.h +1 -2
  40. data/vendor/libgit2/include/git2/indexer.h +4 -48
  41. data/vendor/libgit2/include/git2/inttypes.h +309 -0
  42. data/vendor/libgit2/include/git2/merge.h +10 -6
  43. data/vendor/libgit2/include/git2/net.h +5 -0
  44. data/vendor/libgit2/include/git2/object.h +14 -2
  45. data/vendor/libgit2/include/git2/odb.h +2 -3
  46. data/vendor/libgit2/include/git2/odb_backend.h +4 -5
  47. data/vendor/libgit2/include/git2/oid.h +1 -1
  48. data/vendor/libgit2/include/git2/pack.h +1 -12
  49. data/vendor/libgit2/include/git2/proxy.h +3 -5
  50. data/vendor/libgit2/include/git2/rebase.h +2 -46
  51. data/vendor/libgit2/include/git2/refs.h +0 -19
  52. data/vendor/libgit2/include/git2/remote.h +12 -35
  53. data/vendor/libgit2/include/git2/repository.h +2 -24
  54. data/vendor/libgit2/include/git2/revert.h +1 -1
  55. data/vendor/libgit2/include/git2/stash.h +3 -3
  56. data/vendor/libgit2/include/git2/status.h +16 -25
  57. data/vendor/libgit2/include/git2/submodule.h +3 -20
  58. data/vendor/libgit2/include/git2/sys/alloc.h +9 -9
  59. data/vendor/libgit2/include/git2/sys/odb_backend.h +4 -48
  60. data/vendor/libgit2/include/git2/sys/refdb_backend.h +21 -57
  61. data/vendor/libgit2/include/git2/sys/repository.h +1 -5
  62. data/vendor/libgit2/include/git2/sys/time.h +31 -0
  63. data/vendor/libgit2/include/git2/sys/transport.h +2 -2
  64. data/vendor/libgit2/include/git2/tag.h +2 -11
  65. data/vendor/libgit2/include/git2/trace.h +2 -2
  66. data/vendor/libgit2/include/git2/transport.h +340 -11
  67. data/vendor/libgit2/include/git2/tree.h +1 -1
  68. data/vendor/libgit2/include/git2/types.h +89 -4
  69. data/vendor/libgit2/include/git2/version.h +2 -2
  70. data/vendor/libgit2/include/git2/worktree.h +5 -5
  71. data/vendor/libgit2/libgit2.pc.in +13 -0
  72. data/vendor/libgit2/src/CMakeLists.txt +222 -88
  73. data/vendor/libgit2/src/alloc.c +14 -2
  74. data/vendor/libgit2/src/apply.c +30 -60
  75. data/vendor/libgit2/src/attr.c +64 -70
  76. data/vendor/libgit2/src/attr_file.c +96 -189
  77. data/vendor/libgit2/src/attr_file.h +9 -9
  78. data/vendor/libgit2/src/attrcache.c +46 -44
  79. data/vendor/libgit2/src/attrcache.h +1 -2
  80. data/vendor/libgit2/src/blame.c +5 -17
  81. data/vendor/libgit2/src/blame.h +1 -1
  82. data/vendor/libgit2/src/blame_git.c +7 -21
  83. data/vendor/libgit2/src/blob.c +17 -81
  84. data/vendor/libgit2/src/blob.h +2 -2
  85. data/vendor/libgit2/src/branch.c +5 -29
  86. data/vendor/libgit2/src/buffer.c +7 -14
  87. data/vendor/libgit2/src/cache.c +33 -26
  88. data/vendor/libgit2/src/cache.h +1 -1
  89. data/vendor/libgit2/src/cc-compat.h +0 -5
  90. data/vendor/libgit2/src/checkout.c +16 -26
  91. data/vendor/libgit2/src/cherrypick.c +3 -9
  92. data/vendor/libgit2/src/clone.c +7 -29
  93. data/vendor/libgit2/src/clone.h +0 -4
  94. data/vendor/libgit2/src/commit.c +21 -69
  95. data/vendor/libgit2/src/commit.h +0 -6
  96. data/vendor/libgit2/src/commit_list.c +76 -28
  97. data/vendor/libgit2/src/commit_list.h +2 -2
  98. data/vendor/libgit2/src/common.h +75 -3
  99. data/vendor/libgit2/src/config.c +40 -31
  100. data/vendor/libgit2/src/config.h +6 -7
  101. data/vendor/libgit2/src/config_backend.h +0 -12
  102. data/vendor/libgit2/src/config_cache.c +39 -39
  103. data/vendor/libgit2/src/config_entries.c +99 -69
  104. data/vendor/libgit2/src/config_entries.h +0 -1
  105. data/vendor/libgit2/src/config_file.c +380 -337
  106. data/vendor/libgit2/src/config_mem.c +16 -12
  107. data/vendor/libgit2/src/config_parse.c +29 -49
  108. data/vendor/libgit2/src/config_parse.h +12 -13
  109. data/vendor/libgit2/src/crlf.c +14 -14
  110. data/vendor/libgit2/src/describe.c +20 -21
  111. data/vendor/libgit2/src/diff.c +58 -43
  112. data/vendor/libgit2/src/diff.h +1 -2
  113. data/vendor/libgit2/src/diff_driver.c +38 -37
  114. data/vendor/libgit2/src/diff_file.c +7 -9
  115. data/vendor/libgit2/src/diff_file.h +1 -1
  116. data/vendor/libgit2/src/diff_generate.c +85 -135
  117. data/vendor/libgit2/src/diff_generate.h +2 -2
  118. data/vendor/libgit2/src/diff_parse.c +1 -1
  119. data/vendor/libgit2/src/diff_print.c +13 -25
  120. data/vendor/libgit2/src/diff_stats.c +1 -1
  121. data/vendor/libgit2/src/diff_tform.c +4 -4
  122. data/vendor/libgit2/src/errors.c +22 -12
  123. data/vendor/libgit2/src/features.h.in +2 -9
  124. data/vendor/libgit2/src/fetch.c +2 -7
  125. data/vendor/libgit2/src/fetchhead.c +1 -1
  126. data/vendor/libgit2/src/filebuf.c +10 -6
  127. data/vendor/libgit2/src/filebuf.h +2 -2
  128. data/vendor/libgit2/src/{futils.c → fileops.c} +17 -21
  129. data/vendor/libgit2/src/{futils.h → fileops.h} +5 -5
  130. data/vendor/libgit2/src/filter.c +8 -16
  131. data/vendor/libgit2/src/fnmatch.c +248 -0
  132. data/vendor/libgit2/src/fnmatch.h +48 -0
  133. data/vendor/libgit2/src/global.c +40 -12
  134. data/vendor/libgit2/src/global.h +2 -0
  135. data/vendor/libgit2/src/hash.c +0 -61
  136. data/vendor/libgit2/src/hash.h +21 -19
  137. data/vendor/libgit2/src/hash/{sha1/collisiondetect.c → hash_collisiondetect.h} +17 -14
  138. data/vendor/libgit2/src/hash/{sha1/common_crypto.c → hash_common_crypto.h} +19 -15
  139. data/vendor/libgit2/src/hash/{sha1/generic.c → hash_generic.c} +10 -22
  140. data/vendor/libgit2/src/hash/{sha1/generic.h → hash_generic.h} +14 -4
  141. data/vendor/libgit2/src/hash/{sha1/mbedtls.c → hash_mbedtls.c} +7 -15
  142. data/vendor/libgit2/src/hash/{sha1/mbedtls.h → hash_mbedtls.h} +11 -6
  143. data/vendor/libgit2/src/hash/{sha1/openssl.c → hash_openssl.h} +18 -14
  144. data/vendor/libgit2/src/hash/{sha1/win32.c → hash_win32.c} +24 -34
  145. data/vendor/libgit2/src/hash/{sha1/win32.h → hash_win32.h} +19 -6
  146. data/vendor/libgit2/src/hash/{sha1/sha1dc → sha1dc}/sha1.c +3 -14
  147. data/vendor/libgit2/src/hash/{sha1/sha1dc → sha1dc}/sha1.h +0 -0
  148. data/vendor/libgit2/src/hash/{sha1/sha1dc → sha1dc}/ubc_check.c +0 -0
  149. data/vendor/libgit2/src/hash/{sha1/sha1dc → sha1dc}/ubc_check.h +0 -0
  150. data/vendor/libgit2/src/hashsig.c +1 -1
  151. data/vendor/libgit2/src/idxmap.c +65 -91
  152. data/vendor/libgit2/src/idxmap.h +15 -151
  153. data/vendor/libgit2/src/ignore.c +38 -32
  154. data/vendor/libgit2/src/index.c +43 -66
  155. data/vendor/libgit2/src/index.h +1 -1
  156. data/vendor/libgit2/src/indexer.c +70 -69
  157. data/vendor/libgit2/src/integer.h +4 -39
  158. data/vendor/libgit2/src/iterator.c +22 -27
  159. data/vendor/libgit2/src/map.h +1 -1
  160. data/vendor/libgit2/src/merge.c +44 -58
  161. data/vendor/libgit2/src/merge_driver.c +4 -4
  162. data/vendor/libgit2/src/merge_file.c +1 -1
  163. data/vendor/libgit2/src/mwindow.c +23 -18
  164. data/vendor/libgit2/src/mwindow.h +4 -4
  165. data/vendor/libgit2/src/netops.c +165 -55
  166. data/vendor/libgit2/src/netops.h +25 -3
  167. data/vendor/libgit2/src/notes.c +2 -2
  168. data/vendor/libgit2/src/object.c +2 -2
  169. data/vendor/libgit2/src/object.h +0 -2
  170. data/vendor/libgit2/src/odb.c +23 -41
  171. data/vendor/libgit2/src/odb.h +2 -3
  172. data/vendor/libgit2/src/odb_loose.c +10 -17
  173. data/vendor/libgit2/src/odb_mempack.c +23 -10
  174. data/vendor/libgit2/src/odb_pack.c +4 -4
  175. data/vendor/libgit2/src/offmap.c +55 -43
  176. data/vendor/libgit2/src/offmap.h +24 -102
  177. data/vendor/libgit2/src/oid.c +1 -6
  178. data/vendor/libgit2/src/oidmap.c +57 -39
  179. data/vendor/libgit2/src/oidmap.h +19 -99
  180. data/vendor/libgit2/src/pack-objects.c +32 -25
  181. data/vendor/libgit2/src/pack-objects.h +1 -1
  182. data/vendor/libgit2/src/pack.c +47 -45
  183. data/vendor/libgit2/src/pack.h +14 -12
  184. data/vendor/libgit2/src/parse.c +0 -10
  185. data/vendor/libgit2/src/parse.h +3 -3
  186. data/vendor/libgit2/src/patch.c +1 -1
  187. data/vendor/libgit2/src/patch_generate.c +2 -2
  188. data/vendor/libgit2/src/patch_parse.c +31 -124
  189. data/vendor/libgit2/src/path.c +6 -43
  190. data/vendor/libgit2/src/path.h +0 -2
  191. data/vendor/libgit2/src/pathspec.c +13 -13
  192. data/vendor/libgit2/src/pool.c +22 -26
  193. data/vendor/libgit2/src/pool.h +7 -7
  194. data/vendor/libgit2/src/posix.c +7 -7
  195. data/vendor/libgit2/src/posix.h +1 -12
  196. data/vendor/libgit2/src/proxy.c +2 -7
  197. data/vendor/libgit2/src/push.c +5 -10
  198. data/vendor/libgit2/src/reader.c +2 -2
  199. data/vendor/libgit2/src/rebase.c +7 -66
  200. data/vendor/libgit2/src/refdb.c +0 -12
  201. data/vendor/libgit2/src/refdb_fs.c +165 -214
  202. data/vendor/libgit2/src/reflog.c +13 -11
  203. data/vendor/libgit2/src/refs.c +18 -24
  204. data/vendor/libgit2/src/refspec.c +16 -9
  205. data/vendor/libgit2/src/remote.c +52 -50
  206. data/vendor/libgit2/src/remote.h +2 -2
  207. data/vendor/libgit2/src/repository.c +100 -115
  208. data/vendor/libgit2/src/repository.h +40 -49
  209. data/vendor/libgit2/src/revert.c +3 -8
  210. data/vendor/libgit2/src/revparse.c +19 -18
  211. data/vendor/libgit2/src/revwalk.c +30 -63
  212. data/vendor/libgit2/src/revwalk.h +0 -20
  213. data/vendor/libgit2/src/settings.c +0 -5
  214. data/vendor/libgit2/src/sortedcache.c +26 -12
  215. data/vendor/libgit2/src/sortedcache.h +1 -1
  216. data/vendor/libgit2/src/stash.c +65 -45
  217. data/vendor/libgit2/src/status.c +9 -15
  218. data/vendor/libgit2/src/{allocators/stdalloc.c → stdalloc.c} +4 -3
  219. data/vendor/libgit2/src/{allocators/stdalloc.h → stdalloc.h} +4 -4
  220. data/vendor/libgit2/src/streams/openssl.c +0 -20
  221. data/vendor/libgit2/src/streams/socket.c +2 -2
  222. data/vendor/libgit2/src/strmap.c +84 -37
  223. data/vendor/libgit2/src/strmap.h +33 -105
  224. data/vendor/libgit2/src/submodule.c +70 -102
  225. data/vendor/libgit2/src/submodule.h +1 -1
  226. data/vendor/libgit2/src/sysdir.c +1 -11
  227. data/vendor/libgit2/src/tag.c +2 -10
  228. data/vendor/libgit2/src/trace.c +1 -1
  229. data/vendor/libgit2/src/trace.h +2 -2
  230. data/vendor/libgit2/src/trailer.c +32 -46
  231. data/vendor/libgit2/src/transaction.c +9 -10
  232. data/vendor/libgit2/src/transports/auth.c +9 -10
  233. data/vendor/libgit2/src/transports/auth.h +4 -11
  234. data/vendor/libgit2/src/transports/auth_negotiate.c +9 -23
  235. data/vendor/libgit2/src/transports/auth_negotiate.h +2 -2
  236. data/vendor/libgit2/src/transports/cred.c +6 -6
  237. data/vendor/libgit2/src/{allocators/win32_crtdbg.h → transports/cred.h} +4 -5
  238. data/vendor/libgit2/src/transports/git.c +16 -11
  239. data/vendor/libgit2/src/transports/http.c +276 -419
  240. data/vendor/libgit2/src/transports/http.h +1 -1
  241. data/vendor/libgit2/src/transports/local.c +9 -9
  242. data/vendor/libgit2/src/transports/smart.c +17 -17
  243. data/vendor/libgit2/src/transports/smart.h +2 -2
  244. data/vendor/libgit2/src/transports/smart_protocol.c +60 -36
  245. data/vendor/libgit2/src/transports/ssh.c +36 -46
  246. data/vendor/libgit2/src/transports/winhttp.c +207 -231
  247. data/vendor/libgit2/src/tree-cache.c +7 -14
  248. data/vendor/libgit2/src/tree.c +24 -10
  249. data/vendor/libgit2/src/unix/map.c +1 -1
  250. data/vendor/libgit2/src/unix/posix.h +11 -1
  251. data/vendor/libgit2/src/userdiff.h +1 -3
  252. data/vendor/libgit2/src/util.c +53 -51
  253. data/vendor/libgit2/src/util.h +21 -16
  254. data/vendor/libgit2/src/win32/map.c +5 -3
  255. data/vendor/libgit2/src/win32/path_w32.c +2 -12
  256. data/vendor/libgit2/src/win32/path_w32.h +29 -0
  257. data/vendor/libgit2/src/win32/posix.h +4 -1
  258. data/vendor/libgit2/src/win32/posix_w32.c +5 -40
  259. data/vendor/libgit2/src/win32/precompiled.h +2 -0
  260. data/vendor/libgit2/src/win32/thread.c +10 -5
  261. data/vendor/libgit2/src/win32/w32_buffer.c +3 -7
  262. data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.c +93 -0
  263. data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +2 -0
  264. data/vendor/libgit2/src/win32/w32_stack.c +9 -4
  265. data/vendor/libgit2/src/win32/w32_stack.h +3 -3
  266. data/vendor/libgit2/src/win32/w32_util.c +0 -31
  267. data/vendor/libgit2/src/win32/w32_util.h +32 -6
  268. data/vendor/libgit2/src/worktree.c +22 -36
  269. data/vendor/libgit2/src/xdiff/xdiffi.c +1 -1
  270. data/vendor/libgit2/src/xdiff/xmerge.c +0 -12
  271. data/vendor/libgit2/src/xdiff/xpatience.c +0 -3
  272. metadata +34 -98
  273. data/vendor/libgit2/cmake/Modules/FindGSSFramework.cmake +0 -28
  274. data/vendor/libgit2/cmake/Modules/FindPCRE.cmake +0 -38
  275. data/vendor/libgit2/cmake/Modules/FindPCRE2.cmake +0 -37
  276. data/vendor/libgit2/cmake/Modules/PkgBuildConfig.cmake +0 -110
  277. data/vendor/libgit2/cmake/Modules/SelectGSSAPI.cmake +0 -53
  278. data/vendor/libgit2/cmake/Modules/SelectHTTPSBackend.cmake +0 -124
  279. data/vendor/libgit2/cmake/Modules/SelectHashes.cmake +0 -66
  280. data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +0 -21
  281. data/vendor/libgit2/deps/ntlmclient/compat.h +0 -33
  282. data/vendor/libgit2/deps/ntlmclient/crypt.h +0 -64
  283. data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.c +0 -120
  284. data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.h +0 -18
  285. data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.c +0 -145
  286. data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.h +0 -18
  287. data/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +0 -130
  288. data/vendor/libgit2/deps/ntlmclient/crypt_openssl.h +0 -21
  289. data/vendor/libgit2/deps/ntlmclient/ntlm.c +0 -1420
  290. data/vendor/libgit2/deps/ntlmclient/ntlm.h +0 -174
  291. data/vendor/libgit2/deps/ntlmclient/ntlmclient.h +0 -320
  292. data/vendor/libgit2/deps/ntlmclient/unicode.h +0 -36
  293. data/vendor/libgit2/deps/ntlmclient/unicode_builtin.c +0 -445
  294. data/vendor/libgit2/deps/ntlmclient/unicode_iconv.c +0 -201
  295. data/vendor/libgit2/deps/ntlmclient/utf8.h +0 -1257
  296. data/vendor/libgit2/deps/ntlmclient/util.c +0 -21
  297. data/vendor/libgit2/deps/ntlmclient/util.h +0 -14
  298. data/vendor/libgit2/deps/pcre/CMakeLists.txt +0 -140
  299. data/vendor/libgit2/deps/pcre/COPYING +0 -5
  300. data/vendor/libgit2/deps/pcre/cmake/COPYING-CMAKE-SCRIPTS +0 -22
  301. data/vendor/libgit2/deps/pcre/cmake/FindEditline.cmake +0 -17
  302. data/vendor/libgit2/deps/pcre/cmake/FindPackageHandleStandardArgs.cmake +0 -58
  303. data/vendor/libgit2/deps/pcre/cmake/FindReadline.cmake +0 -29
  304. data/vendor/libgit2/deps/pcre/config.h.in +0 -57
  305. data/vendor/libgit2/deps/pcre/pcre.h +0 -641
  306. data/vendor/libgit2/deps/pcre/pcre_byte_order.c +0 -319
  307. data/vendor/libgit2/deps/pcre/pcre_chartables.c +0 -198
  308. data/vendor/libgit2/deps/pcre/pcre_compile.c +0 -9800
  309. data/vendor/libgit2/deps/pcre/pcre_config.c +0 -190
  310. data/vendor/libgit2/deps/pcre/pcre_dfa_exec.c +0 -3676
  311. data/vendor/libgit2/deps/pcre/pcre_exec.c +0 -7173
  312. data/vendor/libgit2/deps/pcre/pcre_fullinfo.c +0 -245
  313. data/vendor/libgit2/deps/pcre/pcre_get.c +0 -669
  314. data/vendor/libgit2/deps/pcre/pcre_globals.c +0 -86
  315. data/vendor/libgit2/deps/pcre/pcre_internal.h +0 -2787
  316. data/vendor/libgit2/deps/pcre/pcre_jit_compile.c +0 -11913
  317. data/vendor/libgit2/deps/pcre/pcre_maketables.c +0 -156
  318. data/vendor/libgit2/deps/pcre/pcre_newline.c +0 -210
  319. data/vendor/libgit2/deps/pcre/pcre_ord2utf8.c +0 -94
  320. data/vendor/libgit2/deps/pcre/pcre_printint.c +0 -834
  321. data/vendor/libgit2/deps/pcre/pcre_refcount.c +0 -92
  322. data/vendor/libgit2/deps/pcre/pcre_string_utils.c +0 -211
  323. data/vendor/libgit2/deps/pcre/pcre_study.c +0 -1686
  324. data/vendor/libgit2/deps/pcre/pcre_tables.c +0 -727
  325. data/vendor/libgit2/deps/pcre/pcre_ucd.c +0 -3644
  326. data/vendor/libgit2/deps/pcre/pcre_valid_utf8.c +0 -301
  327. data/vendor/libgit2/deps/pcre/pcre_version.c +0 -98
  328. data/vendor/libgit2/deps/pcre/pcre_xclass.c +0 -268
  329. data/vendor/libgit2/deps/pcre/pcreposix.c +0 -421
  330. data/vendor/libgit2/deps/pcre/pcreposix.h +0 -117
  331. data/vendor/libgit2/deps/pcre/ucp.h +0 -224
  332. data/vendor/libgit2/include/git2/cert.h +0 -135
  333. data/vendor/libgit2/include/git2/cred.h +0 -308
  334. data/vendor/libgit2/include/git2/sys/cred.h +0 -90
  335. data/vendor/libgit2/src/allocators/win32_crtdbg.c +0 -118
  336. data/vendor/libgit2/src/config_snapshot.c +0 -206
  337. data/vendor/libgit2/src/errors.h +0 -81
  338. data/vendor/libgit2/src/hash/sha1.h +0 -38
  339. data/vendor/libgit2/src/hash/sha1/collisiondetect.h +0 -19
  340. data/vendor/libgit2/src/hash/sha1/common_crypto.h +0 -19
  341. data/vendor/libgit2/src/hash/sha1/openssl.h +0 -19
  342. data/vendor/libgit2/src/net.c +0 -184
  343. data/vendor/libgit2/src/net.h +0 -36
  344. data/vendor/libgit2/src/regexp.c +0 -221
  345. data/vendor/libgit2/src/regexp.h +0 -97
  346. data/vendor/libgit2/src/transports/auth_ntlm.c +0 -223
  347. data/vendor/libgit2/src/transports/auth_ntlm.h +0 -35
  348. data/vendor/libgit2/src/wildmatch.c +0 -320
  349. data/vendor/libgit2/src/wildmatch.h +0 -23
  350. data/vendor/libgit2/src/win32/w32_common.h +0 -39
@@ -177,3 +177,10 @@ uLong ZEXPORT adler32_combine(adler1, adler2, len2)
177
177
  return adler32_combine_(adler1, adler2, len2);
178
178
  }
179
179
 
180
+ uLong ZEXPORT adler32_combine64(adler1, adler2, len2)
181
+ uLong adler1;
182
+ uLong adler2;
183
+ z_off64_t len2;
184
+ {
185
+ return adler32_combine_(adler1, adler2, len2);
186
+ }
@@ -433,3 +433,10 @@ uLong ZEXPORT crc32_combine(crc1, crc2, len2)
433
433
  return crc32_combine_(crc1, crc2, len2);
434
434
  }
435
435
 
436
+ uLong ZEXPORT crc32_combine64(crc1, crc2, len2)
437
+ uLong crc1;
438
+ uLong crc2;
439
+ z_off64_t len2;
440
+ {
441
+ return crc32_combine_(crc1, crc2, len2);
442
+ }
@@ -15,14 +15,12 @@
15
15
  #include "git2/blame.h"
16
16
  #include "git2/branch.h"
17
17
  #include "git2/buffer.h"
18
- #include "git2/cert.h"
19
18
  #include "git2/checkout.h"
20
19
  #include "git2/cherrypick.h"
21
20
  #include "git2/clone.h"
22
21
  #include "git2/commit.h"
23
22
  #include "git2/common.h"
24
23
  #include "git2/config.h"
25
- #include "git2/cred.h"
26
24
  #include "git2/deprecated.h"
27
25
  #include "git2/describe.h"
28
26
  #include "git2/diff.h"
@@ -53,44 +53,25 @@ typedef int GIT_CALLBACK(git_apply_hunk_cb)(
53
53
  const git_diff_hunk *hunk,
54
54
  void *payload);
55
55
 
56
- /** Flags controlling the behavior of git_apply */
57
- typedef enum {
58
- /**
59
- * Don't actually make changes, just test that the patch applies.
60
- * This is the equivalent of `git apply --check`.
61
- */
62
- GIT_APPLY_CHECK = (1 << 0),
63
- } git_apply_flags_t;
64
-
65
56
  /**
66
57
  * Apply options structure
67
58
  *
68
59
  * Initialize with `GIT_APPLY_OPTIONS_INIT`. Alternatively, you can
69
- * use `git_apply_options_init`.
60
+ * use `git_apply_init_options`.
70
61
  *
71
62
  * @see git_apply_to_tree, git_apply
72
63
  */
73
64
  typedef struct {
74
- unsigned int version; /**< The version */
65
+ unsigned int version;
75
66
 
76
- /** When applying a patch, callback that will be made per delta (file). */
77
67
  git_apply_delta_cb delta_cb;
78
-
79
- /** When applying a patch, callback that will be made per hunk. */
80
68
  git_apply_hunk_cb hunk_cb;
81
-
82
- /** Payload passed to both delta_cb & hunk_cb. */
83
69
  void *payload;
84
-
85
- /** Bitmask of git_apply_flags_t */
86
- unsigned int flags;
87
70
  } git_apply_options;
88
71
 
89
72
  #define GIT_APPLY_OPTIONS_VERSION 1
90
73
  #define GIT_APPLY_OPTIONS_INIT {GIT_APPLY_OPTIONS_VERSION}
91
74
 
92
- GIT_EXTERN(int) git_apply_options_init(git_apply_options *opts, unsigned int version);
93
-
94
75
  /**
95
76
  * Apply a `git_diff` to a `git_tree`, and return the resulting image
96
77
  * as an index.
@@ -108,7 +89,6 @@ GIT_EXTERN(int) git_apply_to_tree(
108
89
  git_diff *diff,
109
90
  const git_apply_options *options);
110
91
 
111
- /** Possible application locations for git_apply */
112
92
  typedef enum {
113
93
  /**
114
94
  * Apply the patch to the workdir, leaving the index untouched.
@@ -30,7 +30,7 @@ GIT_BEGIN_DECL
30
30
  * Then for file `xyz.c` looking up attribute "foo" gives a value for
31
31
  * which `GIT_ATTR_TRUE(value)` is true.
32
32
  */
33
- #define GIT_ATTR_IS_TRUE(attr) (git_attr_value(attr) == GIT_ATTR_VALUE_TRUE)
33
+ #define GIT_ATTR_TRUE(attr) (git_attr_value(attr) == GIT_ATTR_TRUE_T)
34
34
 
35
35
  /**
36
36
  * GIT_ATTR_FALSE checks if an attribute is set off. In core git
@@ -44,7 +44,7 @@ GIT_BEGIN_DECL
44
44
  * Then for file `zyx.h` looking up attribute "foo" gives a value for
45
45
  * which `GIT_ATTR_FALSE(value)` is true.
46
46
  */
47
- #define GIT_ATTR_IS_FALSE(attr) (git_attr_value(attr) == GIT_ATTR_VALUE_FALSE)
47
+ #define GIT_ATTR_FALSE(attr) (git_attr_value(attr) == GIT_ATTR_FALSE_T)
48
48
 
49
49
  /**
50
50
  * GIT_ATTR_UNSPECIFIED checks if an attribute is unspecified. This
@@ -62,7 +62,7 @@ GIT_BEGIN_DECL
62
62
  * file `onefile.rb` or looking up "bar" on any file will all give
63
63
  * `GIT_ATTR_UNSPECIFIED(value)` of true.
64
64
  */
65
- #define GIT_ATTR_IS_UNSPECIFIED(attr) (git_attr_value(attr) == GIT_ATTR_VALUE_UNSPECIFIED)
65
+ #define GIT_ATTR_UNSPECIFIED(attr) (git_attr_value(attr) == GIT_ATTR_UNSPECIFIED_T)
66
66
 
67
67
  /**
68
68
  * GIT_ATTR_HAS_VALUE checks if an attribute is set to a value (as
@@ -74,17 +74,17 @@ GIT_BEGIN_DECL
74
74
  * Given this, looking up "eol" for `onefile.txt` will give back the
75
75
  * string "lf" and `GIT_ATTR_SET_TO_VALUE(attr)` will return true.
76
76
  */
77
- #define GIT_ATTR_HAS_VALUE(attr) (git_attr_value(attr) == GIT_ATTR_VALUE_STRING)
77
+ #define GIT_ATTR_HAS_VALUE(attr) (git_attr_value(attr) == GIT_ATTR_VALUE_T)
78
78
 
79
79
  /**
80
80
  * Possible states for an attribute
81
81
  */
82
82
  typedef enum {
83
- GIT_ATTR_VALUE_UNSPECIFIED = 0, /**< The attribute has been left unspecified */
84
- GIT_ATTR_VALUE_TRUE, /**< The attribute has been set */
85
- GIT_ATTR_VALUE_FALSE, /**< The attribute has been unset */
86
- GIT_ATTR_VALUE_STRING, /**< This attribute has a value */
87
- } git_attr_value_t;
83
+ GIT_ATTR_UNSPECIFIED_T = 0, /**< The attribute has been left unspecified */
84
+ GIT_ATTR_TRUE_T, /**< The attribute has been set */
85
+ GIT_ATTR_FALSE_T, /**< The attribute has been unset */
86
+ GIT_ATTR_VALUE_T, /**< This attribute has a value */
87
+ } git_attr_t;
88
88
 
89
89
  /**
90
90
  * Return the value type for a given attribute.
@@ -99,7 +99,7 @@ typedef enum {
99
99
  * @param attr The attribute
100
100
  * @return the value type for the attribute
101
101
  */
102
- GIT_EXTERN(git_attr_value_t) git_attr_value(const char *attr);
102
+ GIT_EXTERN(git_attr_t) git_attr_value(const char *attr);
103
103
 
104
104
  /**
105
105
  * Check attribute flags: Reading values from index and working directory.
@@ -119,20 +119,13 @@ GIT_EXTERN(git_attr_value_t) git_attr_value(const char *attr);
119
119
  #define GIT_ATTR_CHECK_INDEX_ONLY 2
120
120
 
121
121
  /**
122
- * Check attribute flags: controlling extended attribute behavior.
122
+ * Check attribute flags: Using the system attributes file.
123
123
  *
124
124
  * Normally, attribute checks include looking in the /etc (or system
125
125
  * equivalent) directory for a `gitattributes` file. Passing this
126
126
  * flag will cause attribute checks to ignore that file.
127
- * equivalent) directory for a `gitattributes` file. Passing the
128
- * `GIT_ATTR_CHECK_NO_SYSTEM` flag will cause attribute checks to
129
- * ignore that file.
130
- *
131
- * Passing the `GIT_ATTR_CHECK_INCLUDE_HEAD` flag will use attributes
132
- * from a `.gitattributes` file in the repository at the HEAD revision.
133
127
  */
134
- #define GIT_ATTR_CHECK_NO_SYSTEM (1 << 2)
135
- #define GIT_ATTR_CHECK_INCLUDE_HEAD (1 << 3)
128
+ #define GIT_ATTR_CHECK_NO_SYSTEM (1 << 2)
136
129
 
137
130
  /**
138
131
  * Look up the value of one git attribute for path.
@@ -53,7 +53,7 @@ typedef enum {
53
53
  * Blame options structure
54
54
  *
55
55
  * Initialize with `GIT_BLAME_OPTIONS_INIT`. Alternatively, you can
56
- * use `git_blame_options_init`.
56
+ * use `git_blame_init_options`.
57
57
  *
58
58
  */
59
59
  typedef struct git_blame_options {
@@ -100,7 +100,7 @@ typedef struct git_blame_options {
100
100
  * @param version The struct version; pass `GIT_BLAME_OPTIONS_VERSION`.
101
101
  * @return Zero on success; -1 on failure.
102
102
  */
103
- GIT_EXTERN(int) git_blame_options_init(
103
+ GIT_EXTERN(int) git_blame_init_options(
104
104
  git_blame_options *opts,
105
105
  unsigned int version);
106
106
 
@@ -94,40 +94,7 @@ GIT_EXTERN(const void *) git_blob_rawcontent(const git_blob *blob);
94
94
  * @param blob pointer to the blob
95
95
  * @return size on bytes
96
96
  */
97
- GIT_EXTERN(git_object_size_t) git_blob_rawsize(const git_blob *blob);
98
-
99
- /**
100
- * Flags to control the functionality of `git_blob_filter`.
101
- */
102
- typedef enum {
103
- /** When set, filters will not be applied to binary files. */
104
- GIT_BLOB_FILTER_CHECK_FOR_BINARY = (1 << 0),
105
-
106
- /**
107
- * When set, filters will not load configuration from the
108
- * system-wide `gitattributes` in `/etc` (or system equivalent).
109
- */
110
- GIT_BLOB_FILTER_NO_SYSTEM_ATTRIBUTES = (1 << 1),
111
-
112
- /**
113
- * When set, filters will be loaded from a `.gitattributes` file
114
- * in the HEAD commit.
115
- */
116
- GIT_BLOB_FILTER_ATTTRIBUTES_FROM_HEAD = (1 << 2),
117
- } git_blob_filter_flag_t;
118
-
119
- /**
120
- * The options used when applying filter options to a file.
121
- */
122
- typedef struct {
123
- int version;
124
-
125
- /** Flags to control the filtering process, see `git_blob_filter_flag_t` above */
126
- uint32_t flags;
127
- } git_blob_filter_options;
128
-
129
- #define GIT_BLOB_FILTER_OPTIONS_VERSION 1
130
- #define GIT_BLOB_FILTER_OPTIONS_INIT {GIT_BLOB_FILTER_OPTIONS_VERSION, GIT_BLOB_FILTER_CHECK_FOR_BINARY}
97
+ GIT_EXTERN(git_off_t) git_blob_rawsize(const git_blob *blob);
131
98
 
132
99
  /**
133
100
  * Get a buffer with the filtered content of a blob.
@@ -148,14 +115,15 @@ typedef struct {
148
115
  * @param out The git_buf to be filled in
149
116
  * @param blob Pointer to the blob
150
117
  * @param as_path Path used for file attribute lookups, etc.
151
- * @param opts Options to use for filtering the blob
118
+ * @param check_for_binary_data Should this test if blob content contains
119
+ * NUL bytes / looks like binary data before applying filters?
152
120
  * @return 0 on success or an error code
153
121
  */
154
- GIT_EXTERN(int) git_blob_filter(
122
+ GIT_EXTERN(int) git_blob_filtered_content(
155
123
  git_buf *out,
156
124
  git_blob *blob,
157
125
  const char *as_path,
158
- git_blob_filter_options *opts);
126
+ int check_for_binary_data);
159
127
 
160
128
  /**
161
129
  * Read a file from the working folder of a repository
@@ -168,7 +136,7 @@ GIT_EXTERN(int) git_blob_filter(
168
136
  * relative to the repository's working dir
169
137
  * @return 0 or an error code
170
138
  */
171
- GIT_EXTERN(int) git_blob_create_from_workdir(git_oid *id, git_repository *repo, const char *relative_path);
139
+ GIT_EXTERN(int) git_blob_create_fromworkdir(git_oid *id, git_repository *repo, const char *relative_path);
172
140
 
173
141
  /**
174
142
  * Read a file from the filesystem and write its content
@@ -180,7 +148,7 @@ GIT_EXTERN(int) git_blob_create_from_workdir(git_oid *id, git_repository *repo,
180
148
  * @param path file from which the blob will be created
181
149
  * @return 0 or an error code
182
150
  */
183
- GIT_EXTERN(int) git_blob_create_from_disk(git_oid *id, git_repository *repo, const char *path);
151
+ GIT_EXTERN(int) git_blob_create_fromdisk(git_oid *id, git_repository *repo, const char *path);
184
152
 
185
153
  /**
186
154
  * Create a stream to write a new blob into the object db
@@ -188,12 +156,12 @@ GIT_EXTERN(int) git_blob_create_from_disk(git_oid *id, git_repository *repo, con
188
156
  * This function may need to buffer the data on disk and will in
189
157
  * general not be the right choice if you know the size of the data
190
158
  * to write. If you have data in memory, use
191
- * `git_blob_create_from_buffer()`. If you do not, but know the size of
159
+ * `git_blob_create_frombuffer()`. If you do not, but know the size of
192
160
  * the contents (and don't want/need to perform filtering), use
193
161
  * `git_odb_open_wstream()`.
194
162
  *
195
163
  * Don't close this stream yourself but pass it to
196
- * `git_blob_create_from_stream_commit()` to commit the write to the
164
+ * `git_blob_create_fromstream_commit()` to commit the write to the
197
165
  * object db and get the object id.
198
166
  *
199
167
  * If the `hintpath` parameter is filled, it will be used to determine
@@ -207,7 +175,7 @@ GIT_EXTERN(int) git_blob_create_from_disk(git_oid *id, git_repository *repo, con
207
175
  * to apply onto the content of the blob to be created.
208
176
  * @return 0 or error code
209
177
  */
210
- GIT_EXTERN(int) git_blob_create_from_stream(
178
+ GIT_EXTERN(int) git_blob_create_fromstream(
211
179
  git_writestream **out,
212
180
  git_repository *repo,
213
181
  const char *hintpath);
@@ -221,7 +189,7 @@ GIT_EXTERN(int) git_blob_create_from_stream(
221
189
  * @param stream the stream to close
222
190
  * @return 0 or an error code
223
191
  */
224
- GIT_EXTERN(int) git_blob_create_from_stream_commit(
192
+ GIT_EXTERN(int) git_blob_create_fromstream_commit(
225
193
  git_oid *out,
226
194
  git_writestream *stream);
227
195
 
@@ -234,7 +202,7 @@ GIT_EXTERN(int) git_blob_create_from_stream_commit(
234
202
  * @param len length of the data
235
203
  * @return 0 or an error code
236
204
  */
237
- GIT_EXTERN(int) git_blob_create_from_buffer(
205
+ GIT_EXTERN(int) git_blob_create_frombuffer(
238
206
  git_oid *id, git_repository *repo, const void *buffer, size_t len);
239
207
 
240
208
  /**
@@ -32,32 +32,26 @@ GIT_BEGIN_DECL
32
32
  * a block of memory they hold. In this case, libgit2 will not resize or
33
33
  * free the memory, but will read from it as needed.
34
34
  *
35
+ * A `git_buf` is a public structure with three fields:
36
+ *
37
+ * - `ptr` points to the start of the allocated memory. If it is NULL,
38
+ * then the `git_buf` is considered empty and libgit2 will feel free
39
+ * to overwrite it with new data.
40
+ *
41
+ * - `size` holds the size (in bytes) of the data that is actually used.
42
+ *
43
+ * - `asize` holds the known total amount of allocated memory if the `ptr`
44
+ * was allocated by libgit2. It may be larger than `size`. If `ptr`
45
+ * was not allocated by libgit2 and should not be resized and/or freed,
46
+ * then `asize` will be set to zero.
47
+ *
35
48
  * Some APIs may occasionally do something slightly unusual with a buffer,
36
49
  * such as setting `ptr` to a value that was passed in by the user. In
37
50
  * those cases, the behavior will be clearly documented by the API.
38
51
  */
39
52
  typedef struct {
40
- /**
41
- * The buffer contents.
42
- *
43
- * `ptr` points to the start of the allocated memory. If it is NULL,
44
- * then the `git_buf` is considered empty and libgit2 will feel free
45
- * to overwrite it with new data.
46
- */
47
53
  char *ptr;
48
-
49
- /**
50
- * `asize` holds the known total amount of allocated memory if the `ptr`
51
- * was allocated by libgit2. It may be larger than `size`. If `ptr`
52
- * was not allocated by libgit2 and should not be resized and/or freed,
53
- * then `asize` will be set to zero.
54
- */
55
- size_t asize;
56
-
57
- /**
58
- * `size` holds the size (in bytes) of the data that is actually used.
59
- */
60
- size_t size;
54
+ size_t asize, size;
61
55
  } git_buf;
62
56
 
63
57
  /**
@@ -106,22 +106,10 @@ GIT_BEGIN_DECL
106
106
  typedef enum {
107
107
  GIT_CHECKOUT_NONE = 0, /**< default is a dry run, no actual updates */
108
108
 
109
- /**
110
- * Allow safe updates that cannot overwrite uncommitted data.
111
- * If the uncommitted changes don't conflict with the checked out files,
112
- * the checkout will still proceed, leaving the changes intact.
113
- *
114
- * Mutually exclusive with GIT_CHECKOUT_FORCE.
115
- * GIT_CHECKOUT_FORCE takes precedence over GIT_CHECKOUT_SAFE.
116
- */
109
+ /** Allow safe updates that cannot overwrite uncommitted data */
117
110
  GIT_CHECKOUT_SAFE = (1u << 0),
118
111
 
119
- /**
120
- * Allow all updates to force working directory to look like index.
121
- *
122
- * Mutually exclusive with GIT_CHECKOUT_SAFE.
123
- * GIT_CHECKOUT_FORCE takes precedence over GIT_CHECKOUT_SAFE.
124
- */
112
+ /** Allow all updates to force working directory to look like index */
125
113
  GIT_CHECKOUT_FORCE = (1u << 1),
126
114
 
127
115
 
@@ -225,7 +213,6 @@ typedef enum {
225
213
  GIT_CHECKOUT_NOTIFY_ALL = 0x0FFFFu
226
214
  } git_checkout_notify_t;
227
215
 
228
- /** Checkout performance-reporting structure */
229
216
  typedef struct {
230
217
  size_t mkdir_calls;
231
218
  size_t stat_calls;
@@ -257,11 +244,11 @@ typedef void GIT_CALLBACK(git_checkout_perfdata_cb)(
257
244
  * Checkout options structure
258
245
  *
259
246
  * Initialize with `GIT_CHECKOUT_OPTIONS_INIT`. Alternatively, you can
260
- * use `git_checkout_options_init`.
247
+ * use `git_checkout_init_options`.
261
248
  *
262
249
  */
263
250
  typedef struct git_checkout_options {
264
- unsigned int version; /**< The version */
251
+ unsigned int version;
265
252
 
266
253
  unsigned int checkout_strategy; /**< default will be a safe checkout */
267
254
 
@@ -271,46 +258,29 @@ typedef struct git_checkout_options {
271
258
  int file_open_flags; /**< default is O_CREAT | O_TRUNC | O_WRONLY */
272
259
 
273
260
  unsigned int notify_flags; /**< see `git_checkout_notify_t` above */
274
-
275
- /**
276
- * Optional callback to get notifications on specific file states.
277
- * @see git_checkout_notify_t
278
- */
279
261
  git_checkout_notify_cb notify_cb;
280
-
281
- /** Payload passed to notify_cb */
282
262
  void *notify_payload;
283
263
 
284
264
  /** Optional callback to notify the consumer of checkout progress. */
285
265
  git_checkout_progress_cb progress_cb;
286
-
287
- /** Payload passed to progress_cb */
288
266
  void *progress_payload;
289
267
 
290
- /**
291
- * A list of wildmatch patterns or paths.
292
- *
293
- * By default, all paths are processed. If you pass an array of wildmatch
294
- * patterns, those will be used to filter which paths should be taken into
295
- * account.
296
- *
297
- * Use GIT_CHECKOUT_DISABLE_PATHSPEC_MATCH to treat as a simple list.
268
+ /** When not zeroed out, array of fnmatch patterns specifying which
269
+ * paths should be taken into account, otherwise all files. Use
270
+ * GIT_CHECKOUT_DISABLE_PATHSPEC_MATCH to treat as simple list.
298
271
  */
299
272
  git_strarray paths;
300
273
 
301
- /**
302
- * The expected content of the working directory; defaults to HEAD.
303
- *
304
- * If the working directory does not match this baseline information,
305
- * that will produce a checkout conflict.
274
+ /** The expected content of the working directory; defaults to HEAD.
275
+ * If the working directory does not match this baseline information,
276
+ * that will produce a checkout conflict.
306
277
  */
307
278
  git_tree *baseline;
308
279
 
309
- /**
310
- * Like `baseline` above, though expressed as an index. This
311
- * option overrides `baseline`.
280
+ /** Like `baseline` above, though expressed as an index. This
281
+ * option overrides `baseline`.
312
282
  */
313
- git_index *baseline_index;
283
+ git_index *baseline_index; /**< expected content of workdir, expressed as an index. */
314
284
 
315
285
  const char *target_directory; /**< alternative checkout path to workdir */
316
286
 
@@ -320,8 +290,6 @@ typedef struct git_checkout_options {
320
290
 
321
291
  /** Optional callback to notify the consumer of performance data. */
322
292
  git_checkout_perfdata_cb perfdata_cb;
323
-
324
- /** Payload passed to perfdata_cb */
325
293
  void *perfdata_payload;
326
294
  } git_checkout_options;
327
295
 
@@ -338,7 +306,7 @@ typedef struct git_checkout_options {
338
306
  * @param version The struct version; pass `GIT_CHECKOUT_OPTIONS_VERSION`.
339
307
  * @return Zero on success; -1 on failure.
340
308
  */
341
- GIT_EXTERN(int) git_checkout_options_init(
309
+ GIT_EXTERN(int) git_checkout_init_options(
342
310
  git_checkout_options *opts,
343
311
  unsigned int version);
344
312