ood_packaging 0.7.0 → 0.9.0

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: f902be5bab3b459fc0789ec91c2b87703f14a1bc257ae574f573d5de56fa6d0e
4
- data.tar.gz: c7adb05ed982192125609219c162cde9529f55278e33be200ff147f69bf12709
3
+ metadata.gz: 8d66aca5d9123c4952b9a2842fdc3c63aed8e566bf7f5e9569ce197bccbd3eaf
4
+ data.tar.gz: bb3382c9d597c60585aa35eb6305005e447e02c558b5a30ccc78bee625291c4a
5
5
  SHA512:
6
- metadata.gz: 19a51eeee26b076a25aabf6f945303ba3f8fe7550288f464ef6fe09aa92aaffb6614aae0443b8879ce50f17ae25eafd8c82538c4252f71b6a460e285d157cb72
7
- data.tar.gz: 6e91374166d46d6d5cea75e518095209f0e74cd5607a0978095ab0c06da79979ef47ca93b4474aeb1370df8aaaa290fa24459d9c96ef1922377fdfb3e960f00d
6
+ metadata.gz: 897f586443e3a39a868d2565dc12320bcd416f45d3fe8f26580024179c7b11ef357a8078e681e738ecfcd19b505cbecdea3dee1bb4c8d593b749bc6e03f578d1
7
+ data.tar.gz: 3531b9092f90394d950baeeeaa4cf4980eaf6163575953846f75688876c0a00109e4095bf2cc737e4236f3590fd1de2204cd59593e8ac82976512abbb527fb67
data/bin/ood_packaging CHANGED
@@ -22,6 +22,10 @@ OptionParser.new do |opts|
22
22
  options[:dist] = v
23
23
  end
24
24
 
25
+ opts.on('-a', '--arch=ARCH', String, 'Architecture to build') do |v|
26
+ options[:arch] = v
27
+ end
28
+
25
29
  opts.on('-V', '--version=VERSION', String, 'Version of package to build') do |v|
26
30
  options[:version] = v
27
31
  end
@@ -15,7 +15,7 @@ class OodPackaging::Build
15
15
  attr_accessor :build_box
16
16
 
17
17
  def initialize
18
- @build_box = OodPackaging::BuildBox.new(dist: ENV['DIST'])
18
+ @build_box = OodPackaging::BuildBox.new(dist: ENV['DIST'], arch: ENV['ARCH'])
19
19
  end
20
20
 
21
21
  def config
@@ -57,6 +57,12 @@ class OodPackaging::Build
57
57
  version.gsub(/^v/, '').gsub('-', '.')
58
58
  end
59
59
 
60
+ def deb_chlog_version
61
+ return "#{deb_version}-#{build_box.codename}" if config[:codename_version]
62
+
63
+ deb_version
64
+ end
65
+
60
66
  def rpm_defines
61
67
  defines = ["--define 'git_tag #{version}'"]
62
68
  defines.concat ["--define 'package_version #{rpm_version}'"]
@@ -110,11 +116,11 @@ class OodPackaging::Build
110
116
  end
111
117
 
112
118
  def output_dir
113
- File.join('/output', build_box.dist)
119
+ File.join('/output', "#{build_box.dist}-#{build_box.arch}")
114
120
  end
115
121
 
116
122
  def work_dir
117
- File.join('/work', build_box.dist)
123
+ build_box.work_dir
118
124
  end
119
125
 
120
126
  def packaging_config
@@ -172,6 +178,7 @@ class OodPackaging::Build
172
178
  end
173
179
  puts "\tBootstrap work dir".blue
174
180
  sh "mkdir -p #{work_dir}/{RPMS,SRPMS,SOURCES,SPECS,rpmbuild/BUILD}"
181
+ bootstrap_rpm_packages! if config[:bootstrap_packages]
175
182
  bootstrap_copy_source!
176
183
  bootstrap_get_source!
177
184
  end
