summaryrefslogtreecommitdiff
path: root/cross/avr-gcc
diff options
context:
space:
mode:
authortnn <tnn@pkgsrc.org>2022-04-15 17:16:07 +0000
committertnn <tnn@pkgsrc.org>2022-04-15 17:16:07 +0000
commita24f07515e97f4b979a960e0f0b2d483c54e3fe8 (patch)
tree7cbacca48ff6989afe1d26d6b6beb3de15630d65 /cross/avr-gcc
parent15d6037d56928f2fb785dbab74a631f64a5fb0b5 (diff)
downloadpkgsrc-a24f07515e97f4b979a960e0f0b2d483c54e3fe8.tar.gz
cross/*gcc: remove useless patches already CHECK_PORTABILITY_SKIP'ed
Diffstat (limited to 'cross/avr-gcc')
-rw-r--r--cross/avr-gcc/Makefile4
-rw-r--r--cross/avr-gcc/distinfo3
-rw-r--r--cross/avr-gcc/patches/patch-contrib_download__prerequisites16
3 files changed, 4 insertions, 19 deletions
diff --git a/cross/avr-gcc/Makefile b/cross/avr-gcc/Makefile
index a6cd4a7edcc..3f9322426a2 100644
--- a/cross/avr-gcc/Makefile
+++ b/cross/avr-gcc/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.48 2021/09/15 12:20:15 micha Exp $
+# $NetBSD: Makefile,v 1.49 2022/04/15 17:16:08 tnn Exp $
DISTNAME= gcc-10.3.0
PKGREVISION= 1
@@ -23,6 +23,8 @@ USE_LIBTOOL= yes
USE_TOOLS+= bash gmake gsed:run
GNU_CONFIGURE= yes
GNU_CONFIGURE_STRICT= no
+CHECK_PORTABILITY_SKIP+=contrib/* # not needed for building
+
# Build outside ${WRKSRC}
OBJDIR= ../build
diff --git a/cross/avr-gcc/distinfo b/cross/avr-gcc/distinfo
index 2077143b06b..2ea786e840b 100644
--- a/cross/avr-gcc/distinfo
+++ b/cross/avr-gcc/distinfo
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.15 2022/04/15 16:56:07 tnn Exp $
+$NetBSD: distinfo,v 1.16 2022/04/15 17:16:08 tnn Exp $
BLAKE2s (gcc-10.3.0.tar.xz) = 6d7c42f9386e5e32a3148122471cb207e5f65d7b5f53b3c9adba2d45a4f28715
SHA512 (gcc-10.3.0.tar.xz) = 2b2dd7453d48a398c29eaebd1422b70341001b8c90a62aee51e83344e7fdd8a8e45f82a4a9165bd7edc76dada912c932f4b6632c5636760fec4c5d7e402b3f86
Size (gcc-10.3.0.tar.xz) = 76692288 bytes
-SHA1 (patch-contrib_download__prerequisites) = 16d02e5b026ce052b61eced69cfd6a627fea65f5
SHA1 (patch-gcc_config_host-darwin.c) = ce5647dfb0bf93e222f30cdad3f00f5a4f633afc
SHA1 (patch-gcc_configure) = 613d33d859ec3f108046274d09396aeb344e04cf
diff --git a/cross/avr-gcc/patches/patch-contrib_download__prerequisites b/cross/avr-gcc/patches/patch-contrib_download__prerequisites
deleted file mode 100644
index acd9200bf2d..00000000000
--- a/cross/avr-gcc/patches/patch-contrib_download__prerequisites
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-contrib_download__prerequisites,v 1.1 2021/09/08 12:07:06 micha Exp $
-
-Non-portable test:
-https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90142
-
---- contrib/download_prerequisites.orig 2017-04-11 16:34:07.000000000 +0000
-+++ contrib/download_prerequisites
-@@ -122,7 +122,7 @@ md5_check() {
- md5_checksum_output=$(md5 -r "${file_to_check}")
- # Grab the text before the first space
- md5_checksum_detected="${md5_checksum_output%% *}"
-- [ "${md5_checksum_expected}" == "${md5_checksum_detected}" ] \
-+ [ "${md5_checksum_expected}" = "${md5_checksum_detected}" ] \
- || die "Cannot verify integrity of possibly corrupted file ${file_to_check}"
- echo "${file_to_check}: OK"
- }