Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gcc15 for openSUSE:Factory checked in at 2025-10-15 12:45:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gcc15 (Old) and /work/SRC/openSUSE:Factory/.gcc15.new.18484 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gcc15" Wed Oct 15 12:45:19 2025 rev:17 rq:1311025 version:15.2.1+git10392 Changes: -------- --- /work/SRC/openSUSE:Factory/gcc15/gcc15.changes 2025-09-08 09:57:16.645777761 +0200 +++ /work/SRC/openSUSE:Factory/.gcc15.new.18484/gcc15.changes 2025-10-15 12:46:31.487768968 +0200 @@ -1,0 +2,6 @@ +Mon Oct 6 09:37:42 UTC 2025 - Andreas Schwab <[email protected]> + +- Update to GCC 15 branch head, 15.2.1+git10392 +- Fixes PR110812, Check availability of builtins at expand time + +------------------------------------------------------------------- Old: ---- gcc-15.2.0+git10201.tar.xz pre_checkin.sh New: ---- gcc-15.2.1+git10392.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cross-aarch64-gcc15-bootstrap.spec ++++++ --- /var/tmp/diff_new_pack.4E4QDD/_old 2025-10-15 12:46:33.471851946 +0200 +++ /var/tmp/diff_new_pack.4E4QDD/_new 2025-10-15 12:46:33.475852114 +0200 @@ -1,7 +1,7 @@ # # spec file for package cross-aarch64-gcc15-bootstrap # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2025 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -103,7 +103,7 @@ %define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64 URL: https://gcc.gnu.org/ -Version: 15.2.0+git10201 +Version: 15.2.1+git10392 Release: 0 %define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1) %define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/') cross-aarch64-gcc15.spec: same change cross-amdgcn-gcc15.spec: same change cross-arm-gcc15.spec: same change cross-arm-none-gcc15-bootstrap.spec: same change cross-arm-none-gcc15.spec: same change cross-avr-gcc15-bootstrap.spec: same change cross-avr-gcc15.spec: same change cross-bpf-gcc15.spec: same change cross-hppa-gcc15-bootstrap.spec: same change cross-hppa-gcc15.spec: same change cross-loongarch64-gcc15-bootstrap.spec: same change cross-loongarch64-gcc15.spec: same change cross-nvptx-gcc15.spec: same change cross-ppc64-gcc15.spec: same change cross-ppc64le-gcc15-bootstrap.spec: same change cross-ppc64le-gcc15.spec: same change cross-pru-gcc15-bootstrap.spec: same change cross-pru-gcc15.spec: same change cross-riscv64-elf-gcc15-bootstrap.spec: same change cross-riscv64-elf-gcc15.spec: same change cross-riscv64-gcc15-bootstrap.spec: same change cross-riscv64-gcc15.spec: same change cross-rx-gcc15-bootstrap.spec: same change cross-rx-gcc15.spec: same change cross-s390x-gcc15-bootstrap.spec: same change cross-s390x-gcc15.spec: same change cross-x86_64-gcc15.spec: same change gcc15-testresults.spec: same change gcc15.spec: same change ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.4E4QDD/_old 2025-10-15 12:46:34.675902302 +0200 +++ /var/tmp/diff_new_pack.4E4QDD/_new 2025-10-15 12:46:34.679902470 +0200 @@ -1,5 +1,5 @@ -mtime: 1755869007 -commit: 94a0137429ac010a7d35dc2418d52e3b01b46630633354c002646c035595f405 +mtime: 1759743811 +commit: e37ff216d8b87bd63ea9fd936f590329e63bd167ad926902e170617c216f5241 url: https://src.opensuse.org/gcc/gcc15.git revision: main ++++++ build.specials.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pre_checkin.sh new/pre_checkin.sh --- old/pre_checkin.sh 1970-01-01 01:00:00.000000000 +0100 +++ new/pre_checkin.sh 2025-10-06 15:34:41.000000000 +0200 @@ -0,0 +1,31 @@ +#!/bin/bash +# This script is called automatically during autobuild checkin. + +case $0 in + \./*) + here=$PWD + ;; + */*) + here=${0%/*} + ;; + *) + here=$PWD + ;; +esac +case ${here##*/} in + gcc*.*) + # Handle maintainance projects with .$REPO suffix + suffix=${here##*/} + suffix=${suffix%%\.*} + set ${suffix#gcc} + ;; + gcc-*) + suffix=${here##*/} + set ${suffix#*-}- + ;; + gcc[0-9]*) + suffix=${here##*/} + set ${suffix#gcc} + ;; +esac +. ${here}/change_spec ++++++ build.specials.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.gitignore new/.gitignore --- old/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/.gitignore 2025-10-06 15:34:41.000000000 +0200 @@ -0,0 +1 @@ +.osc diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pre_checkin.sh new/pre_checkin.sh --- old/pre_checkin.sh 1970-01-01 01:00:00.000000000 +0100 +++ new/pre_checkin.sh 2025-10-06 15:34:41.000000000 +0200 @@ -0,0 +1,31 @@ +#!/bin/bash +# This script is called automatically during autobuild checkin. + +case $0 in + \./*) + here=$PWD + ;; + */*) + here=${0%/*} + ;; + *) + here=$PWD + ;; +esac +case ${here##*/} in + gcc*.*) + # Handle maintainance projects with .$REPO suffix + suffix=${here##*/} + suffix=${suffix%%\.*} + set ${suffix#gcc} + ;; + gcc-*) + suffix=${here##*/} + set ${suffix#*-}- + ;; + gcc[0-9]*) + suffix=${here##*/} + set ${suffix#gcc} + ;; +esac +. ${here}/change_spec ++++++ gcc-15.2.0+git10201.tar.xz -> gcc-15.2.1+git10392.tar.xz ++++++ /work/SRC/openSUSE:Factory/gcc15/gcc-15.2.0+git10201.tar.xz /work/SRC/openSUSE:Factory/.gcc15.new.18484/gcc-15.2.1+git10392.tar.xz differ: char 15, line 1 ++++++ gcc.obsinfo ++++++ --- /var/tmp/diff_new_pack.4E4QDD/_old 2025-10-15 12:46:37.092003348 +0200 +++ /var/tmp/diff_new_pack.4E4QDD/_new 2025-10-15 12:46:37.132005021 +0200 @@ -1,5 +1,5 @@ name: gcc -version: 15.2.0+git10201 -mtime: 1754635956 -commit: 5115c7e447fc07457443df874bf57840e8316d5f +version: 15.2.1+git10392 +mtime: 1759710238 +commit: 21e75aa0ad20f6ea05030455cef6e15e34ff0f8d
