rugged 1.9.4 → 1.9.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 (93) hide show
  1. checksums.yaml +4 -4
  2. data/lib/rugged/version.rb +1 -1
  3. data/vendor/libgit2/CMakeLists.txt +1 -1
  4. data/vendor/libgit2/COPYING +83 -11
  5. data/vendor/libgit2/cmake/DefaultCFlags.cmake +4 -2
  6. data/vendor/libgit2/cmake/SelectRegex.cmake +8 -3
  7. data/vendor/libgit2/deps/pcre2/CMakeLists.txt +110 -0
  8. data/vendor/libgit2/deps/pcre2/LICENCE.md +104 -0
  9. data/vendor/libgit2/deps/pcre2/config.h.in +54 -0
  10. data/vendor/libgit2/deps/pcre2/pcre2.h +1079 -0
  11. data/vendor/libgit2/deps/pcre2/pcre2_auto_possess.c +1416 -0
  12. data/vendor/libgit2/deps/{pcre/pcre_chartables.c → pcre2/pcre2_chartables.c} +41 -47
  13. data/vendor/libgit2/deps/{pcre/pcre_ord2utf8.c → pcre2/pcre2_chkdint.c} +36 -36
  14. data/vendor/libgit2/deps/pcre2/pcre2_compile.c +11345 -0
  15. data/vendor/libgit2/deps/pcre2/pcre2_compile.h +356 -0
  16. data/vendor/libgit2/deps/pcre2/pcre2_compile_cgroup.c +632 -0
  17. data/vendor/libgit2/deps/pcre2/pcre2_compile_class.c +2777 -0
  18. data/vendor/libgit2/deps/pcre2/pcre2_config.c +250 -0
  19. data/vendor/libgit2/deps/pcre2/pcre2_context.c +557 -0
  20. data/vendor/libgit2/deps/pcre2/pcre2_convert.c +1263 -0
  21. data/vendor/libgit2/deps/{pcre/pcre_dfa_exec.c → pcre2/pcre2_dfa_match.c} +1402 -943
  22. data/vendor/libgit2/deps/pcre2/pcre2_error.c +384 -0
  23. data/vendor/libgit2/deps/pcre2/pcre2_extuni.c +159 -0
  24. data/vendor/libgit2/deps/pcre2/pcre2_find_bracket.c +217 -0
  25. data/vendor/libgit2/deps/pcre2/pcre2_fuzzsupport.c +844 -0
  26. data/vendor/libgit2/deps/pcre2/pcre2_internal.h +2353 -0
  27. data/vendor/libgit2/deps/pcre2/pcre2_intmodedep.h +1044 -0
  28. data/vendor/libgit2/deps/pcre2/pcre2_maketables.c +177 -0
  29. data/vendor/libgit2/deps/pcre2/pcre2_match.c +8244 -0
  30. data/vendor/libgit2/deps/pcre2/pcre2_match_data.c +184 -0
  31. data/vendor/libgit2/deps/pcre2/pcre2_match_next.c +171 -0
  32. data/vendor/libgit2/deps/{pcre/pcre_newline.c → pcre2/pcre2_newline.c} +92 -63
  33. data/vendor/libgit2/deps/{pcre/pcre_refcount.c → pcre2/pcre2_ord2utf.c} +64 -38
  34. data/vendor/libgit2/deps/pcre2/pcre2_pattern_info.c +430 -0
  35. data/vendor/libgit2/deps/pcre2/pcre2_printint_inc.h +1098 -0
  36. data/vendor/libgit2/deps/pcre2/pcre2_script_run.c +344 -0
  37. data/vendor/libgit2/deps/pcre2/pcre2_serialize.c +284 -0
  38. data/vendor/libgit2/deps/pcre2/pcre2_string_utils.c +199 -0
  39. data/vendor/libgit2/deps/pcre2/pcre2_study.c +2087 -0
  40. data/vendor/libgit2/deps/pcre2/pcre2_substitute.c +1761 -0
  41. data/vendor/libgit2/deps/pcre2/pcre2_substring.c +553 -0
  42. data/vendor/libgit2/deps/pcre2/pcre2_tables.c +310 -0
  43. data/vendor/libgit2/deps/pcre2/pcre2_ucd.c +5805 -0
  44. data/vendor/libgit2/deps/pcre2/pcre2_ucp.h +408 -0
  45. data/vendor/libgit2/deps/pcre2/pcre2_ucptables_inc.h +1596 -0
  46. data/vendor/libgit2/deps/pcre2/pcre2_util.h +179 -0
  47. data/vendor/libgit2/deps/pcre2/pcre2_valid_utf.c +397 -0
  48. data/vendor/libgit2/deps/pcre2/pcre2_xclass.c +547 -0
  49. data/vendor/libgit2/include/git2/common.h +13 -1
  50. data/vendor/libgit2/include/git2/version.h +2 -2
  51. data/vendor/libgit2/src/libgit2/blame.c +6 -0
  52. data/vendor/libgit2/src/libgit2/delta.c +8 -0
  53. data/vendor/libgit2/src/libgit2/indexer.c +3 -2
  54. data/vendor/libgit2/src/libgit2/settings.c +9 -0
  55. data/vendor/libgit2/src/libgit2/streams/openssl.c +4 -1
  56. data/vendor/libgit2/src/libgit2/submodule.c +77 -12
  57. data/vendor/libgit2/src/libgit2/transports/http.c +4 -4
  58. data/vendor/libgit2/src/libgit2/transports/smart_pkt.c +2 -1
  59. data/vendor/libgit2/src/libgit2/transports/ssh_libssh2.c +10 -4
  60. data/vendor/libgit2/src/util/fs_path.h +10 -10
  61. data/vendor/libgit2/src/util/regexp.c +27 -12
  62. data/vendor/libgit2/src/util/regexp.h +7 -2
  63. metadata +44 -37
  64. data/vendor/libgit2/deps/pcre/CMakeLists.txt +0 -140
  65. data/vendor/libgit2/deps/pcre/COPYING +0 -5
  66. data/vendor/libgit2/deps/pcre/LICENCE +0 -93
  67. data/vendor/libgit2/deps/pcre/cmake/COPYING-CMAKE-SCRIPTS +0 -22
  68. data/vendor/libgit2/deps/pcre/cmake/FindEditline.cmake +0 -17
  69. data/vendor/libgit2/deps/pcre/cmake/FindPackageHandleStandardArgs.cmake +0 -58
  70. data/vendor/libgit2/deps/pcre/cmake/FindReadline.cmake +0 -29
  71. data/vendor/libgit2/deps/pcre/config.h.in +0 -57
  72. data/vendor/libgit2/deps/pcre/pcre.h +0 -641
  73. data/vendor/libgit2/deps/pcre/pcre_byte_order.c +0 -319
  74. data/vendor/libgit2/deps/pcre/pcre_compile.c +0 -9815
  75. data/vendor/libgit2/deps/pcre/pcre_config.c +0 -190
  76. data/vendor/libgit2/deps/pcre/pcre_exec.c +0 -7173
  77. data/vendor/libgit2/deps/pcre/pcre_fullinfo.c +0 -245
  78. data/vendor/libgit2/deps/pcre/pcre_get.c +0 -669
  79. data/vendor/libgit2/deps/pcre/pcre_globals.c +0 -86
  80. data/vendor/libgit2/deps/pcre/pcre_internal.h +0 -2787
  81. data/vendor/libgit2/deps/pcre/pcre_jit_compile.c +0 -11913
  82. data/vendor/libgit2/deps/pcre/pcre_maketables.c +0 -156
  83. data/vendor/libgit2/deps/pcre/pcre_printint.c +0 -834
  84. data/vendor/libgit2/deps/pcre/pcre_string_utils.c +0 -211
  85. data/vendor/libgit2/deps/pcre/pcre_study.c +0 -1686
  86. data/vendor/libgit2/deps/pcre/pcre_tables.c +0 -727
  87. data/vendor/libgit2/deps/pcre/pcre_ucd.c +0 -3644
  88. data/vendor/libgit2/deps/pcre/pcre_valid_utf8.c +0 -301
  89. data/vendor/libgit2/deps/pcre/pcre_version.c +0 -98
  90. data/vendor/libgit2/deps/pcre/pcre_xclass.c +0 -268
  91. data/vendor/libgit2/deps/pcre/pcreposix.c +0 -420
  92. data/vendor/libgit2/deps/pcre/pcreposix.h +0 -117
  93. data/vendor/libgit2/deps/pcre/ucp.h +0 -224