@@ -183,6 +190,17 @@ class OodPackaging::Build
183
190
  sh "sudo rpm --import #{ENV['GPG_PUBKEY']}#{cmd_suffix}" if ENV['GPG_PUBKEY']
184
191
  end
185
192
 
193
+ def bootstrap_rpm_packages!
194
+ return if config[:bootstrap_packages].nil?
195
+
196
+ cmd = ['sudo', 'dnf'] if build_box.dnf?
197
+ cmd = ['sudo', 'yum'] unless build_box.dnf?
198
+ cmd.concat ['install', '-y']
199
+ cmd.concat config[:bootstrap_packages]
200
+ puts "\tBootstrapping additional packages".blue
201
+ sh cmd.join(' ')
202
+ end
203
+
186
204
  def bootstrap_copy_source!
187
205
  puts "\tCopy sources".blue
188
206
  if build_box.rpm?
@@ -225,7 +243,7 @@ class OodPackaging::Build
225
243
  puts "\tBootstrap debian build files".blue
226
244
  Dir.chdir(deb_work_dir) do
227
245
  sh "dh_make -s -y --createorig -f ../#{deb_name}.tar.gz#{cmd_suffix} || true"
228
- sh "dch -b -v #{deb_version} --controlmaint 'Release #{deb_version}'#{cmd_suffix}"
246
+ sh "dch -b -v #{deb_chlog_version} --controlmaint 'Release #{deb_chlog_version}'#{cmd_suffix}"
229
247
  end
230
248
  end
231
249
 
@@ -1,4 +1,5 @@
1
- FROM <%= base_image %>
1
+ FROM --platform=<%= platform %> <%= base_image %>
2
+ ENV ARCH=<%= arch %>
2
3
  MAINTAINER Trey Dockendorf <tdockendorf@osc.edu>
3
4
  ENV LANG=en_US.UTF-8
4
5
  ENV LC_CTYPE=en_US.UTF-8
@@ -14,18 +15,18 @@ RUN rm -f /etc/yum.repos.d/CentOS-Vault.repo /etc/yum.repos.d/CentOS-Sources.rep
14
15
  RUN head -n 13 /etc/yum.repos.d/CentOS-SCLo-scl.repo > /etc/yum.repos.d/CentOS-SCLo.repo
15
16
  RUN head -n 13 /etc/yum.repos.d/CentOS-SCLo-scl-rh.repo >> /etc/yum.repos.d/CentOS-SCLo.repo
16
17
  RUN rm -f /etc/yum.repos.d/CentOS-SCLo-scl-rh.repo /etc/yum.repos.d/CentOS-SCLo-scl.repo
