From 9b8289b9d0deaad9683584882bf069acbc857950 Mon Sep 17 00:00:00 2001 From: kx Date: Thu, 22 Feb 2024 20:33:47 +0300 Subject: gcc-13.2.0, binutils-2.42, glibc-2.39 --- GNU/binutils/Makefile | 2 +- GNU/gcc/Makefile | 3 ++- GNU/gcc/gcc-13.2.0/Makefile | 37 +++++++++++++++++++++++++++++++++++++ GNU/glibc/Makefile | 2 +- 4 files changed, 41 insertions(+), 3 deletions(-) create mode 100644 GNU/gcc/gcc-13.2.0/Makefile diff --git a/GNU/binutils/Makefile b/GNU/binutils/Makefile index 6df7017..73f1071 100644 --- a/GNU/binutils/Makefile +++ b/GNU/binutils/Makefile @@ -11,7 +11,7 @@ url = https://ftp.gnu.org/gnu/binutils versions = 2.28.1 2.29 2.29.1 versions += 2.30 2.31 2.31.1 2.32 2.33.1 2.34 2.35 2.35.1 2.36 2.36.1 2.37 2.38 2.39 -versions += 2.40 +versions += 2.40 2.42 pkgname = binutils suffix = tar.xz diff --git a/GNU/gcc/Makefile b/GNU/gcc/Makefile index 0b52154..370dce4 100644 --- a/GNU/gcc/Makefile +++ b/GNU/gcc/Makefile @@ -37,7 +37,8 @@ SUBDIRS := gcc-2.95.3 \ gcc-11.1.0 \ gcc-11.2.0 \ gcc-11.3.0 \ - gcc-12.2.0 + gcc-12.2.0 \ + gcc-13.2.0 all-recursive downloads_clean-recursive: diff --git a/GNU/gcc/gcc-13.2.0/Makefile b/GNU/gcc/gcc-13.2.0/Makefile new file mode 100644 index 0000000..2ea8fb1 --- /dev/null +++ b/GNU/gcc/gcc-13.2.0/Makefile @@ -0,0 +1,37 @@ +# +# https://gcc.gnu.org +# +# You can use the generic url https://ftpmirror.gnu.org +# to automatically choose a nearby and up-to-date mirror. +# +# original url: https://ftp.gnu.org/gnu/gcc/gcc-$(version) +# + +url = https://ftp.gnu.org/gnu/gcc + +versions = 13.2.0 + +pkgname = gcc +suffix = tar.xz + +tarballs = $(addsuffix .$(suffix), $(addprefix $(pkgname)-, $(versions))) +sha1s = $(addsuffix .sha1sum, $(tarballs)) + +all: $(tarballs) $(sha1s) + +.PHONY: downloads_clean + +$(tarballs): + @echo -e "\n======= Downloading source tarballs =======\n" + @for version in $(versions) ; do \ + wget -N $(url)/gcc-$$version/gcc-$$version.$(suffix) ; \ + done + +$(sha1s): %.$(suffix).sha1sum : %.$(suffix) + @for tarball in $< ; do \ + echo -e "\n======= Calculation '$$tarball' sha1sum =======\n" ; \ + sha1sum --binary $$tarball > $$tarball.sha1sum ; \ + done + +downloads_clean: + @rm -rf $(tarballs) $(sha1s) diff --git a/GNU/glibc/Makefile b/GNU/glibc/Makefile index 1ffc472..779280d 100644 --- a/GNU/glibc/Makefile +++ b/GNU/glibc/Makefile @@ -9,7 +9,7 @@ url = https://ftp.gnu.org/gnu/glibc -versions = 2.21 2.22 2.23 2.24 2.25 2.26 2.27 2.28 2.30 2.31 2.32 2.33 2.34 2.35 2.36 2.37 +versions = 2.21 2.22 2.23 2.24 2.25 2.26 2.27 2.28 2.30 2.31 2.32 2.33 2.34 2.35 2.36 2.37 2.39 pkgname = glibc suffix = tar.xz -- cgit v1.2.3