ood_packaging 0.14.0 → 0.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/ood_packaging/build_box.rb +2 -0
- data/lib/ood_packaging/package.rb +1 -1
- data/lib/ood_packaging/version.rb +7 -7
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a25771a29618947c143287c8b5ceb1c2348bc6a44367080f17f58b959819bed
|
4
|
+
data.tar.gz: 9705afb8791f8f49b8d7b173236434f88df8c45e7da96f950af47732c3bdfcb8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b48b3d26630773ba34c736f3390ae46e29cef1b57926d3633dabad1b4bfe347698736561ee017f9cfcd5524d9158f0e03480402f04a0a2d191e7bcfce9026a6
|
7
|
+
data.tar.gz: 26516f95cf162a64e3d9f020cc93a22d6db49d58caa5cee0a2a0baf5b486423638320d43bcfa6925db415203e118c0baadf363eb4c03e3ea086eb9ead9e54417
|
@@ -14,6 +14,7 @@ class OodPackaging::BuildBox
|
|
14
14
|
'el9' => 'almalinux:9',
|
15
15
|
'ubuntu-20.04' => 'ubuntu:20.04',
|
16
16
|
'ubuntu-22.04' => 'ubuntu:22.04',
|
17
|
+
'ubuntu-24.04' => 'ubuntu:24.04',
|
17
18
|
'debian-12' => 'debian:12',
|
18
19
|
'amzn2023' => 'amazonlinux:2023'
|
19
20
|
}.freeze
|
@@ -21,6 +22,7 @@ class OodPackaging::BuildBox
|
|
21
22
|
CODENAMES = {
|
22
23
|
'ubuntu-20.04' => 'focal',
|
23
24
|
'ubuntu-22.04' => 'jammy',
|
25
|
+
'ubuntu-24.04' => 'noble',
|
24
26
|
'debian-12' => 'bookworm'
|
25
27
|
}.freeze
|
26
28
|
|
@@ -238,7 +238,7 @@ class OodPackaging::Package
|
|
238
238
|
end
|
239
239
|
tar_file = "#{dir}/#{tar_name}.tar.gz"
|
240
240
|
cmd.concat ["--transform 's,^,#{tar_name}/,'"]
|
241
|
-
cmd.concat ['-T', '-', '|', "gzip > #{tar_file}"]
|
241
|
+
cmd.concat ['-h', '--hard-dereference', '-T', '-', '|', "gzip > #{tar_file}"]
|
242
242
|
|
243
243
|
sh "rm #{tar_file}" if File.exist?(tar_file)
|
244
244
|
puts "Create tar archive #{tar_file}".blue
|
@@ -2,19 +2,19 @@
|
|
2
2
|
|
3
3
|
# Version code for OodPackaging
|
4
4
|
module OodPackaging
|
5
|
-
VERSION = '0.
|
5
|
+
VERSION = '0.15.0'
|
6
6
|
PACKAGE_VERSION = {
|
7
7
|
'ondemand-release' => {
|
8
|
-
'(ubuntu|debian)' => '3.1.
|
8
|
+
'(ubuntu|debian)' => '3.1.2',
|
9
9
|
'default' => '3.1'
|
10
10
|
},
|
11
11
|
'ondemand-release-latest' => {
|
12
|
-
'(ubuntu|debian)' => '
|
12
|
+
'(ubuntu|debian)' => '4',
|
13
13
|
'default' => '1-8'
|
14
14
|
},
|
15
|
-
'ondemand-runtime' => '3.1.
|
15
|
+
'ondemand-runtime' => '3.1.5',
|
16
16
|
'scl-utils' => '2.0.3',
|
17
|
-
'passenger' => '6.0.
|
17
|
+
'passenger' => '6.0.20',
|
18
18
|
'cjose' => '0.6.1',
|
19
19
|
'mod_auth_openidc' => '2.4.14.1',
|
20
20
|
'ondemand_exporter' => '0.10.0',
|
@@ -22,8 +22,8 @@ module OodPackaging
|
|
22
22
|
'(ubuntu|debian)' => '3.1.0',
|
23
23
|
'default' => '3.1.0'
|
24
24
|
},
|
25
|
-
'python-websockify' => '0.
|
26
|
-
'turbovnc' => '
|
25
|
+
'python-websockify' => '0.11.0',
|
26
|
+
'turbovnc' => '3.1.1'
|
27
27
|
}.freeze
|
28
28
|
|
29
29
|
def self.package_version(package, dist)
|
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.
|
4
|
+
version: 0.15.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: 2024-
|
12
|
+
date: 2024-07-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|