summaryrefslogtreecommitdiffstats
path: root/MinGW-w64/build/MinGW-w64.SlackBuild
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2023-04-17 21:40:59 +0000
committer Eric Hameleers <alien@slackware.com>2023-04-17 21:40:59 +0000
commitd0ff07c19a3e600d7073fb89983822454bcbcf64 (patch)
tree15463fb1d2b5c5b7bc83a50da1cb2c8639f3cc3c /MinGW-w64/build/MinGW-w64.SlackBuild
parent1bc539ceb97b7d870ccfcf8feac3d7004b4b4cc8 (diff)
downloadasb-d0ff07c19a3e600d7073fb89983822454bcbcf64.tar.gz
asb-d0ff07c19a3e600d7073fb89983822454bcbcf64.tar.xz
MinGW-w64: update to v10.0.0 and GCC 12.2.0
Diffstat (limited to 'MinGW-w64/build/MinGW-w64.SlackBuild')
-rwxr-xr-xMinGW-w64/build/MinGW-w64.SlackBuild32
1 files changed, 17 insertions, 15 deletions
diff --git a/MinGW-w64/build/MinGW-w64.SlackBuild b/MinGW-w64/build/MinGW-w64.SlackBuild
index d1dd7406..ed0e97d7 100755
--- a/MinGW-w64/build/MinGW-w64.SlackBuild
+++ b/MinGW-w64/build/MinGW-w64.SlackBuild
@@ -1,6 +1,6 @@
#!/bin/sh
# $Id$
-# Copyright 2020 Eric Hameleers, Eindhoven, NL
+# Copyright 2020, 2021, 2023 Eric Hameleers, Eindhoven, NL
# All rights reserved.
#
# Permission to use, copy, modify, and distribute this software for
@@ -48,6 +48,9 @@
# 9.0.0_gcc11.2.0-1:
# 22/dec/2021 by Eric Hameleers <alien@slackware.com>
# * Update.
+# 10.0.0_gcc12.2.0-1:
+# 17/apr/2023 by Eric Hameleers <alien@slackware.com>
+# * Update.
#
# Run 'sh MinGW-w64.SlackBuild' to build a Slackware package.
# The package (.t?z) and .txt file as well as build logs are created in /tmp .
@@ -66,19 +69,19 @@ GCC_DOCS="COPYING* ChangeLog* INSTALL LAST_UPDATED MAINTAINERS \
MINGW_DOCS="AUTHORS COPYING* DISCLAIMER*"
# Core tools:
-BINUTILS=2.37
-GCC=11.2.0
-MINGW=v9.0.0
+BINUTILS=2.40
+GCC=12.2.0
+MINGW=v10.0.0
# Package version:
VERSION=${VERSION:-${MINGW}_gcc${GCC}}
# Support tools:
GMP=6.2.1
-MPFR=4.1.0
-MPC=1.2.1
-OSL=0.9.3
-ISL=0.22.1
+MPFR=4.2.0
+MPC=1.3.1
+OSL=0.9.5
+ISL=0.26
CLOOG=0.20.0
# Automatically determine the architecture we're building on:
@@ -173,23 +176,22 @@ SOURCE[2]="$SRCDIR/sources/binutils-${BINUTILS}.tar.gz"
SRCURL[2]="https://ftp.gnu.org/gnu/binutils/binutils-${BINUTILS}.tar.gz"
SOURCE[3]="$SRCDIR/sources/gmp-${GMP}.tar.xz"
-SRCURL[3]="ftp://ftp.gnu.org/gnu/gmp/gmp-${GMP}.tar.xz"
+SRCURL[3]="https://ftp.gnu.org/gnu/gmp/gmp-${GMP}.tar.xz"
SOURCE[4]="$SRCDIR/sources/mpfr-${MPFR}.tar.xz"
-SRCURL[4]="ftp://ftp.gnu.org/gnu/mpfr/mpfr-${MPFR}.tar.xz"
+SRCURL[4]="https://ftp.gnu.org/gnu/mpfr/mpfr-${MPFR}.tar.xz"
SOURCE[5]="$SRCDIR/sources/mpc-${MPC}.tar.gz"
-SRCURL[5]="ftp://ftp.gnu.org/gnu/mpc/mpc-${MPC}.tar.gz"
+SRCURL[5]="https://ftp.gnu.org/gnu/mpc/mpc-${MPC}.tar.gz"
SOURCE[6]="$SRCDIR/sources/isl-${ISL}.tar.xz"
-SRCURL[6]="http://isl.gforge.inria.fr/isl-${ISL}.tar.xz"
+SRCURL[6]="https://libisl.sourceforge.io/isl-${ISL}.tar.xz"
SOURCE[7]="$SRCDIR/sources/osl-${OSL}.tar.gz"
-SRCURL[7]=" https://github.com/periscop/openscop/releases/download/${OSL}/osl-${OSL}.tar.gz"
+SRCURL[7]="https://github.com/periscop/openscop/releases/download/${OSL}/osl-${OSL}.tar.gz"
SOURCE[8]="$SRCDIR/sources/cloog-${CLOOG}.tar.gz"
-SRCURL[8]=" https://github.com/periscop/cloog/releases/download/cloog-${CLOOG}/cloog-${CLOOG}.tar.gz"
-
+SRCURL[8]="https://github.com/periscop/cloog/releases/download/cloog-${CLOOG}/cloog-${CLOOG}.tar.gz"
##
## --- with a little luck, you won't have to edit below this point --- ##