google-protobuf 3.10.0.rc.1-x86-linux → 3.10.1-x86-linux

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.

Potentially problematic release.


This version of google-protobuf might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 57d7543107d55b58224c1e03a8f3edf92a93b1e8d1f34ea315d94b5aeed385b2
4
- data.tar.gz: bc02c35f3081d0a87c31456d72ff8135552162092b47ba0586b9165d232725c0
3
+ metadata.gz: 60495afd0ec05a7704f0a345aea232f1a879ffebe91158e36e5c937e5fc5e772
4
+ data.tar.gz: 62e1730b2c461c9326db2291343828d55df0fdd017e25d2b51425f3e8797e1e7
5
5
  SHA512:
6
- metadata.gz: 9f9473db1fcf6130be2a27562371dea2f45675256133cefe4ad4c65e3cff8e531ec8119d9d16076632e21c19c3e41ae54ed719491718ce6a82554285b302db5e
7
- data.tar.gz: 45ba01850b32e3baff9bf672632d3c7f75ba2ba61c918c2878aad3f72f44c51d9bed2af55819d3f995df880b581b19deb9608f0ea47c781374e644e1e2d01382
6
+ metadata.gz: 81ae26f8b4d0cf208309f9016d841063c4cb7da16568f6508fdf0840cdef05aef949e43e33b9372add2b7b35a7b7636fa1d128a522171329829e6955e5be4199
7
+ data.tar.gz: 8bf38f972fa3ea085dd4c8bf5d242c552e4e6f1c5bb749f94993f32996d2dec4ff605039b654f0d1a5b4dccb45bcb7ccebaba71f76b6a55336b0dbd80c0e8d05
@@ -10117,46 +10117,28 @@ static void start_timestamp_zone(upb_json_parser *p, const char *ptr) {
10117
10117
  capture_begin(p, ptr);
10118
10118
  }
10119
10119
 
10120
- #define EPOCH_YEAR 1970
10121
- #define TM_YEAR_BASE 1900
10122
-
10123
- static bool isleap(int year) {
10124
- return (year % 4) == 0 && (year % 100 != 0 || (year % 400) == 0);
10125
- }
10126
-
10127
- const unsigned short int __mon_yday[2][13] = {
10128
- /* Normal years. */
10129
- { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
10130
- /* Leap years. */
10131
- { 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
10132
- };
10133
-
10134
- int64_t epoch(int year, int yday, int hour, int min, int sec) {
10135
- int64_t years = year - EPOCH_YEAR;
10136
-
10137
- int64_t leap_days = years / 4 - years / 100 + years / 400;
10138
-
10139
- int64_t days = years * 365 + yday + leap_days;
10140
- int64_t hours = days * 24 + hour;
10141
- int64_t mins = hours * 60 + min;
10142
- int64_t secs = mins * 60 + sec;
10143
- return secs;
10144
- }
10145
-
10146
-
10147
- static int64_t upb_mktime(const struct tm *tp) {
10148
- int sec = tp->tm_sec;
10149
- int min = tp->tm_min;
10150
- int hour = tp->tm_hour;
10151
- int mday = tp->tm_mday;
10152
- int mon = tp->tm_mon;
10153
- int year = tp->tm_year + TM_YEAR_BASE;
10154
-
10155
- /* Calculate day of year from year, month, and day of month. */
10156
- int mon_yday = ((__mon_yday[isleap(year)][mon]) - 1);
10157
- int yday = mon_yday + mday;
10158
-
10159
- return epoch(year, yday, hour, min, sec);
10120
+ /* epoch_days(1970, 1, 1) == 1970-01-01 == 0. */
10121
+ static int epoch_days(int year, int month, int day) {
10122
+ static const uint16_t month_yday[12] = {0, 31, 59, 90, 120, 151,
10123
+ 181, 212, 243, 273, 304, 334};
10124
+ int febs_since_0 = month > 2 ? year + 1 : year;
10125
+ int leap_days_since_0 = div_round_up(febs_since_0, 4) -
10126
+ div_round_up(febs_since_0, 100) +
10127
+ div_round_up(febs_since_0, 400);
10128
+ int days_since_0 =
10129
+ 365 * year + month_yday[month - 1] + (day - 1) + leap_days_since_0;
10130
+
10131
+ /* Convert from 0-epoch (0001-01-01 BC) to Unix Epoch (1970-01-01 AD).
10132
+ * Since the "BC" system does not have a year zero, 1 BC == year zero. */
10133
+ return days_since_0 - 719528;
10134
+ }
10135
+
10136
+ static int64_t upb_timegm(const struct tm *tp) {
10137
+ int64_t ret = epoch_days(tp->tm_year + 1900, tp->tm_mon + 1, tp->tm_mday);
10138
+ ret = (ret * 24) + tp->tm_hour;
10139
+ ret = (ret * 60) + tp->tm_min;
10140
+ ret = (ret * 60) + tp->tm_sec;
10141
+ return ret;
10160
10142
  }
10161
10143
 
10162
10144
  static bool end_timestamp_zone(upb_json_parser *p, const char *ptr) {
@@ -10186,7 +10168,7 @@ static bool end_timestamp_zone(upb_json_parser *p, const char *ptr) {
10186
10168
  }
10187
10169
 
10188
10170
  /* Normalize tm */
10189
- seconds = upb_mktime(&p->tm);
10171
+ seconds = upb_timegm(&p->tm);
10190
10172
 
10191
10173
  /* Check timestamp boundary */
10192
10174
  if (seconds < -62135596800) {
Binary file
Binary file
Binary file
Binary file
@@ -56,15 +56,19 @@ else
56
56
  module Internal
57
57
  def self.infer_package(names)
58
58
  # Package is longest common prefix ending in '.', if any.
59
- min, max = names.minmax
60
- last_common_dot = nil
61
- min.size.times { |i|
62
- if min[i] != max[i] then break end
63
- if min[i] == ?. then last_common_dot = i end
64
- }
65
- if last_common_dot
66
- return min.slice(0, last_common_dot)
59
+ if not names.empty?
60
+ min, max = names.minmax
61
+ last_common_dot = nil
62
+ min.size.times { |i|
63
+ if min[i] != max[i] then break end
64
+ if min[i] == ?. then last_common_dot = i end
65
+ }
66
+ if last_common_dot
67
+ return min.slice(0, last_common_dot)
68
+ end
67
69
  end
70
+
71
+ nil
68
72
  end
69
73
 
70
74
  class NestingBuilder
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-protobuf
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.10.0.rc.1
4
+ version: 3.10.1
5
5
  platform: x86-linux
6
6
  authors:
7
7
  - Protobuf Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-05 00:00:00.000000000 Z
11
+ date: 2019-10-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler-dock
@@ -115,7 +115,7 @@ homepage: https://developers.google.com/protocol-buffers
115
115
  licenses:
116
116
  - BSD-3-Clause
117
117
  metadata:
118
- source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.10.0-rc1/ruby
118
+ source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.10.1/ruby
119
119
  post_install_message:
120
120
  rdoc_options: []
121
121
  require_paths:
@@ -127,9 +127,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
127
127
  version: '2.3'
128
128
  required_rubygems_version: !ruby/object:Gem::Requirement
129
129
  requirements:
130
- - - ">"
130
+ - - ">="
131
131
  - !ruby/object:Gem::Version
132
- version: 1.3.1
132
+ version: '0'
133
133
  requirements: []
134
134
  rubyforge_project:
135
135
  rubygems_version: 2.7.9