omnibus-software 22.11.239 → 23.2.281
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.expeditor/config.yml +11 -0
- data/.expeditor/software_upload.pipeline.yml +13 -0
- data/CHANGELOG.md +10 -0
- data/Gemfile +1 -1
- data/VERSION +1 -1
- data/config/patches/bash/updated_race-condition.patch +15 -0
- data/config/patches/openssl/openssl-1.0.1j-windows-relocate-dll.patch +28 -4
- data/config/software/bash.rb +15 -6
- data/config/software/bzip2.rb +2 -0
- data/config/software/cacerts.rb +2 -0
- data/config/software/chef.rb +3 -2
- data/config/software/cmake.rb +6 -0
- data/config/software/curl.rb +3 -1
- data/config/software/erlang.rb +4 -6
- data/config/software/expat.rb +4 -1
- data/config/software/git-windows.rb +2 -0
- data/config/software/git.rb +5 -1
- data/config/software/go.rb +6 -1
- data/config/software/google-protobuf.rb +1 -1
- data/config/software/gtar.rb +2 -0
- data/config/software/libarchive.rb +4 -1
- data/config/software/libedit.rb +3 -0
- data/config/software/libffi.rb +4 -1
- data/config/software/libiconv.rb +2 -0
- data/config/software/libintl-perl.rb +1 -0
- data/config/software/liblzma.rb +5 -1
- data/config/software/libtool.rb +2 -0
- data/config/software/libxml2.rb +2 -0
- data/config/software/libxslt.rb +5 -1
- data/config/software/libyaml.rb +2 -0
- data/config/software/logrotate.rb +2 -1
- data/config/software/make.rb +4 -1
- data/config/software/makedepend.rb +4 -1
- data/config/software/mpc.rb +3 -1
- data/config/software/mpfr.rb +1 -0
- data/config/software/ncurses.rb +4 -1
- data/config/software/opensearch.rb +4 -1
- data/config/software/openssl-fips.rb +4 -0
- data/config/software/openssl.rb +4 -0
- data/config/software/patch.rb +2 -0
- data/config/software/pcre.rb +2 -0
- data/config/software/pkg-config-lite.rb +2 -0
- data/config/software/popt.rb +2 -1
- data/config/software/postgresql.rb +3 -4
- data/config/software/python.rb +3 -1
- data/config/software/redis.rb +2 -1
- data/config/software/ruby-msys2-devkit.rb +6 -0
- data/config/software/ruby.rb +2 -0
- data/config/software/sqitch.rb +2 -1
- data/config/software/stunnel.rb +6 -6
- data/config/software/util-macros.rb +2 -0
- data/config/software/xproto.rb +2 -1
- data/config/software/zlib.rb +4 -1
- data/scripts/internal_sources.rb +78 -0
- data/scripts/internal_sources.yml +413 -0
- data/test/generate_steps.rb +11 -1
- data/test/omnibus-build.sh +5 -0
- data/test/omnibus.rb +4 -0
- metadata +11 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 36bf57f73432072fe0c722468defd598aaa523287a7c9a69536e16a07aa4b8c0
|
4
|
+
data.tar.gz: 2a4920d441619c76333085932d6aa5f0bc5b6638867d799aa2628e4b74a5fdb8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8628faec6137dac6ccd700f7ae5ae321505daecd9116b1647cd50bc48ed06443e651ba93793f81644603568a186267e1e7963bac2a074bfa4cc2e2add8b6b6ce
|
7
|
+
data.tar.gz: a23467ed12d1ee71a38b475821c9cd3f03014cf41e67604341de3bca8962b105d2ba0c9488ad722bbf7b81a3f59a84bf05ed1c28bebb41368a443610ca69523b
|
data/.expeditor/config.yml
CHANGED
@@ -5,6 +5,10 @@
|
|
5
5
|
slack:
|
6
6
|
notify_channel: chef-found-notify
|
7
7
|
|
8
|
+
# This publish is triggered by the `built_in:publish_rubygems` artifact_action.
|
9
|
+
rubygems:
|
10
|
+
- omnibus-software
|
11
|
+
|
8
12
|
github:
|
9
13
|
# This deletes the GitHub PR branch after successfully merged into the release branch
|
10
14
|
delete_branch_on_merge: true
|
@@ -12,6 +16,12 @@ pipelines:
|
|
12
16
|
- verify:
|
13
17
|
description: Pull Request validation tests
|
14
18
|
public: true
|
19
|
+
- software_upload:
|
20
|
+
description: Uploads omnibus-software defined in scripts/internal_sources.yml to artifactory
|
21
|
+
definition: .expeditor/software_upload.pipeline.yml
|
22
|
+
|
23
|
+
rubygems:
|
24
|
+
- omnibus-software
|
15
25
|
|
16
26
|
subscriptions:
|
17
27
|
- workload: pull_request_merged:{{github_repo}}:{{release_branch}}:*
|
@@ -24,6 +34,7 @@ subscriptions:
|
|
24
34
|
- bash:.expeditor/push_git_tag.sh:
|
25
35
|
only_if: bash:.expeditor/determine_version.sh
|
26
36
|
post_commit: true
|
37
|
+
- trigger_pipeline:software_upload
|
27
38
|
- built_in:build_gem:
|
28
39
|
only_if: "bash:.expeditor/push_git_tag.sh"
|
29
40
|
|
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
steps:
|
3
|
+
- label: ":file_folder: upload software to internal sources"
|
4
|
+
command: export PATH=/opt/omnibus-toolchain/bin/:$PATH && ./scripts/internal_sources.rb ./scripts/internal_sources.yml
|
5
|
+
expeditor:
|
6
|
+
executor:
|
7
|
+
docker:
|
8
|
+
image: chefes/omnibus-toolchain-ubuntu-2204-x86
|
9
|
+
secrets:
|
10
|
+
ARTIFACTORY_TOKEN:
|
11
|
+
path: account/static/artifactory/buildkite
|
12
|
+
field: token
|
13
|
+
|
data/CHANGELOG.md
ADDED
data/Gemfile
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
23.2.281
|
@@ -0,0 +1,15 @@
|
|
1
|
+
bashline.c:65:10: fatal error: builtins/builtext.h: No such file or directory
|
2
|
+
65 | #include "builtins/builtext.h" /* for read_builtin */
|
3
|
+
| ^~~~~~~~~~~~~~~~~~~~~
|
4
|
+
|
5
|
+
--- Makefile.in.org 2022-11-10 11:15:31.000000000 +0530
|
6
|
+
+++ Makefile.in 2022-11-10 13:31:23.000000000 +0530
|
7
|
+
@@ -596,6 +596,8 @@
|
8
|
+
ls -l $(Program)
|
9
|
+
-$(SIZE) $(Program)
|
10
|
+
|
11
|
+
+$(CSOURCES): $(DEFDIR)/builtext.h
|
12
|
+
+
|
13
|
+
.build: $(SOURCES) config.h Makefile $(DEFDIR)/builtext.h version.h $(VERSPROG)
|
14
|
+
@echo
|
15
|
+
@echo " ***********************************************************"
|
@@ -1,20 +1,44 @@
|
|
1
1
|
diff --git a/Makefile.shared b/Makefile.shared
|
2
|
-
index e8d222a..
|
2
|
+
index e8d222a..f723803 100644
|
3
3
|
--- a/Makefile.shared
|
4
4
|
+++ b/Makefile.shared
|
5
|
-
@@ -
|
5
|
+
@@ -267,6 +267,12 @@ link_o.cygwin:
|
6
|
+
deffile=$(LIBNAME)eay32.def; \
|
7
|
+
fi; \
|
8
|
+
fi; \
|
9
|
+
+ if expr $(PLATFORM) : 'mingw64' > /dev/null; then \
|
10
|
+
+ SHLIB=$(LIBNAME)eay32; base=; \
|
11
|
+
+ if test -f $(LIBNAME)eay32.def; then \
|
12
|
+
+ deffile=$(LIBNAME)eay32.def; \
|
13
|
+
+ fi; \
|
14
|
+
+ fi; \
|
15
|
+
SHLIB_SUFFIX=.dll; \
|
16
|
+
LIBVERSION="$(LIBVERSION)"; \
|
17
|
+
SHLIB_SOVER=${LIBVERSION:+"-$(LIBVERSION)"}; \
|
18
|
+
@@ -283,13 +289,23 @@ link_a.cygwin:
|
6
19
|
base=-Wl,--enable-auto-image-base; \
|
7
20
|
if expr $(PLATFORM) : 'mingw' > /dev/null; then \
|
8
21
|
case $(LIBNAME) in \
|
9
22
|
- crypto) SHLIB=libeay;; \
|
10
23
|
- ssl) SHLIB=ssleay;; \
|
11
|
-
+ crypto) SHLIB=libeay; base=-Wl,--image-base,0x64000000;; \
|
12
|
-
+ ssl) SHLIB=ssleay; base=-Wl,--image-base,0x65000000;; \
|
24
|
+
+ crypto) SHLIB=libeay; base=-Wl,--disable-dynamicbase,--image-base,0x64000000;; \
|
25
|
+
+ ssl) SHLIB=ssleay; base=-Wl,--disable-dynamicbase,--image-base,0x65000000;; \
|
26
|
+
+ esac; \
|
27
|
+
+ SHLIB_SOVER=32; \
|
28
|
+
+ extras="$(LIBNAME).def"; \
|
29
|
+
+ $(PERL) util/mkdef.pl 32 $$SHLIB > $$extras; \
|
30
|
+
+ base=; [ $(LIBNAME) = "crypto" -a -n "$(FIPSCANLIB)" ] && base=-Wl,--disable-dynamicbase,--image-base,0x63000000; \
|
31
|
+
+ fi; \
|
32
|
+
+ if expr $(PLATFORM) : 'mingw64' > /dev/null; then \
|
33
|
+
+ case $(LIBNAME) in \
|
34
|
+
+ crypto) SHLIB=libeay; base=-Wl,--disable-dynamicbase,--image-base,0x64000000;; \
|
35
|
+
+ ssl) SHLIB=ssleay; base=-Wl,--disable-dynamicbase,--image-base,0x65000000;; \
|
13
36
|
esac; \
|
14
37
|
SHLIB_SOVER=32; \
|
15
38
|
extras="$(LIBNAME).def"; \
|
16
39
|
$(PERL) util/mkdef.pl 32 $$SHLIB > $$extras; \
|
17
40
|
- base=; [ $(LIBNAME) = "crypto" -a -n "$(FIPSCANLIB)" ] && base=-Wl,--image-base,0x63000000; \
|
41
|
+
+ base=; [ $(LIBNAME) = "crypto" -a -n "$(FIPSCANLIB)" ] && base=-Wl,--disable-dynamicbase,--image-base,0x63000000; \
|
18
42
|
fi; \
|
19
43
|
dll_name=$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX; \
|
20
44
|
$(PERL) util/mkrc.pl $$dll_name | \
|
data/config/software/bash.rb
CHANGED
@@ -15,10 +15,11 @@
|
|
15
15
|
#
|
16
16
|
|
17
17
|
name "bash"
|
18
|
-
default_version "5.
|
18
|
+
default_version "5.2.15"
|
19
19
|
|
20
20
|
dependency "libiconv"
|
21
21
|
dependency "ncurses"
|
22
|
+
skip_transitive_dependency_licensing true
|
22
23
|
|
23
24
|
# version_list: url=https://ftp.gnu.org/gnu/bash/ filter=*.tar.gz
|
24
25
|
|
@@ -26,11 +27,16 @@ version("5.0") { source sha256: "b4a80f2ac66170b2913efbfb9f2594f1f76c7b1afd11
|
|
26
27
|
version("5.1") { source sha256: "cc012bc860406dcf42f64431bcd3d2fa7560c02915a601aba9cd597a39329baa" }
|
27
28
|
version("5.1.8") { source sha256: "0cfb5c9bb1a29f800a97bd242d19511c997a1013815b805e0fdd32214113d6be" }
|
28
29
|
version("5.1.16") { source sha256: "5bac17218d3911834520dad13cd1f85ab944e1c09ae1aba55906be1f8192f558" }
|
30
|
+
version("5.2") { source sha256: "a139c166df7ff4471c5e0733051642ee5556c1cc8a4a78f145583c5c81ab32fb" }
|
31
|
+
version("5.2.9") { source sha256: "68d978264253bc933d692f1de195e2e5b463a3984dfb4e5504b076865f16b6dd" }
|
32
|
+
version("5.2.15") { source sha256: "13720965b5f4fc3a0d4b61dd37e7565c741da9a5be24edc2ae00182fc1b3588c" }
|
29
33
|
|
30
34
|
license "GPL-3.0"
|
31
35
|
license_file "COPYING"
|
32
36
|
|
33
37
|
source url: "https://ftp.gnu.org/gnu/bash/bash-#{version}.tar.gz"
|
38
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/#{name}-#{version}.tar.gz",
|
39
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
34
40
|
|
35
41
|
# bash builds bash as libraries into a special directory. We need to include
|
36
42
|
# that directory in lib_dirs so omnibus can sign them during macOS deep signing.
|
@@ -43,12 +49,15 @@ build do
|
|
43
49
|
|
44
50
|
# FreeBSD can build bash with this patch but it doesn't work properly
|
45
51
|
# Things like command substitution will throw syntax errors even though the syntax is correct
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
52
|
+
if version.satisfies?("< 5.2")
|
53
|
+
unless freebsd?
|
54
|
+
# Fix bash race condition
|
55
|
+
# https://lists.gnu.org/archive/html/bug-bash/2020-12/msg00051.html
|
56
|
+
patch source: "race-condition.patch", plevel: 1, env: env
|
57
|
+
end
|
58
|
+
else
|
59
|
+
patch source: "updated_race-condition.patch", plevel: 0, env: env
|
50
60
|
end
|
51
|
-
|
52
61
|
configure_command = ["./configure",
|
53
62
|
"--prefix=#{install_dir}/embedded"]
|
54
63
|
|
data/config/software/bzip2.rb
CHANGED
@@ -31,6 +31,8 @@ dependency "openssl"
|
|
31
31
|
version("1.0.8") { source sha256: "ab5a03176ee106d3f0fa90e381da478ddae405918153cca248e682cd0c4a2269" }
|
32
32
|
|
33
33
|
source url: "https://fossies.org/linux/misc/#{name}-#{version}.tar.gz"
|
34
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/#{name}-#{version}.tar.gz",
|
35
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
34
36
|
|
35
37
|
relative_path "#{name}-#{version}"
|
36
38
|
|
data/config/software/cacerts.rb
CHANGED
@@ -23,6 +23,8 @@ skip_transitive_dependency_licensing true
|
|
23
23
|
default_version "2022-10-11"
|
24
24
|
|
25
25
|
source url: "https://curl.se/ca/cacert-#{version}.pem"
|
26
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/cacert-#{version}.pem",
|
27
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
26
28
|
|
27
29
|
# versions_list: https://curl.se/docs/caextract.html
|
28
30
|
version("2022-10-11") { source sha256: "2cff03f9efdaf52626bd1b451d700605dc1ea000c5da56bd0fc59f8f43071040" }
|
data/config/software/chef.rb
CHANGED
@@ -71,9 +71,10 @@ build do
|
|
71
71
|
# use the rake install task to build/install chef-config/chef-utils
|
72
72
|
command "rake install:local", env: env
|
73
73
|
|
74
|
+
# NOTE: Chef18 is packaged and built with ruby31 whereas previous versions of Chef are ONLY built
|
75
|
+
# with ruby31,the packaged versions differ. So we use Chef's own version to determine the windows gemspec.
|
74
76
|
gemspec_name = if windows?
|
75
|
-
|
76
|
-
RUBY_PLATFORM == "x64-mingw-ucrt" ? "chef-universal-mingw-ucrt.gemspec" : "chef-universal-mingw32.gemspec"
|
77
|
+
project.build_version.partition(".")[0].to_i < 18 ? "chef-universal-mingw32.gemspec" : "chef-universal-mingw-ucrt.gemspec"
|
77
78
|
else
|
78
79
|
"chef.gemspec"
|
79
80
|
end
|
data/config/software/cmake.rb
CHANGED
@@ -63,16 +63,22 @@ if windows?
|
|
63
63
|
if windows_arch_i386?
|
64
64
|
suffix = version.satisfies?(">= 3.20") ? "windows-i386" : "win32-x86"
|
65
65
|
source url: "https://cmake.org/files/v#{minor_version}/cmake-#{version}-#{suffix}.zip"
|
66
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/#{name}-#{version}-#{suffix}.zip",
|
67
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
66
68
|
relative_path "cmake-#{version}-win32-x86"
|
67
69
|
license_file "doc/cmake/Copyright.txt"
|
68
70
|
else
|
69
71
|
suffix = version.satisfies?(">= 3.20") ? "windows-x86_64" : "win32-x64"
|
70
72
|
source url: "https://cmake.org/files/v#{minor_version}/cmake-#{version}-#{suffix}.zip"
|
73
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/#{name}-#{version}-#{suffix}.zip",
|
74
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
71
75
|
relative_path "cmake-#{version}-win64-x64"
|
72
76
|
license_file "doc/cmake/Copyright.txt"
|
73
77
|
end
|
74
78
|
else
|
75
79
|
source url: "https://cmake.org/files/v#{minor_version}/cmake-#{version}.tar.gz"
|
80
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/#{name}-#{version}.tar.gz",
|
81
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
76
82
|
relative_path "cmake-#{version}"
|
77
83
|
license_file "Copyright.txt"
|
78
84
|
end
|
data/config/software/curl.rb
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
#
|
16
16
|
|
17
17
|
name "curl"
|
18
|
-
default_version "7.
|
18
|
+
default_version "7.85.0"
|
19
19
|
|
20
20
|
dependency "zlib"
|
21
21
|
dependency "openssl"
|
@@ -35,6 +35,8 @@ version("7.80.0") { source sha256: "dab997c9b08cb4a636a03f2f7f985eaba33279c1c526
|
|
35
35
|
version("7.79.1") { source sha256: "370b11201349816287fb0ccc995e420277fbfcaf76206e309b3f60f0eda090c2" }
|
36
36
|
|
37
37
|
source url: "https://curl.haxx.se/download/curl-#{version}.tar.gz"
|
38
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/#{name}-#{version}.tar.gz",
|
39
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
38
40
|
|
39
41
|
relative_path "curl-#{version}"
|
40
42
|
|
data/config/software/erlang.rb
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
#
|
16
16
|
|
17
17
|
name "erlang"
|
18
|
-
default_version "
|
18
|
+
default_version "25.2"
|
19
19
|
|
20
20
|
license "Apache-2.0"
|
21
21
|
license_file "LICENSE.txt"
|
@@ -31,17 +31,15 @@ source url: "https://github.com/erlang/otp/archive/OTP-#{version}.tar.gz"
|
|
31
31
|
relative_path "otp-OTP-#{version}"
|
32
32
|
|
33
33
|
# versions_list: https://github.com/erlang/otp/tags filter=*.tar.gz
|
34
|
+
version("25.2") { source sha256: "d33a988f39e534aff67799c5b9635612858459c9d8890772546d71ea38de897a" }
|
35
|
+
version("25.1.2") { source sha256: "b9ae7becd3499aeac9f94f9379e2b1b4dced4855454fe7f200a6e3e1cf4fbc53" }
|
34
36
|
version("25.0.4") { source sha256: "05878cb51a64b33c86836b12a21903075c300409b609ad5e941ddb0feb8c2120" }
|
35
37
|
version("25.0.2") { source sha256: "f78764c6fd504f7b264c47e469c0fcb86a01c92344dc9d625dfd42f6c3ed8224" }
|
36
38
|
version("25.0") { source sha256: "5988e3bca208486494446e885ca2149fe487ee115cbc3770535fd22a795af5d2" }
|
39
|
+
version("24.3.4.7") { source sha256: "80c08cf1c181a124dd805bb1d91ff5c1996bd8a27b3f4d008b1ababf48d9947e" }
|
37
40
|
version("24.3.4") { source sha256: "e59bedbb871af52244ca5284fd0a572d52128abd4decf4347fe2aef047b65c58" }
|
38
41
|
version("24.3.3") { source sha256: "a5f4d83426fd3dc2f08c0c823ae29bcf72b69008a2baee66d27ad614ec7ab607" }
|
39
42
|
version("24.3.2") { source sha256: "cdc9cf788d28a492eb6b24881fbd06a0a5c785dc374ad415b3be1db96326583c" }
|
40
|
-
version("24.2") { source sha256: "0b9c9ba7d8b40f6c77d529e07561b10f0914d2bfe9023294d7eda85b62936792" }
|
41
|
-
version("24.1.7") { source sha256: "a1dd1a238f1f3e79784b902f3cd00e06f35a630191eaf73324a07a26a2c93af3" }
|
42
|
-
version("24.1.3") { source sha256: "7ccfa8372995fc7895baeb3729f679aff87781d1b7c734acd22740bc41ee2eed" }
|
43
|
-
version("22.2.8") { source sha256: "71f73ddd59db521928a0f6c8d4354d6f4e9f4bfbd0b40d321cd5253a6c79b095" }
|
44
|
-
version("22.2") { source sha256: "232c37a502c7e491a9cbf86acb7af64fbc1a793fcbcbd0093cb029cf1c3830a7" }
|
45
43
|
version("18.3") { source sha256: "a6d08eb7df06e749ccaf3049b33ceae617a3c466c6a640ee8d248c2372d48f4e" }
|
46
44
|
|
47
45
|
build do
|
data/config/software/expat.rb
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
#
|
16
16
|
|
17
17
|
name "expat"
|
18
|
-
default_version "2.
|
18
|
+
default_version "2.5.0"
|
19
19
|
|
20
20
|
relative_path "expat-#{version}"
|
21
21
|
dependency "config_guess"
|
@@ -26,7 +26,10 @@ skip_transitive_dependency_licensing true
|
|
26
26
|
|
27
27
|
# version_list: url=https://github.com/libexpat/libexpat/releases filter=*.tar.gz
|
28
28
|
source url: "https://github.com/libexpat/libexpat/releases/download/R_#{version.gsub(".", "_")}/expat-#{version}.tar.gz"
|
29
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/#{name}-#{version}.tar.gz",
|
30
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
29
31
|
|
32
|
+
version("2.5.0") { source sha256: "6b902ab103843592be5e99504f846ec109c1abb692e85347587f237a4ffa1033" }
|
30
33
|
version("2.4.9") { source sha256: "4415710268555b32c4e5ab06a583bea9fec8ff89333b218b70b43d4ca10e38fa" }
|
31
34
|
version("2.4.8") { source sha256: "398f6d95bf808d3108e27547b372cb4ac8dc2298a3c4251eb7aa3d4c6d4bb3e2" }
|
32
35
|
version("2.4.7") { source sha256: "72644d5f0f313e2a5cf81275b09b9770c866dd87a2b62ab19981657ac0d4af5f" }
|
@@ -34,6 +34,8 @@ arch_suffix = windows_arch_i386? ? "32" : "64"
|
|
34
34
|
# builds, set the `source url:` again explicitly to the one appropriate for
|
35
35
|
# that version's release.
|
36
36
|
source url: "https://github.com/git-for-windows/git/releases/download/v#{version}.windows.1/PortableGit-#{version}-#{arch_suffix}-bit.7z.exe"
|
37
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/#{name}-#{version}-#{arch_suffix}-bit.7z.exe",
|
38
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
37
39
|
|
38
40
|
if windows_arch_i386?
|
39
41
|
# version_list: url=https://github.com/git-for-windows/git/releases filter=PortableGit-*-32-bit.7z.exe
|
data/config/software/git.rb
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
#
|
16
16
|
|
17
17
|
name "git"
|
18
|
-
default_version "2.
|
18
|
+
default_version "2.39.0"
|
19
19
|
|
20
20
|
license "LGPL-2.1"
|
21
21
|
license_file "LGPL-2.1"
|
@@ -31,6 +31,8 @@ dependency "expat"
|
|
31
31
|
relative_path "git-#{version}"
|
32
32
|
|
33
33
|
# version_list: url=https://www.kernel.org/pub/software/scm/git/ filter=*.tar.gz
|
34
|
+
|
35
|
+
version("2.39.0") { source sha256: "d929fe67cef7ac3ca709d2b56a9920f17112d5a524bf8112af37ec045a7a5109" }
|
34
36
|
version("2.37.3") { source sha256: "181f65587155ea48c682f63135678ec53055adf1532428752912d356e46b64a8" }
|
35
37
|
version("2.37.2") { source sha256: "4c428908e3a2dca4174df6ef49acc995a4fdb1b45205a2c79794487a33bc06e5" }
|
36
38
|
version("2.37.1") { source sha256: "7dded96a52e7996ce90dd74a187aec175737f680dc063f3f33c8932cf5c8d809" }
|
@@ -43,6 +45,8 @@ version("2.35.3") { source sha256: "cad708072d5c0b390c71651f5edb44143f00b3577669
|
|
43
45
|
version("2.24.1") { source sha256: "ad5334956301c86841eb1e5b1bb20884a6bad89a10a6762c958220c7cf64da02" }
|
44
46
|
|
45
47
|
source url: "https://www.kernel.org/pub/software/scm/git/git-#{version}.tar.gz"
|
48
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/#{name}-#{version}.tar.gz",
|
49
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
46
50
|
|
47
51
|
# git builds git-core as binaries into a special directory. We need to include
|
48
52
|
# that directory in bin_dirs so omnibus can sign them during macOS deep signing.
|
data/config/software/go.rb
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
#
|
16
16
|
|
17
17
|
name "go"
|
18
|
-
default_version "1.19.
|
18
|
+
default_version "1.19.5"
|
19
19
|
license "BSD-3-Clause"
|
20
20
|
license_file "https://raw.githubusercontent.com/golang/go/master/LICENSE"
|
21
21
|
|
@@ -29,6 +29,7 @@ if windows?
|
|
29
29
|
ext = "zip"
|
30
30
|
|
31
31
|
# version_list: url=https://golang.org/dl/ filter=*.windows-amd64.zip
|
32
|
+
version("1.19.5") { source sha256: "167db91a2e40aeb453d3e59d213ecab06f62e1c4a84d13a06ccda1d999961caa" }
|
32
33
|
version("1.19.1") { source sha256: "b33584c1d93b0e9c783de876b7aa99d3018bdeccd396aeb6d516a74e9d88d55f" }
|
33
34
|
version("1.19") { source sha256: "bcaaf966f91980d35ae93c37a8fe890e4ddfca19448c0d9f66c027d287e2823a" }
|
34
35
|
version("1.18.5") { source sha256: "73753620602d4b4469770040c53db55e5dd6af2ad07ecc18f71f164c3224eaad" }
|
@@ -45,6 +46,7 @@ elsif mac_os_x?
|
|
45
46
|
platform = "darwin"
|
46
47
|
|
47
48
|
# version_list: url=https://golang.org/dl/ filter=*.darwin-amd64.tar.gz
|
49
|
+
version("1.19.5") { source sha256: "23d22bb6571bbd60197bee8aaa10e702f9802786c2e2ddce5c84527e86b66aa0" }
|
48
50
|
version("1.19.1") { source sha256: "b2828a2b05f0d2169afc74c11ed010775bf7cf0061822b275697b2f470495fb7" }
|
49
51
|
version("1.19") { source sha256: "df6509885f65f0d7a4eaf3dfbe7dda327569787e8a0a31cbf99ae3a6e23e9ea8" }
|
50
52
|
version("1.18.5") { source sha256: "828eeca8b5abea3e56921df8fa4b1101380a5ebcfee10acbc8ffe7ec0bf5876b" }
|
@@ -61,6 +63,7 @@ elsif mac_os_x?
|
|
61
63
|
elsif armhf?
|
62
64
|
platform = "armv6l"
|
63
65
|
# version_list: url=https://golang.org/dl/ filter=*.linux-armv6l.tar.gz
|
66
|
+
version("1.19.5") { source sha256: "ec14f04bdaf4a62bdcf8b55b9b6434cc27c2df7d214d0bb7076a7597283b026a" }
|
64
67
|
version("1.19.1") { source sha256: "efe93f5671621ee84ce5e262e1e21acbc72acefbaba360f21778abd083d4ad16" }
|
65
68
|
version("1.19") { source sha256: "25197c7d70c6bf2b34d7d7c29a2ff92ba1c393f0fb395218f1147aac2948fb93" }
|
66
69
|
version("1.18.5") { source sha256: "d5ac34ac5f060a5274319aa04b7b11e41b123bd7887d64efb5f44ead236957af" }
|
@@ -75,6 +78,7 @@ elsif armhf?
|
|
75
78
|
elsif arm?
|
76
79
|
platform = "arm64"
|
77
80
|
# version_list: url=https://golang.org/dl/ filter=*.linux-arm64.tar.gz
|
81
|
+
version("1.19.5") { source sha256: "fc0aa29c933cec8d76f5435d859aaf42249aa08c74eb2d154689ae44c08d23b3" }
|
78
82
|
version("1.19.1") { source sha256: "49960821948b9c6b14041430890eccee58c76b52e2dbaafce971c3c38d43df9f" }
|
79
83
|
version("1.19") { source sha256: "efa97fac9574fc6ef6c9ff3e3758fb85f1439b046573bf434cccb5e012bd00c8" }
|
80
84
|
version("1.18.5") { source sha256: "006f6622718212363fa1ff004a6ab4d87bbbe772ec5631bab7cac10be346e4f1" }
|
@@ -88,6 +92,7 @@ elsif arm?
|
|
88
92
|
version("1.16.3") { source sha256: "566b1d6f17d2bc4ad5f81486f0df44f3088c3ed47a3bec4099d8ed9939e90d5d" }
|
89
93
|
else
|
90
94
|
# version_list: url=https://golang.org/dl/ filter=*.linux-amd64.tar.gz
|
95
|
+
version("1.19.5") { source sha256: "36519702ae2fd573c9869461990ae550c8c0d955cd28d2827a6b159fda81ff95" }
|
91
96
|
version("1.19.1") { source sha256: "acc512fbab4f716a8f97a8b3fbaa9ddd39606a28be6c2515ef7c6c6311acffde" }
|
92
97
|
version("1.19") { source sha256: "464b6b66591f6cf055bc5df90a9750bf5fbc9d038722bb84a9d56a2bea974be6" }
|
93
98
|
version("1.18.5") { source sha256: "9e5de37f9c49942c601b191ac5fba404b868bfc21d446d6960acc12283d6e5f2" }
|
data/config/software/gtar.rb
CHANGED
@@ -28,6 +28,8 @@ license "GPL-3.0"
|
|
28
28
|
license_file "COPYING"
|
29
29
|
|
30
30
|
source url: "https://ftp.gnu.org/gnu/tar/tar-#{version}.tar.gz"
|
31
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/tar-#{version}.tar.gz",
|
32
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
31
33
|
|
32
34
|
relative_path "tar-#{version}"
|
33
35
|
|
@@ -18,7 +18,7 @@
|
|
18
18
|
# https://github.com/berkshelf/api.berkshelf.com
|
19
19
|
|
20
20
|
name "libarchive"
|
21
|
-
default_version "3.6.
|
21
|
+
default_version "3.6.2"
|
22
22
|
|
23
23
|
license "BSD-2-Clause"
|
24
24
|
license_file "COPYING"
|
@@ -26,6 +26,7 @@ skip_transitive_dependency_licensing true
|
|
26
26
|
|
27
27
|
# versions_list: https://github.com/libarchive/libarchive/releases/ filter=*.tar.gz
|
28
28
|
|
29
|
+
version("3.6.2") { source sha256: "ba6d02f15ba04aba9c23fd5f236bb234eab9d5209e95d1c4df85c44d5f19b9b3" }
|
29
30
|
version("3.6.1") { source sha256: "c676146577d989189940f1959d9e3980d28513d74eedfbc6b7f15ea45fe54ee2" }
|
30
31
|
version("3.6.0") { source sha256: "a36613695ffa2905fdedc997b6df04a3006ccfd71d747a339b78aa8412c3d852" }
|
31
32
|
version("3.5.2") { source sha256: "5f245bd5176bc5f67428eb0aa497e09979264a153a074d35416521a5b8e86189" }
|
@@ -33,6 +34,8 @@ version("3.5.1") { source sha256: "9015d109ec00bb9ae1a384b172bf2fc1dff41e2c66e5a
|
|
33
34
|
version("3.5.0") { source sha256: "fc4bc301188376adc18780d35602454cc8df6396e1b040fbcbb0d4c0469faf54" }
|
34
35
|
|
35
36
|
source url: "https://github.com/libarchive/libarchive/releases/download/v#{version}/libarchive-#{version}.tar.gz"
|
37
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/#{name}-#{version}.tar.gz",
|
38
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
36
39
|
|
37
40
|
relative_path "libarchive-#{version}"
|
38
41
|
|
data/config/software/libedit.rb
CHANGED
@@ -26,6 +26,7 @@ dependency "config_guess"
|
|
26
26
|
|
27
27
|
# version_list: url=http://thrysoee.dk/editline/ filter=*.tar.gz
|
28
28
|
|
29
|
+
version("20221030-3.1") { source sha256: "f0925a5adf4b1bf116ee19766b7daa766917aec198747943b1c4edf67a4be2bb" }
|
29
30
|
version("20210910-3.1") { source sha256: "6792a6a992050762edcca28ff3318cdb7de37dccf7bc30db59fcd7017eed13c5" }
|
30
31
|
version("20210419-3.1") { source sha256: "571ebe44b74860823e24a08cf04086ff104fd7dfa1020abf26c52543134f5602" }
|
31
32
|
version("20150325-3.1") { source sha256: "c88a5e4af83c5f40dda8455886ac98923a9c33125699742603a88a0253fcc8c5" }
|
@@ -34,6 +35,8 @@ version("20130712-3.1") { source sha256: "5d9b1a9dd66f1fe28bbd98e4d8ed1a22d8da0d
|
|
34
35
|
version("20120601-3.0") { source sha256: "51f0f4b4a97b7ebab26e7b5c2564c47628cdb3042fd8ba8d0605c719d2541918" }
|
35
36
|
|
36
37
|
source url: "https://www.thrysoee.dk/editline/libedit-#{version}.tar.gz"
|
38
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/#{name}-#{version}.tar.gz",
|
39
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
37
40
|
|
38
41
|
if version == "20141030-3.1"
|
39
42
|
# released tar file has name discrepency in folder name for this version
|
data/config/software/libffi.rb
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
#
|
16
16
|
|
17
17
|
name "libffi"
|
18
|
-
default_version "3.4.
|
18
|
+
default_version "3.4.4"
|
19
19
|
|
20
20
|
license "MIT"
|
21
21
|
license_file "LICENSE"
|
@@ -23,10 +23,13 @@ skip_transitive_dependency_licensing true
|
|
23
23
|
|
24
24
|
# version_list: url=https://github.com/libffi/libffi/releases filter=*.tar.gz
|
25
25
|
|
26
|
+
version("3.4.4") { source sha256: "d66c56ad259a82cf2a9dfc408b32bf5da52371500b84745f7fb8b645712df676" }
|
26
27
|
version("3.4.2") { source sha256: "540fb721619a6aba3bdeef7d940d8e9e0e6d2c193595bc243241b77ff9e93620" }
|
27
28
|
version("3.3") { source sha256: "72fba7922703ddfa7a028d513ac15a85c8d54c8d67f55fa5a4802885dc652056" }
|
28
29
|
|
29
30
|
source url: "https://github.com/libffi/libffi/releases/download/v#{version}/libffi-#{version}.tar.gz"
|
31
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/#{name}-#{version}.tar.gz",
|
32
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
30
33
|
|
31
34
|
relative_path "libffi-#{version}"
|
32
35
|
|
data/config/software/libiconv.rb
CHANGED
@@ -33,6 +33,8 @@ version("1.16") { source sha256: "e6a1b1b589654277ee790cce3734f07876ac4ccfaecbee
|
|
33
33
|
version("1.15") { source sha256: "ccf536620a45458d26ba83887a983b96827001e92a13847b45e4925cc8913178" }
|
34
34
|
|
35
35
|
source url: "https://ftp.gnu.org/pub/gnu/libiconv/libiconv-#{version}.tar.gz"
|
36
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/#{name}-#{version}.tar.gz",
|
37
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
36
38
|
|
37
39
|
relative_path "libiconv-#{version}"
|
38
40
|
|
@@ -40,6 +40,7 @@ dependency "cpanminus"
|
|
40
40
|
|
41
41
|
# version_list: url=https://cpan.metacpan.org/authors/id/G/GU/GUIDO/ filter=libintl-perl-*.tar.gz
|
42
42
|
|
43
|
+
version("1.33") { source sha256: "5126eda9ccd0eeb10db82ddef63cbcaf7dbd771e78cc0fb110cc3b5a6b8679e7" }
|
43
44
|
version("1.32") { source sha256: "80108298f2564ecbfc7110a3042008e665ed00c2e155b36b0188e6c1135ceba5" }
|
44
45
|
version("1.23") { source sha256: "60da16356c2fa89a0c542c825d626c8c2811202b6002b56d8574b928a1379ffa" }
|
45
46
|
|
data/config/software/liblzma.rb
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
#
|
16
16
|
|
17
17
|
name "liblzma"
|
18
|
-
default_version "5.2.
|
18
|
+
default_version "5.2.10"
|
19
19
|
|
20
20
|
license "Public-Domain"
|
21
21
|
license_file "COPYING"
|
@@ -23,6 +23,8 @@ skip_transitive_dependency_licensing true
|
|
23
23
|
|
24
24
|
# version_list: url=http://tukaani.org/xz/ filer=*.tar.gz
|
25
25
|
|
26
|
+
version("5.2.10") { source sha256: "eb7a3b2623c9d0135da70ca12808a214be9c019132baaa61c9e1d198d1d9ded3" }
|
27
|
+
version("5.2.7") { source sha256: "06327c2ddc81e126a6d9a78b0be5014b976a2c0832f492dcfc4755d7facf6d33" }
|
26
28
|
version("5.2.6") { source sha256: "a2105abee17bcd2ebd15ced31b4f5eda6e17efd6b10f921a01cda4a44c91b3a0" }
|
27
29
|
version("5.2.5") { source sha256: "f6f4910fd033078738bd82bfba4f49219d03b17eb0794eb91efbae419f4aba10" }
|
28
30
|
version("5.2.4") { source sha256: "b512f3b726d3b37b6dc4c8570e137b9311e7552e8ccbab4d39d47ce5f4177145" }
|
@@ -30,6 +32,8 @@ version("5.2.3") { source sha256: "71928b357d0a09a12a4b4c5fafca8c31c19b0e7d3b8eb
|
|
30
32
|
version("5.2.2") { source sha256: "73df4d5d34f0468bd57d09f2d8af363e95ed6cc3a4a86129d2f2c366259902a2" }
|
31
33
|
|
32
34
|
source url: "https://tukaani.org/xz/xz-#{version}.tar.gz"
|
35
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/xz-#{version}.tar.gz",
|
36
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
33
37
|
|
34
38
|
relative_path "xz-#{version}"
|
35
39
|
|
data/config/software/libtool.rb
CHANGED
@@ -31,6 +31,8 @@ version("2.4.2") { source sha256: "b38de44862a987293cd3d8dfae1c409d514b6c4e794eb
|
|
31
31
|
version("2.4") { source sha256: "13df57ab63a94e196c5d6e95d64e53262834fe780d5e82c28f177f9f71ddf62e" }
|
32
32
|
|
33
33
|
source url: "https://ftp.gnu.org/gnu/libtool/libtool-#{version}.tar.gz"
|
34
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/#{name}-#{version}.tar.gz",
|
35
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
34
36
|
|
35
37
|
relative_path "libtool-#{version}"
|
36
38
|
|
data/config/software/libxml2.rb
CHANGED
@@ -33,6 +33,8 @@ version("2.9.10") { source sha256: "593b7b751dd18c2d6abcd0c4bcb29efc203d0b4373a6
|
|
33
33
|
version("2.9.9") { source sha256: "58a5c05a2951f8b47656b676ce1017921a29f6b1419c45e3baed0d6435ba03f5" }
|
34
34
|
|
35
35
|
source url: "https://download.gnome.org/sources/libxml2/2.9/libxml2-#{version}.tar.xz"
|
36
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/#{name}-#{version}.tar.xz",
|
37
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
36
38
|
|
37
39
|
relative_path "libxml2-#{version}"
|
38
40
|
|
data/config/software/libxslt.rb
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
#
|
16
16
|
|
17
17
|
name "libxslt"
|
18
|
-
default_version "1.1.
|
18
|
+
default_version "1.1.37"
|
19
19
|
|
20
20
|
license "MIT"
|
21
21
|
license_file "COPYING"
|
@@ -26,11 +26,15 @@ dependency "liblzma"
|
|
26
26
|
dependency "config_guess"
|
27
27
|
|
28
28
|
# versions_list: url=https://download.gnome.org/sources/libxslt/1.1/ filter=*.tar.xz
|
29
|
+
version("1.1.37") { source sha256: "3a4b27dc8027ccd6146725950336f1ec520928f320f144eb5fa7990ae6123ab4" }
|
30
|
+
version("1.1.36") { source sha256: "12848f0a4408f65b530d3962cd9ff670b6ae796191cfeff37522b5772de8dc8e" }
|
29
31
|
version("1.1.35") { source sha256: "8247f33e9a872c6ac859aa45018bc4c4d00b97e2feac9eebc10c93ce1f34dd79" }
|
30
32
|
version("1.1.34") { source sha256: "28c47db33ab4daefa6232f31ccb3c65260c825151ec86ec461355247f3f56824" }
|
31
33
|
version("1.1.30") { source sha256: "db1e4e26eaec47d00f885bad19a8749eb1008909b817d650101365f068ee3b24" }
|
32
34
|
|
33
35
|
source url: "https://download.gnome.org/sources/libxslt/1.1/libxslt-#{version}.tar.xz"
|
36
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/#{name}-#{version}.tar.xz",
|
37
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
34
38
|
|
35
39
|
relative_path "libxslt-#{version}"
|
36
40
|
|
data/config/software/libyaml.rb
CHANGED
@@ -29,6 +29,8 @@ version("0.2.4") { source sha256: "d80aeda8747b7c26fbbfd87ab687786e58394a8435ae3
|
|
29
29
|
version("0.1.7") { source sha256: "8088e457264a98ba451a90b8661fcb4f9d6f478f7265d48322a196cec2480729" }
|
30
30
|
|
31
31
|
source url: "https://pyyaml.org/download/libyaml/yaml-#{version}.tar.gz"
|
32
|
+
internal_source url: "#{ENV["ARTIFACTORY_REPO_URL"]}/#{name}/yaml-#{version}.tar.gz",
|
33
|
+
authorization: "X-JFrog-Art-Api:#{ENV["ARTIFACTORY_TOKEN"]}"
|
32
34
|
|
33
35
|
relative_path "yaml-#{version}"
|
34
36
|
|
@@ -15,7 +15,7 @@
|
|
15
15
|
#
|
16
16
|
|
17
17
|
name "logrotate"
|
18
|
-
default_version "3.
|
18
|
+
default_version "3.21.0"
|
19
19
|
|
20
20
|
license "GPL-2.0"
|
21
21
|
license_file "COPYING"
|
@@ -27,6 +27,7 @@ source url: "https://github.com/logrotate/logrotate/archive/#{version}.tar.gz"
|
|
27
27
|
|
28
28
|
# versions_list: https://github.com/logrotate/logrotate/tags filter=*.tar.gz
|
29
29
|
|
30
|
+
version("3.21.0") { source sha256: "7f58d6ab7e4eab3403528a88d3747a91b03e83e866a8fb966551016e0df527bb" }
|
30
31
|
version("3.20.1") { source sha256: "f37458dee3b4adab6719767ad4b93ff9ec8948755d1148b76f7f4c2c68d3e457" }
|
31
32
|
version("3.19.0") { source sha256: "7de1796cb99ce4ed21770b5dae0b4e6f81de0b4df310a58a1617d8061b1e0930" }
|
32
33
|
version("3.18.1") { source sha256: "18e9c9b85dd185e79f097f4e7982bc5b8c137300756a7878e8fa24731f2f8e21" }
|