ood_packaging 0.20.0 → 0.21.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4f7ab06245164beac00cecdb915c5f790c28559c463ab1e153f9069bb6106a62
|
|
4
|
+
data.tar.gz: 778cc63ad9b9f39531f4e3bd86a73d802c118d71e7a6d2123fe04df8de99d266
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 70dc4ce56eb87b0edbe889fd45799ff5a2366e4965d501268e0ea13664bced86443e12fa3af94b24c7e507b110dc639602117c0908dabe85fa3ce93d632bd7ec
|
|
7
|
+
data.tar.gz: 472622ef9f5c2e289bce32e96fd31932afc1b87aff61938fc17fba8f6b6c31b9f18143ef07351ab46c910743d5cb8469de860a27336f6c890df82e32e25ae33e
|
|
@@ -26,10 +26,6 @@ RUN dnf install -y --allowerasing systemd sudo which wget \
|
|
|
26
26
|
<% elsif dist =~ /^ubuntu|debian/ -%>
|
|
27
27
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
28
28
|
RUN apt update -y && apt upgrade -y && \
|
|
29
|
-
<%# TODO: Ubuntu 22.04 segfaults multiarch in GHA when libc-bin is upgraded %>
|
|
30
|
-
<% if dist == 'ubuntu-22.04' && arch == 'aarch64' && ENV['GITHUB_ACTIONS'] == 'true' -%>
|
|
31
|
-
apt-mark hold libc-bin && \
|
|
32
|
-
<% end -%>
|
|
33
29
|
apt clean all -y
|
|
34
30
|
RUN apt update -y && apt install -y locales && \
|
|
35
31
|
echo "en_US UTF-8" >> /etc/locale.gen && locale-gen $LANG && \
|
|
@@ -13,16 +13,16 @@ class OodPackaging::BuildBox
|
|
|
13
13
|
'el8' => 'almalinux:8',
|
|
14
14
|
'el9' => 'almalinux:9',
|
|
15
15
|
'el10' => 'almalinux:10',
|
|
16
|
-
'ubuntu-22.04' => 'ubuntu:22.04',
|
|
17
16
|
'ubuntu-24.04' => 'ubuntu:24.04',
|
|
18
17
|
'debian-12' => 'debian:12',
|
|
18
|
+
'debian-13' => 'debian:13',
|
|
19
19
|
'amzn2023' => 'amazonlinux:2023'
|
|
20
20
|
}.freeze
|
|
21
21
|
|
|
22
22
|
CODENAMES = {
|
|
23
|
-
'ubuntu-22.04' => 'jammy',
|
|
24
23
|
'ubuntu-24.04' => 'noble',
|
|
25
|
-
'debian-12' => 'bookworm'
|
|
24
|
+
'debian-12' => 'bookworm',
|
|
25
|
+
'debian-13' => 'trixie'
|
|
26
26
|
}.freeze
|
|
27
27
|
|
|
28
28
|
ARCH_PLATFORMS = {
|
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.21.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: 2026-03-
|
|
12
|
+
date: 2026-03-30 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
@@ -17,14 +17,14 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - "~>"
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 13.0
|
|
20
|
+
version: '13.0'
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - "~>"
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: 13.0
|
|
27
|
+
version: '13.0'
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: rspec
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|