@@ -24,12 +24,12 @@ DASH_BASE_URL = http://gondor.apana.org.au/~herbert/dash/files
24
24
DASH_VERSION = 0.5.12
25
25
26
26
GNU_BASE_URL = https://ftp.gnu.org/gnu
27
- COREUTILS_VERSION = 9.4
27
+ COREUTILS_VERSION = 9.5
28
28
29
29
MUSL_CC_BASE_URL = https://musl.cc
30
30
31
31
ifeq ($(OS ) ,Darwin)
32
- GAWK_VERSION = 5.2.2
32
+ GAWK_VERSION = 5.3.0
33
33
GREP_VERSION = 3.11
34
34
35
35
# NOTE - Unlike the others, this remote host doesn't provide an adjacent signature or checksum file to download.
77
77
all : $(ALL_HOST_COMPONENTS )
78
78
79
79
ALL_PACKAGES := $(shell find $(DESTDIR ) -mindepth 1 -maxdepth 1 -type d 2>/dev/null | grep -vE "\.tar\.* $$")
80
- TARBALLS := $(addsuffix .tar.zstd ,$(ALL_PACKAGES ) )
80
+ TARBALLS := $(addsuffix .tar.zst ,$(ALL_PACKAGES ) )
81
81
SHASUMS := $(addsuffix .sha256sum,$(TARBALLS ) )
82
82
.PHONY : tarballs
83
83
tarballs : all $(TARBALLS ) $(SHASUMS )
@@ -439,7 +439,7 @@ $(SOURCEDIR)/busybox-$(BUSYBOX_VERSION).tar.bz2 $(SOURCEDIR)/busybox-$(BUSYBOX_V
439
439
440
440
ifeq ($(OS ) ,Darwin)
441
441
MACOS_COMMAND_LINE_TOOLS_PATH := /Library/Developer/CommandLineTools
442
- MACOS_SDK_VERSIONS := 12.1 12.3 13.3 14.2
442
+ MACOS_SDK_VERSIONS := 12.1 12.3 13.3 14.4
443
443
444
444
.PHONY : $(DESTDIR ) /sdk_universal_darwin
445
445
$(DESTDIR ) /sdk_universal_darwin : $(foreach VERSION,$(MACOS_SDK_VERSIONS ) ,$(DESTDIR ) /sdk_$(VERSION ) _universal_darwin)
@@ -669,11 +669,11 @@ SUPPORTED_EXTENSIONS = .tar.bz2 .tar.gz .tgz .tar.xz
669
669
$(foreach EXT,$(SUPPORTED_EXTENSIONS),$(eval $(call unpack_tarball,$(EXT))))
670
670
671
671
# Create tarballs from output directories
672
- $(DESTDIR ) /% .tar.zstd : $(DESTDIR ) /%
672
+ $(DESTDIR ) /% .tar.zst : $(DESTDIR ) /%
673
673
@tar -cf - -C $< . | zstd -z -10 -T0 -o $@ -
674
674
@touch $@
675
675
676
- $(DESTDIR ) /% .tar.zstd .sha256sum : $(DESTDIR ) /% .tar.zstd
676
+ $(DESTDIR ) /% .tar.zst .sha256sum : $(DESTDIR ) /% .tar.zst
677
677
@$(sha256 ) $< > $@
678
678
679
679
# Create a fat mach-o binary from two single-arch mach-o binaries.
0 commit comments