17
- <% elsif dist =~ /^el/ -%>
18
+ <% elsif dnf? -%>
18
19
  RUN dnf update -y && dnf clean all && rm -rf /var/cache/dnf/*
19
- RUN dnf install -y dnf-utils epel-release langpacks-en glibc-all-langpacks && dnf clean all && rm -rf /var/cache/dnf/*
20
+ RUN dnf install -y dnf-utils <%= dist =~ /^el/ ? 'epel-release' : '' %> langpacks-en glibc-all-langpacks && dnf clean all && rm -rf /var/cache/dnf/*
20
21
  <% if dist == 'el8' -%>
21
22
  RUN dnf config-manager --set-enabled powertools && dnf clean all && rm -rf /var/cache/dnf/*
22
23
  RUN dnf module enable -y ruby:<%= ruby_version %> nodejs:<%= nodejs_version %> && dnf clean all && rm -rf /var/cache/dnf/*
23
- <% else -%>
24
+ <% elsif dist == 'el9' -%>
24
25
  RUN dnf config-manager --set-enabled crb && dnf clean all && rm -rf /var/cache/dnf/*
25
26
  <% end -%>
26
- RUN dnf install -y systemd ruby nodejs sudo which wget \
27
- gcc-c++ gcc make patch \
28
- rpm-build rpmdevtools rpm-sign scl-utils-build && \
27
+ RUN dnf install -y --allowerasing systemd ruby nodejs sudo which wget \
28
+ gcc-c++ gcc make patch shadow-utils gnupg2 \
29
+ rpm-build rpmdevtools rpm-sign <%= dist =~ /^el/ ? 'scl-utils-build' : '' %> && \
29
30
  dnf clean all && rm -rf /var/cache/dnf/*
30
31
  <% elsif dist =~ /^ubuntu|debian/ -%>
31
32
  ENV DEBIAN_FRONTEND=noninteractive
@@ -20,7 +20,7 @@ header "Add OnDemand build repo"
20
20
  cat > /etc/yum.repos.d/ondemand-web.repo <<EOF
21
21
  [ondemand-web]
22
22
  name=Open OnDemand Web Repo
23
- baseurl=https://yum.osc.edu/ondemand/build/<%= ondemand_repo_version %>/web/el\$releasever/\$basearch/
23
+ baseurl=<%= ondemand_rpm_repo_baseurl %>
24
24
  enabled=1
25
25
  gpgcheck=0
26
26
  EOF
@@ -45,7 +45,7 @@ run chmod 440 /etc/sudoers.d/ood
45
45
  <% if rpm? -%>
46
46
  header "Setup RPM env"
47
47
  sudo -u <%= ctr_user %> -H cat > <%= ctr_rpmmacros %> <<EOF
48
- %_topdir /work/<%= dist %>
48
+ %_topdir <%= work_dir %>
49
49
  <%- # Workaround to weird issue with debuginfo stripping -%>
50
50
  <% if dist == 'el7' -%>
51
51
  %_builddir %{_topdir}/rpmbuild/BUILD
@@ -14,7 +14,8 @@ class OodPackaging::BuildBox
14
14
  'el8' => 'rockylinux/rockylinux:8',
15
15
  'el9' => 'almalinux:9',
16
16
  'ubuntu-20.04' => 'ubuntu:20.04',
17
- 'ubuntu-22.04' => 'ubuntu:22.04'
17
+ 'ubuntu-22.04' => 'ubuntu:22.04',
18
+ 'amzn2023' => 'amazonlinux:2023'
18
19
  }.freeze
19
20
 
20
21
  CODENAMES = {
@@ -22,6 +23,11 @@ class OodPackaging::BuildBox
22
23
  'ubuntu-22.04' => 'jammy'
23
24
  }.freeze
24
25
 
26
+ ARCH_PLATFORMS = {
27
+ 'x86_64' => 'linux/amd64',
28
+ 'aarch64' => 'linux/arm64'
29
+ }.freeze
30
+
25
31
  def initialize(config = {})
26
32
  @config = config
27
33
  raise ArgumentError, 'Must provide dist' if dist.nil?
@@ -30,6 +36,9 @@ class OodPackaging::BuildBox
30
36
  unless valid_dist?(dist)
31
37
  raise ArgumentError, "Invalid dist selected: #{dist}. Valid choices are #{valid_dists.join(' ')}"
32
38
  end
39
+ unless valid_arch?(arch)
40
+ raise ArgumentError, "Invalid arch selected: #{arch}. Valid choices are #{valid_arches.join(' ')}"
41
+ end
33
42
  # rubocop:enable Style/GuardClause
34
43
  end
35
44
 
@@ -37,8 +46,12 @@ class OodPackaging::BuildBox
37
46
  @dist ||= ENV['OOD_PACKAGING_DIST'] || @config[:dist]
38
47
  end
39
48
 
49
+ def arch
50
+ @arch ||= ENV['OOD_PACKAGING_ARCH'] || @config[:arch] || 'x86_64'
51
+ end
52
+
40
53
  def rpm?
41
- dist.start_with?('el')
54
+ dist.start_with?('el') || dist.start_with?('amzn')
42
55
  end
43
56
 
44
57
  def deb?
@@ -79,6 +92,14 @@ class OodPackaging::BuildBox
79
92
  BASE_IMAGES.keys
80
93
  end
81
94
 
95
+ def valid_arch?(value)
96
+ ARCH_PLATFORMS.key?(value)
97
+ end
98
+
99
+ def valid_arches
100
+ ARCH_PLATFORMS.keys
101
+ end
102
+
82
103
  def base_image
83
104
  @base_image ||= BASE_IMAGES[dist]
84
105
  end
@@ -87,10 +108,18 @@ class OodPackaging::BuildBox
87
108
  @codename ||= CODENAMES[dist]
88
109
  end
89
110
 
111
+ def platform
112
+ @platform ||= ARCH_PLATFORMS[arch]
113
+ end
114
+
90
115
  def build_dir
91
116
  File.join(File.dirname(__FILE__), 'build_box/docker-image')
92
117
  end
93
118
 
119
+ def work_dir
120
+ File.join('/work', "#{dist}-#{arch}")
121
+ end
122
+
94
123
  def image_registry
95
124
  @config[:build_box_registry] || ENV['OOD_PACKAGING_BUILD_BOX_REGISTRY'] || nil
96
125
  end
@@ -108,7 +137,7 @@ class OodPackaging::BuildBox
108
137
  end
109
138
 
110
139
  def image_tag
111
- [image_registry, image_org, "#{image_name}-#{dist}:#{image_version}"].compact.join('/')
140
+ [image_registry, image_org, "#{image_name}-#{dist}-#{arch}:#{image_version}"].compact.join('/')
112
141
  end
113
142
 
114
143
  def build_gem
@@ -127,10 +156,29 @@ class OodPackaging::BuildBox
127
156
  template_file('build_box/docker-image/install.sh.erb')
128
157
  end
129
158
 
159
+ def build_command
160
+ if container_runtime == 'docker'
161
+ ['buildx', 'build']
162
+ else
163
+ ['build']
164
+ end
165
+ end
166
+
167
+ def build_output
168
+ if container_runtime == 'docker'
169
+ ['--output', 'type=docker']
170
+ else
171
+ []
172
+ end
173
+ end
174
+
130
175
  def build!
131
176
  scripts
132
- cmd = [container_runtime, 'build']
177
+ cmd = [container_runtime]
178
+ cmd.concat build_command
179
+ cmd.concat ['--platform', platform]
133
180
  cmd.concat ['--tag', image_tag]
181
+ cmd.concat build_output
134
182
  cmd.concat [ENV['OOD_PACKAGING_BUILD_BOX_ARGS']] if ENV['OOD_PACKAGING_BUILD_BOX_ARGS']
135
183
  cmd.concat ['-f', dockerfile]
136
184
  cmd.concat [build_dir]
@@ -2,7 +2,7 @@
2
2
 
3
3
  # Handle options for OodPackaging
4
4
  module OodPackaging
5
- OPTIONS = [:package, :version, :dist, :work_dir, :clean_work_dir, :output_dir, :clean_output_dir, :tar,
5
+ OPTIONS = [:package, :version, :dist, :arch, :work_dir, :clean_work_dir, :output_dir, :clean_output_dir, :tar,
6
6
  :tar_only, :skip_download, :gpg_sign, :gpg_name, :gpg_pubkey, :gpg_private_key, :gpg_passphrase,
7
7
  :debug, :attach].freeze
8
8
  end
@@ -276,6 +276,7 @@ class OodPackaging::Package
276
276
 
277
277
  def container_start!
278
278
  cmd = [container_runtime, 'run', '--detach', '--rm']
279
+ cmd.concat ['--platform', build_box.platform]
279
280
  cmd.concat ['--name', container_name]
280
281
  cmd.concat rt_specific_flags
281
282
  cmd.concat container_mounts
@@ -313,11 +314,14 @@ class OodPackaging::Package
313
314
  cmd = [container_runtime, 'kill', container_name]
314
315
  cmd.concat [cmd_suffix] unless debug?
315
316
  sh cmd.join(' '), verbose: debug?
317
+ rescue RuntimeError
318
+ puts 'Error killing container'.red
316
319
  end
317
320
 
318
321
  def container_env
319
322
  env = {
320
323
  'DIST' => build_box.dist,
324
+ 'ARCH' => build_box.arch,
321
325
  'PACKAGE' => package_name,
322
326
  'VERSION' => version,
323
327
  'TAR_NAME' => "#{tar_name}.tar.gz",
@@ -17,25 +17,25 @@ namespace :ood_packaging do
17
17
 
18
18
  namespace :buildbox do
19
19
  desc 'Build buildbox image'
20
- task :build, [:dist] do |_task, args|
20
+ task :build, [:dist, :arch] do |_task, args|
21
21
  @build_box = OodPackaging::BuildBox.new(args)
22
22
  @build_box.build!
23
23
  end
24
24
 
25
25
  desc 'Push buildbox image'
26
- task :push, [:dist] do |_task, args|
26
+ task :push, [:dist, :arch] do |_task, args|
27
27
  @build_box = OodPackaging::BuildBox.new(args)
28
28
  @build_box.push!
29
29
  end
30
30
 
31
31
  desc 'Pull buildbox image'
32
- task :pull, [:dist] do |_task, args|
32
+ task :pull, [:dist, :arch] do |_task, args|
33
33
  @build_box = OodPackaging::BuildBox.new(args)
34
34
  @build_box.pull!
35
35
  end
36
36
 
37
37
  desc 'Save buildbox image'
38
- task :save, [:dist, :path] do |_task, args|
38
+ task :save, [:dist, :arch, :path] do |_task, args|
39
39
  @build_box = OodPackaging::BuildBox.new(args)
40
40
  @build_box.save!(args[:path])
41
41
  end
@@ -47,71 +47,78 @@ namespace :ood_packaging do
47
47
  OodPackaging::Build.new.run!
48
48
  end
49
49
 
50
- OodPackaging::RakeTask.new(:internal, [:package, :dist]) do |t, args|
50
+ OodPackaging::RakeTask.new(:internal, [:package, :dist, :arch]) do |t, args|
51
51
  name = args[:package].split(':').last
52
52
  t.package = File.join(proj_root, 'packages', name)
53
53
  dist = args[:dist] || ENV['OOD_PACKAGING_DIST']
54
+ arch = args[:arch] || ENV['OOD_PACKAGING_ARCH'] || 'x86_64'
54
55
  t.dist = dist
56
+ t.arch = arch
55
57
  t.version = OodPackaging.package_version(name, dist)
56
58
  t.work_dir = File.join(proj_root, 'tmp/work')
57
59
  t.output_dir = File.join(proj_root, 'tmp/output')
58
60
  end
59
61
 
60
62
  desc 'Package ondemand-release'
61
- task :'ondemand-release', [:dist] do |t, args|
63
+ task :'ondemand-release', [:dist, :arch] do |t, args|
62
64
  ENV['OOD_PACKAGING_GPG_SIGN'] = 'false'
63
- Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist])
65
+ Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist], args[:arch])
64
66
  end
65
67
 
66
68
  desc 'Package ondemand-release-latest'
67
- task :'ondemand-release-latest', [:dist] do |t, args|
69
+ task :'ondemand-release-latest', [:dist, :arch] do |t, args|
68
70
  ENV['OOD_PACKAGING_GPG_SIGN'] = 'false'
69
- Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist])
71
+ Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist], args[:arch])
70
72
  end
71
73
 
72
- desc 'Package ondemand-release'
73
- task :'ondemand-runtime', [:dist] do |t, args|
74
- Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist])
74
+ desc 'Package ondemand-runtime'
75
+ task :'ondemand-runtime', [:dist, :arch] do |t, args|
76
+ Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist], args[:arch])
77
+ end
78
+
79
+ desc 'Package scl-utils'
80
+ task :'scl-utils', [:dist, :arch] do |t, args|
81
+ Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist], args[:arch])
75
82
  end
76
83
 
77
84
  desc 'Package passenger'
78
- task :passenger, [:dist] do |t, args|
79
- Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist])
85
+ task :passenger, [:dist, :arch] do |t, args|
86
+ Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist], args[:arch])
80
87
  end
81
88
 
82
89
  desc 'Package cjose'
83
- task :cjose, [:dist] do |t, args|
84
- Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist])
90
+ task :cjose, [:dist, :arch] do |t, args|
91
+ Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist], args[:arch])
85
92
  end
86
93
 
87
94
  desc 'Package mod_auth_openidc'
88
- task :mod_auth_openidc, [:dist] do |t, args|
89
- Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist])
95
+ task :mod_auth_openidc, [:dist, :arch] do |t, args|
96
+ Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist], args[:arch])
90
97
  end
91
98
 
92
99
  desc 'Package sqlite'
93
- task :sqlite, [:dist] do |t, args|
94
- Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist])
100
+ task :sqlite, [:dist, :arch] do |t, args|
101
+ Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist], args[:arch])
95
102
  end
96
103
 
97
104
  desc 'Package ondemand_exporter'
98
- task :ondemand_exporter, [:dist] do |t, args|
99
- Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist])
105
+ task :ondemand_exporter, [:dist, :arch] do |t, args|
106
+ Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist], args[:arch])
100
107
  end
101
108
 
102
109
  desc 'Package ondemand-compute'
103
- task :'ondemand-compute', [:dist] do |t, args|
104
- Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist])
110
+ task :'ondemand-compute', [:dist, :arch] do |t, args|
111
+ Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist], args[:arch])
105
112
  end
106
113
 
107
114
  desc 'Package python-websockify'
108
- task :'python-websockify', [:dist] do |t, args|
109
- Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist])
115
+ task :'python-websockify', [:dist, :arch] do |t, args|
116
+ Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist], args[:arch])
110
117
  end
111
118
 
112
119
  desc 'Package turbovnc'
113
- task :turbovnc, [:dist] do |t, args|
114
- Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist])
120
+ task :turbovnc, [:dist, :arch] do |t, args|
121
+ Rake::Task['ood_packaging:package:internal'].invoke(t.name, args[:dist], args[:arch])
115
122
  end
116
123
  end
117
124
  end
@@ -58,6 +58,10 @@ module OodPackaging::Utils
58
58
  '3.1'
59
59
  end
60
60
 
61
+ def ondemand_rpm_repo_baseurl
62
+ "https://yum.osc.edu/ondemand/build/#{ondemand_repo_version}/web/#{dist}/\\$basearch/"
63
+ end
64
+
61
65
  def ruby_version
62
66
  '3.0'
63
67
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  # Version code for OodPackaging
4
4
  module OodPackaging
5
- VERSION = '0.7.0'
5
+ VERSION = '0.9.0'
6
6
  PACKAGE_VERSION = {
7
7
  'ondemand-release' => {
8
8
  '(ubuntu|debian)' => '3.1.0',
@@ -10,14 +10,15 @@ module OodPackaging
10
10
  },
11
11
  'ondemand-release-latest' => {
12
12
  '(ubuntu|debian)' => '1',
13
- 'default' => '1-7'
13
+ 'default' => '1-8'
14
14
  },
15
- 'ondemand-runtime' => '3.1.0',
16
- 'passenger' => '6.0.14',
15
+ 'ondemand-runtime' => '3.1.2',
16
+ 'scl-utils' => '2.0.3',
17
+ 'passenger' => '6.0.17',
17
18
  'cjose' => '0.6.1',
18
- 'mod_auth_openidc' => '2.4.5',
19
+ 'mod_auth_openidc' => '2.4.14.1',
19
20
  'sqlite' => '3.26.0-4',
20
- 'ondemand_exporter' => '0.9.0',
21
+ 'ondemand_exporter' => '0.10.0',
21
22
  'ondemand-compute' => {
22
23
  '(ubuntu|debian)' => '3.1.0',
23
24
  'default' => '3.1.0'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ood_packaging
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Trey Dockendorf
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-05-29 00:00:00.000000000 Z
12
+ date: 2023-06-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake