expressir 1.2.1-x86-mingw32 → 1.2.3-x86-mingw32

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 631f6bee5b92a0aca70f0b75b195fd75487e8a078fea20f7c2a8f5c007281511
4
- data.tar.gz: a15a314e2afac41fbeff3118cc5ce8bce4da36508b25bfc798ec0709d7185acd
3
+ metadata.gz: be48a12315875b78b28e533c4c543858fedb0a1691fc4bfcb0d7a9e94be64249
4
+ data.tar.gz: 8956b6b33d1e25a58fd5701c464488fe3926f8674660fc3f73337b91c4c2e488
5
5
  SHA512:
6
- metadata.gz: 85e9f3a4d7c4ee7199504d789212e124abd96729b8509cc26bd22e77ceb477912e6365b601403da0c2a17791054a2ea55ff50ec3162b2ef682a8409af3718cb3
7
- data.tar.gz: 6573844b0c7d88c29ed544c38f28ec06e515603569a7c0c3c86b91f01dd4d5dbc57f22ba47680ea4454bfdad25402ccb6652bc3e03e239fcfbf973069e09d781
6
+ metadata.gz: aaabd00b0b8086bdd03c4cd2c5d3bede578492ffea235e04e4905109f791122ace00dccfe7e060dd6b7692e5008187a99abb3292656fc38743f5d35c32fb61c6
7
+ data.tar.gz: 1429f90dc11540ca39142c16bc1d380c2be8ff16953855edc2b2ffc5043be437201e0e55e5aebc0f630269d8dd09dfc98bea211b2087c87ff3ec035ebcfd0feb
data/.cross_rubies CHANGED
@@ -2,17 +2,20 @@
2
2
  3.1.0:x86_64-w64-mingw32
3
3
  3.1.0:i686-linux-gnu
4
4
  3.1.0:x86_64-linux-gnu
5
+ 3.1.0:aarch64-linux-gnu
5
6
  3.1.0:x86_64-darwin
6
7
  3.1.0:arm64-darwin
7
8
  3.0.0:i686-w64-mingw32
8
9
  3.0.0:x86_64-w64-mingw32
9
10
  3.0.0:i686-linux-gnu
10
11
  3.0.0:x86_64-linux-gnu
12
+ 3.0.0:aarch64-linux-gnu
11
13
  3.0.0:x86_64-darwin
12
14
  3.0.0:arm64-darwin
13
15
  2.7.0:i686-w64-mingw32
14
16
  2.7.0:x86_64-w64-mingw32
15
17
  2.7.0:i686-linux-gnu
16
18
  2.7.0:x86_64-linux-gnu
19
+ 2.7.0:aarch64-linux-gnu
17
20
  2.7.0:x86_64-darwin
18
21
  2.7.0:arm64-darwin
@@ -41,6 +41,7 @@ jobs:
41
41
  - uses: actions/checkout@v2
42
42
  with:
43
43
  submodules: recursive
44
+ ref: main # https://github.com/actions/checkout/issues/439#issuecomment-830862188
44
45
 
45
46
  - uses: ruby/setup-ruby@v1
46
47
  with:
data/.gitmodules CHANGED
@@ -1,3 +1,3 @@
1
1
  [submodule "ext/express-parser/antlr4-upstream"]
2
2
  path = ext/express-parser/antlr4-upstream
3
- url = git://github.com/antlr/antlr4
3
+ url = https://github.com/antlr/antlr4
data/expressir.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["Ribose Inc."]
9
9
  spec.email = ["open.source@ribose.com'"]
10
10
 
11
- spec.summary = "ISO EXPRESS parser in Ruby, tools for accessing EXPRESS data models."
12
- spec.description = "ISO EXPRESS parser in Ruby, tools for accessing EXPRESS data models."
11
+ spec.summary = "ISO EXPRESS parser and tools in Ruby."
12
+ spec.description = "Expressir (“EXPRESS in Ruby”) is a Ruby parser for EXPRESS and a set of Ruby tools for accessing ISO EXPRESS data models."
13
13
  spec.homepage = "https://github.com/lutaml/expressir"
14
14
  spec.license = "MIT"
15
15
 
@@ -1,3 +1,3 @@
1
1
  module Expressir
2
- VERSION = "1.2.1".freeze
2
+ VERSION = "1.2.3".freeze
3
3
  end
@@ -44,6 +44,8 @@ CrossRuby = Struct.new(:version, :host) do
44
44
  "x86-mingw32"
45
45
  when /\Ax86_64.*linux/
46
46
  "x86_64-linux"
47
+ when /\A(arm64|aarch64).*linux/
48
+ "aarch64-linux"
47
49
  when /\Ai[3-6]86.*linux/
48
50
  "x86-linux"
49
51
  when /\Ax86_64-darwin/
@@ -63,6 +65,8 @@ CrossRuby = Struct.new(:version, :host) do
63
65
  "i686-w64-mingw32-"
64
66
  when "x86_64-linux"
65
67
  "x86_64-redhat-linux-"
68
+ when "aarch64-linux"
69
+ "aarch64-redhat-linux-"
66
70
  when "x86-linux"
67
71
  "i686-redhat-linux-"
68
72
  when /x86_64.*darwin/
@@ -82,6 +86,8 @@ CrossRuby = Struct.new(:version, :host) do
82
86
  "pei-i386"
83
87
  when "x86_64-linux"
84
88
  "elf64-x86-64"
89
+ when "aarch64-linux"
90
+ "elf64-arm64"
85
91
  when "x86-linux"
86
92
  "elf32-i386"
87
93
  when "x86_64-darwin"
@@ -245,12 +251,14 @@ def gem_builder(plat)
245
251
  end
246
252
 
247
253
  namespace "gem" do
254
+ REDHAT_PREREQ = "sudo yum install -y git"
255
+ UBUNTU_PREREQ = "sudo apt-get update -y && sudo apt-get install -y automake autoconf libtool build-essential"
248
256
  CROSS_RUBIES.find_all { |cr| cr.windows? || cr.linux? || cr.darwin? }.map(&:platform).uniq.each do |plat|
249
257
  pre_req = case plat
250
258
  when /\linux/
251
- "sudo yum install -y git"
259
+ "if [[ $(awk -F= '/^NAME/{print $2}' /etc/os-release) == '\"Ubuntu\"' ]]; then #{UBUNTU_PREREQ}; else #{REDHAT_PREREQ}; fi"
252
260
  else
253
- "sudo apt-get update -y && sudo apt-get install -y automake autoconf libtool build-essential"
261
+ "#{UBUNTU_PREREQ}"
254
262
  end
255
263
  desc "build native gem for #{plat} platform"
256
264
  task plat do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: expressir
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.3
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-14 00:00:00.000000000 Z
11
+ date: 2022-04-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -178,7 +178,8 @@ dependencies:
178
178
  - - "~>"
179
179
  - !ruby/object:Gem::Version
180
180
  version: 1.7.0
181
- description: ISO EXPRESS parser in Ruby, tools for accessing EXPRESS data models.
181
+ description: Expressir (“EXPRESS in Ruby”) is a Ruby parser for EXPRESS and a set
182
+ of Ruby tools for accessing ISO EXPRESS data models.
182
183
  email:
183
184
  - open.source@ribose.com'
184
185
  executables:
@@ -393,5 +394,5 @@ requirements: []
393
394
  rubygems_version: 3.3.4
394
395
  signing_key:
395
396
  specification_version: 4
396
- summary: ISO EXPRESS parser in Ruby, tools for accessing EXPRESS data models.
397
+ summary: ISO EXPRESS parser and tools in Ruby.
397
398
  test_files: []