Skip to content

Commit 23e3240

Browse files
committed
refactor: use .zst extension instead of .zstd, bump versions
1 parent cf94b27 commit 23e3240

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ DASH_BASE_URL = http://gondor.apana.org.au/~herbert/dash/files
2424
DASH_VERSION = 0.5.12
2525

2626
GNU_BASE_URL = https://ftp.gnu.org/gnu
27-
COREUTILS_VERSION = 9.4
27+
COREUTILS_VERSION = 9.5
2828

2929
MUSL_CC_BASE_URL = https://musl.cc
3030

3131
ifeq ($(OS),Darwin)
32-
GAWK_VERSION = 5.2.2
32+
GAWK_VERSION = 5.3.0
3333
GREP_VERSION = 3.11
3434

3535
# NOTE - Unlike the others, this remote host doesn't provide an adjacent signature or checksum file to download.
@@ -77,7 +77,7 @@ endif
7777
all: $(ALL_HOST_COMPONENTS)
7878

7979
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))
8181
SHASUMS := $(addsuffix .sha256sum,$(TARBALLS))
8282
.PHONY: tarballs
8383
tarballs: all $(TARBALLS) $(SHASUMS)
@@ -439,7 +439,7 @@ $(SOURCEDIR)/busybox-$(BUSYBOX_VERSION).tar.bz2 $(SOURCEDIR)/busybox-$(BUSYBOX_V
439439

440440
ifeq ($(OS),Darwin)
441441
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
443443

444444
.PHONY: $(DESTDIR)/sdk_universal_darwin
445445
$(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
669669
$(foreach EXT,$(SUPPORTED_EXTENSIONS),$(eval $(call unpack_tarball,$(EXT))))
670670

671671
# Create tarballs from output directories
672-
$(DESTDIR)/%.tar.zstd: $(DESTDIR)/%
672+
$(DESTDIR)/%.tar.zst: $(DESTDIR)/%
673673
@tar -cf - -C $< . | zstd -z -10 -T0 -o $@ -
674674
@touch $@
675675

676-
$(DESTDIR)/%.tar.zstd.sha256sum: $(DESTDIR)/%.tar.zstd
676+
$(DESTDIR)/%.tar.zst.sha256sum: $(DESTDIR)/%.tar.zst
677677
@$(sha256) $< > $@
678678

679679
# Create a fat mach-o binary from two single-arch mach-o binaries.

0 commit comments

Comments
 (0)