@@ -1,224 +0,0 @@
1
- /*************************************************
2
- * Unicode Property Table handler *
3
- *************************************************/
4
-
5
- #ifndef _UCP_H
6
- #define _UCP_H
7
-
8
- /* This file contains definitions of the property values that are returned by
9
- the UCD access macros. New values that are added for new releases of Unicode
10
- should always be at the end of each enum, for backwards compatibility.
11
-
12
- IMPORTANT: Note also that the specific numeric values of the enums have to be
13
- the same as the values that are generated by the maint/MultiStage2.py script,
14
- where the equivalent property descriptive names are listed in vectors.
15
-
16
- ALSO: The specific values of the first two enums are assumed for the table
17
- called catposstab in pcre_compile.c. */
18
-
19
- /* These are the general character categories. */
20
-
21
- enum {
22
- ucp_C, /* Other */
23
- ucp_L, /* Letter */
24
- ucp_M, /* Mark */
25
- ucp_N, /* Number */
26
- ucp_P, /* Punctuation */
27
- ucp_S, /* Symbol */
28
- ucp_Z /* Separator */
29
- };
30
-
31
- /* These are the particular character categories. */
32
-
33
- enum {
34
- ucp_Cc, /* Control */
35
- ucp_Cf, /* Format */
36
- ucp_Cn, /* Unassigned */
37
- ucp_Co, /* Private use */
38
- ucp_Cs, /* Surrogate */
39
- ucp_Ll, /* Lower case letter */
40
- ucp_Lm, /* Modifier letter */
41
- ucp_Lo, /* Other letter */
42
- ucp_Lt, /* Title case letter */
43
- ucp_Lu, /* Upper case letter */
44
- ucp_Mc, /* Spacing mark */
45
- ucp_Me, /* Enclosing mark */
46
- ucp_Mn, /* Non-spacing mark */
47
- ucp_Nd, /* Decimal number */
48
- ucp_Nl, /* Letter number */
49
- ucp_No, /* Other number */
50
- ucp_Pc, /* Connector punctuation */
51
- ucp_Pd, /* Dash punctuation */
52
- ucp_Pe, /* Close punctuation */
53
- ucp_Pf, /* Final punctuation */
54
- ucp_Pi, /* Initial punctuation */
55
- ucp_Po, /* Other punctuation */
56
- ucp_Ps, /* Open punctuation */
57
- ucp_Sc, /* Currency symbol */
58
- ucp_Sk, /* Modifier symbol */
59
- ucp_Sm, /* Mathematical symbol */
60
- ucp_So, /* Other symbol */
61
- ucp_Zl, /* Line separator */
62
- ucp_Zp, /* Paragraph separator */
63
- ucp_Zs /* Space separator */
64
- };
65
-
66
- /* These are grapheme break properties. Note that the code for processing them
67
- assumes that the values are less than 16. If more values are added that take
68
- the number to 16 or more, the code will have to be rewritten. */
69
-
70
- enum {
71
- ucp_gbCR, /* 0 */
72
- ucp_gbLF, /* 1 */
73
- ucp_gbControl, /* 2 */
74
- ucp_gbExtend, /* 3 */
75
- ucp_gbPrepend, /* 4 */
76
- ucp_gbSpacingMark, /* 5 */
77
- ucp_gbL, /* 6 Hangul syllable type L */
78
- ucp_gbV, /* 7 Hangul syllable type V */
79
- ucp_gbT, /* 8 Hangul syllable type T */
80
- ucp_gbLV, /* 9 Hangul syllable type LV */
81
- ucp_gbLVT, /* 10 Hangul syllable type LVT */
82
- ucp_gbRegionalIndicator, /* 11 */
83
- ucp_gbOther /* 12 */
84
- };
85
-
86
- /* These are the script identifications. */
87
-
88
- enum {
89
- ucp_Arabic,
90
- ucp_Armenian,
91
- ucp_Bengali,
92
- ucp_Bopomofo,
93
- ucp_Braille,
94
- ucp_Buginese,
95
- ucp_Buhid,
96
- ucp_Canadian_Aboriginal,
97
- ucp_Cherokee,
98
- ucp_Common,
99
- ucp_Coptic,
100
- ucp_Cypriot,
101
- ucp_Cyrillic,
102
- ucp_Deseret,
103
- ucp_Devanagari,
104
- ucp_Ethiopic,
105
- ucp_Georgian,
106
- ucp_Glagolitic,
107
- ucp_Gothic,
108
- ucp_Greek,
109
- ucp_Gujarati,
110
- ucp_Gurmukhi,
111
- ucp_Han,
112
- ucp_Hangul,
113
- ucp_Hanunoo,
114
- ucp_Hebrew,
115
- ucp_Hiragana,
116
- ucp_Inherited,
117
- ucp_Kannada,
118
- ucp_Katakana,
119
- ucp_Kharoshthi,
120
- ucp_Khmer,
121
- ucp_Lao,
122
- ucp_Latin,
123
- ucp_Limbu,
124
- ucp_Linear_B,
125
- ucp_Malayalam,
126
- ucp_Mongolian,
127
- ucp_Myanmar,
128
- ucp_New_Tai_Lue,
129
- ucp_Ogham,
130
- ucp_Old_Italic,
131
- ucp_Old_Persian,
132
- ucp_Oriya,
133
- ucp_Osmanya,
134
- ucp_Runic,
135
- ucp_Shavian,
136
- ucp_Sinhala,
137
- ucp_Syloti_Nagri,
138
- ucp_Syriac,
139
- ucp_Tagalog,
140
- ucp_Tagbanwa,
141
- ucp_Tai_Le,
142
- ucp_Tamil,
143
- ucp_Telugu,
144
- ucp_Thaana,
145
- ucp_Thai,
146
- ucp_Tibetan,
147
- ucp_Tifinagh,
148
- ucp_Ugaritic,
149
- ucp_Yi,
150
- /* New for Unicode 5.0: */
151
- ucp_Balinese,
152
- ucp_Cuneiform,
153
- ucp_Nko,
154
- ucp_Phags_Pa,
155
- ucp_Phoenician,
156
- /* New for Unicode 5.1: */
157
- ucp_Carian,
158
- ucp_Cham,
159
- ucp_Kayah_Li,
160
- ucp_Lepcha,
161
- ucp_Lycian,
162
- ucp_Lydian,
163
- ucp_Ol_Chiki,
164
- ucp_Rejang,
165
- ucp_Saurashtra,
166
- ucp_Sundanese,
167
- ucp_Vai,
168
- /* New for Unicode 5.2: */
169
- ucp_Avestan,
170
- ucp_Bamum,
171
- ucp_Egyptian_Hieroglyphs,
172
- ucp_Imperial_Aramaic,
173
- ucp_Inscriptional_Pahlavi,
174
- ucp_Inscriptional_Parthian,
175
- ucp_Javanese,
176
- ucp_Kaithi,
177
- ucp_Lisu,
178
- ucp_Meetei_Mayek,
179
- ucp_Old_South_Arabian,
180
- ucp_Old_Turkic,
181
- ucp_Samaritan,
182
- ucp_Tai_Tham,
183
- ucp_Tai_Viet,
184
- /* New for Unicode 6.0.0: */
185
- ucp_Batak,
186
- ucp_Brahmi,
187
- ucp_Mandaic,
188
- /* New for Unicode 6.1.0: */
189
- ucp_Chakma,
190
- ucp_Meroitic_Cursive,
191
- ucp_Meroitic_Hieroglyphs,
192
- ucp_Miao,
193
- ucp_Sharada,
194
- ucp_Sora_Sompeng,
195
- ucp_Takri,
196
- /* New for Unicode 7.0.0: */
197
- ucp_Bassa_Vah,
198
- ucp_Caucasian_Albanian,
199
- ucp_Duployan,
200
- ucp_Elbasan,
201
- ucp_Grantha,
202
- ucp_Khojki,
203
- ucp_Khudawadi,
204
- ucp_Linear_A,
205
- ucp_Mahajani,
206
- ucp_Manichaean,
207
- ucp_Mende_Kikakui,
208
- ucp_Modi,
209
- ucp_Mro,
210
- ucp_Nabataean,
211
- ucp_Old_North_Arabian,
212
- ucp_Old_Permic,
213
- ucp_Pahawh_Hmong,
214
- ucp_Palmyrene,
215
- ucp_Psalter_Pahlavi,
216
- ucp_Pau_Cin_Hau,
217
- ucp_Siddham,
218
- ucp_Tirhuta,
219
- ucp_Warang_Citi
220
- };
221
-
222
- #endif
223
-
224
- /* End of ucp.h */