re2 2.4.2-aarch64-linux → 2.4.3-aarch64-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 64e99af40a7260309bec79afaf1b28b98e60ce97a2c8ed9308d7f1cb905df8ed
4
- data.tar.gz: bbd0cb427e34f9471e1033b1d002a32ffdeaa3b81078232e09680fe91e0448b8
3
+ metadata.gz: 31bc284bb7f3f24ad0fe291ece346eafb484863ecf0f30d4ec799ba844e059ad
4
+ data.tar.gz: 29199e8a8d0c2165d17ecce3c39343d5228e3bd817616dc7cd576abbc454b1f5
5
5
  SHA512:
6
- metadata.gz: 30b7ddcd7d5bd421bb3e84fc213f207c550678b1fa20d7d6a586f7c749ce33ecc5b7a734d19daee04f79237756cf579f19779db53538484bf51609a107d760a0
7
- data.tar.gz: c3c64b1e578ee4d1c474423892215721e35ced9fbdef4a4553b971568c5e40f85a46cefbeb08413031a42333afe44c25c2492f1e0157f1e3898fd73441b661f1
6
+ metadata.gz: 3e02625f399fda1f48e34f8d34c6d17319c520e515123a6044e739a2146c3ddd42caa93478fae1750291c6a57f35b701d4b6edb71383be72f0dc44c00deb8595
7
+ data.tar.gz: 4700f794748edb1f1062eccfad6b05f5e6bfbb728449a1d34b4c0a5c4a7b90c11b9c47db3b7b67bbc339c0f9e552a8ef9447eed6fdd3a19ec7efe3e561bccb45
data/README.md CHANGED
@@ -5,7 +5,7 @@ Ruby bindings to [RE2][], a "fast, safe, thread-friendly alternative to
5
5
  backtracking regular expression engines like those used in PCRE, Perl, and
6
6
  Python".
7
7
 
8
- **Current version:** 2.4.2
8
+ **Current version:** 2.4.3
9
9
  **Supported Ruby versions:** 2.6, 2.7, 3.0, 3.1, 3.2
10
10
  **Bundled RE2 version:** libre2.11 (2023-11-01)
11
11
  **Supported RE2 versions:** libre2.0 (< 2020-03-02), libre2.1 (2020-03-02), libre2.6 (2020-03-03), libre2.7 (2020-05-01), libre2.8 (2020-07-06), libre2.9 (2020-11-01), libre2.10 (2022-12-01), libre2.11 (2023-07-01)
data/ext/re2/re2.cc CHANGED
@@ -124,7 +124,7 @@ static void parse_re2_options(RE2::Options* re2_options, const VALUE options) {
124
124
 
125
125
  /* For compatibility with ruby < 2.7 */
126
126
  #ifdef HAVE_RB_GC_MARK_MOVABLE
127
- #define re2_compact_callback(x) .dcompact = (x),
127
+ #define re2_compact_callback(x) (x),
128
128
  #else
129
129
  #define rb_gc_mark_movable(x) rb_gc_mark(x)
130
130
  #define re2_compact_callback(x)
@@ -163,16 +163,18 @@ static size_t re2_matchdata_memsize(const void *ptr) {
163
163
  }
164
164
 
165
165
  static const rb_data_type_t re2_matchdata_data_type = {
166
- .wrap_struct_name = "RE2::MatchData",
167
- .function = {
168
- .dmark = re2_matchdata_mark,
169
- .dfree = re2_matchdata_free,
170
- .dsize = re2_matchdata_memsize,
166
+ "RE2::MatchData",
167
+ {
168
+ re2_matchdata_mark,
169
+ re2_matchdata_free,
170
+ re2_matchdata_memsize,
171
171
  re2_compact_callback(re2_matchdata_compact)
172
172
  },
173
+ 0,
174
+ 0,
173
175
  // IMPORTANT: WB_PROTECTED objects must only use the RB_OBJ_WRITE()
174
176
  // macro to update VALUE references, as to trigger write barriers.
175
- .flags = RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED
177
+ RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED
176
178
  };
177
179
 
178
180
  static void re2_scanner_mark(void *ptr) {
@@ -208,16 +210,18 @@ static size_t re2_scanner_memsize(const void *ptr) {
208
210
  }
209
211
 
210
212
  static const rb_data_type_t re2_scanner_data_type = {
211
- .wrap_struct_name = "RE2::Scanner",
212
- .function = {
213
- .dmark = re2_scanner_mark,
214
- .dfree = re2_scanner_free,
215
- .dsize = re2_scanner_memsize,
213
+ "RE2::Scanner",
214
+ {
215
+ re2_scanner_mark,
216
+ re2_scanner_free,
217
+ re2_scanner_memsize,
216
218
  re2_compact_callback(re2_scanner_compact)
217
219
  },
220
+ 0,
221
+ 0,
218
222
  // IMPORTANT: WB_PROTECTED objects must only use the RB_OBJ_WRITE()
219
223
  // macro to update VALUE references, as to trigger write barriers.
220
- .flags = RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED
224
+ RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED
221
225
  };
222
226
 
223
227
  static void re2_regexp_free(void *ptr) {
@@ -239,15 +243,17 @@ static size_t re2_regexp_memsize(const void *ptr) {
239
243
  }
240
244
 
241
245
  static const rb_data_type_t re2_regexp_data_type = {
242
- .wrap_struct_name = "RE2::Regexp",
243
- .function = {
244
- .dmark = NULL,
245
- .dfree = re2_regexp_free,
246
- .dsize = re2_regexp_memsize,
246
+ "RE2::Regexp",
247
+ {
248
+ 0,
249
+ re2_regexp_free,
250
+ re2_regexp_memsize,
247
251
  },
252
+ 0,
253
+ 0,
248
254
  // IMPORTANT: WB_PROTECTED objects must only use the RB_OBJ_WRITE()
249
255
  // macro to update VALUE references, as to trigger write barriers.
250
- .flags = RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED
256
+ RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED
251
257
  };
252
258
 
253
259
  static VALUE re2_matchdata_allocate(VALUE klass) {
@@ -1598,15 +1604,17 @@ static size_t re2_set_memsize(const void *ptr) {
1598
1604
  }
1599
1605
 
1600
1606
  static const rb_data_type_t re2_set_data_type = {
1601
- .wrap_struct_name = "RE2::Set",
1602
- .function = {
1603
- .dmark = NULL,
1604
- .dfree = re2_set_free,
1605
- .dsize = re2_set_memsize,
1607
+ "RE2::Set",
1608
+ {
1609
+ 0,
1610
+ re2_set_free,
1611
+ re2_set_memsize,
1606
1612
  },
1613
+ 0,
1614
+ 0,
1607
1615
  // IMPORTANT: WB_PROTECTED objects must only use the RB_OBJ_WRITE()
1608
1616
  // macro to update VALUE references, as to trigger write barriers.
1609
- .flags = RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED
1617
+ RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED
1610
1618
  };
1611
1619
 
1612
1620
  static VALUE re2_set_allocate(VALUE klass) {
data/lib/2.6/re2.so CHANGED
Binary file
data/lib/2.7/re2.so CHANGED
Binary file
data/lib/3.0/re2.so CHANGED
Binary file
data/lib/3.1/re2.so CHANGED
Binary file
data/lib/3.2/re2.so CHANGED
Binary file
data/lib/re2/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RE2
4
- VERSION = "2.4.2"
4
+ VERSION = "2.4.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: re2
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.2
4
+ version: 2.4.3
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Paul Mucur
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-11-17 00:00:00.000000000 Z
12
+ date: 2023-11-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake-compiler