vanagon 0.46.0 → 0.48.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: 7ebf19c5c30050bbeebe73267d6ac1c47edfb0ffd171354783f74244eb8fe8d1
|
|
4
|
+
data.tar.gz: b65ba3da648b80a20c43acc0034bb290442d596cf75e2f0e91225eb5e51f9452
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1dfb7a9a534a6ac350ddab573344c3c6c32e091650d143fa978e4a2d20b38ee719c856125b1ee551cc6513d4ee70e414d6f868f7f4cef88f0d559ae7f55bee8b
|
|
7
|
+
data.tar.gz: bcf7b4ba89082727d98b7d1a591886cafd62f71d43597d00624c5ddfd3984358fe5dfda650d14c65bce22b33bae3c926e5fb87656cbb82c97a34835b8dda15d5
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
platform 'el-9-ppc64le' do |plat|
|
|
2
|
+
plat.servicedir '/usr/lib/systemd/system'
|
|
3
|
+
plat.defaultdir '/etc/sysconfig'
|
|
4
|
+
plat.servicetype 'systemd'
|
|
5
|
+
|
|
6
|
+
# Workaround for an issue with RedHat subscription metadata, see ITSYS-2543
|
|
7
|
+
plat.provision_with('subscription-manager repos --disable rhel-9-for-ppc64le-baseos-rpms && subscription-manager repos --enable rhel-9-for-ppc64le-baseos-rpms --enable codeready-builder-for-rhel-9-ppc64le-rpms')
|
|
8
|
+
|
|
9
|
+
packages = %w(
|
|
10
|
+
autoconf
|
|
11
|
+
automake
|
|
12
|
+
cmake
|
|
13
|
+
gcc-c++
|
|
14
|
+
java-1.8.0-openjdk-devel
|
|
15
|
+
libarchive
|
|
16
|
+
libselinux-devel
|
|
17
|
+
make
|
|
18
|
+
patch
|
|
19
|
+
perl-Getopt-Long
|
|
20
|
+
readline-devel
|
|
21
|
+
swig
|
|
22
|
+
systemtap-sdt-devel
|
|
23
|
+
zlib-devel
|
|
24
|
+
)
|
|
25
|
+
|
|
26
|
+
plat.provision_with("dnf install -y --allowerasing #{packages.join(' ')}")
|
|
27
|
+
plat.install_build_dependencies_with 'dnf install -y --allowerasing'
|
|
28
|
+
plat.vmpooler_template 'redhat-9-power9'
|
|
29
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
platform 'fedora-40-x86_64' do |plat|
|
|
2
|
+
plat.servicedir '/usr/lib/systemd/system'
|
|
3
|
+
plat.defaultdir '/etc/sysconfig'
|
|
4
|
+
plat.servicetype 'systemd'
|
|
5
|
+
plat.dist 'fc40'
|
|
6
|
+
|
|
7
|
+
packages = %w[
|
|
8
|
+
autoconf automake bzip2-devel gcc gcc-c++ libselinux-devel
|
|
9
|
+
libsepol libsepol-devel make cmake pkgconfig readline-devel
|
|
10
|
+
rpmdevtools rsync swig zlib-devel systemtap-sdt-devel
|
|
11
|
+
perl-lib perl-FindBin
|
|
12
|
+
]
|
|
13
|
+
plat.provision_with("/usr/bin/dnf install -y --best --allowerasing #{packages.join(' ')}")
|
|
14
|
+
|
|
15
|
+
plat.install_build_dependencies_with '/usr/bin/dnf install -y --best --allowerasing'
|
|
16
|
+
plat.vmpooler_template 'fedora-40-x86_64'
|
|
17
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vanagon
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.48.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Puppet By Perforce
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-04-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: docopt
|
|
@@ -186,9 +186,11 @@ files:
|
|
|
186
186
|
- lib/vanagon/platform/defaults/el-8-ppc64le.rb
|
|
187
187
|
- lib/vanagon/platform/defaults/el-8-x86_64.rb
|
|
188
188
|
- lib/vanagon/platform/defaults/el-9-aarch64.rb
|
|
189
|
+
- lib/vanagon/platform/defaults/el-9-ppc64le.rb
|
|
189
190
|
- lib/vanagon/platform/defaults/el-9-x86_64.rb
|
|
190
191
|
- lib/vanagon/platform/defaults/fedora-36-x86_64.rb
|
|
191
192
|
- lib/vanagon/platform/defaults/fedora-38-x86_64.rb
|
|
193
|
+
- lib/vanagon/platform/defaults/fedora-40-x86_64.rb
|
|
192
194
|
- lib/vanagon/platform/defaults/osx-11-arm64.rb
|
|
193
195
|
- lib/vanagon/platform/defaults/osx-11-x86_64.rb
|
|
194
196
|
- lib/vanagon/platform/defaults/osx-12-arm64.rb
|