Accepting request 1199140 from devel:BCI:Tumbleweed

🤖: sync package with devel:BCI:Tumbleweed from OBS

OBS-URL: https://build.opensuse.org/request/show/1199140
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gcc-14-image?expand=0&rev=18
This commit is contained in:
2024-09-06 15:19:00 +00:00
committed by Git OBS Bridge
2 changed files with 6 additions and 6 deletions

View File

@@ -22,7 +22,7 @@
FROM opensuse/tumbleweed:latest
RUN set -euo pipefail; zypper -n in --no-recommends gcc14 gcc14-c++ make curl findutils gawk git-core procps util-linux; zypper -n clean; rm -rf /var/log/{lastlog,tallylog,zypper.log,zypp/history,YaST2}
RUN set -euo pipefail; zypper -n in --no-recommends gcc14 gcc14-c++ make gcc gcc-c++ curl findutils gawk git-core procps util-linux; zypper -n clean; rm -rf /var/log/{lastlog,tallylog,zypper.log,zypp/history,YaST2}
# Define labels according to https://en.opensuse.org/Building_derived_containers
# labelprefix=org.opensuse.bci.gcc
@@ -43,8 +43,3 @@ LABEL org.opensuse.release-stage="released"
LABEL io.artifacthub.package.readme-url="https://raw.githubusercontent.com/SUSE/BCI-dockerfile-generator/Tumbleweed/gcc-14-image/README.md"
ENV GCC_VERSION="%%gcc_version%%"
# symlink all versioned gcc & g++ binaries to unversioned
# ones in /usr/local/bin so that plain gcc works
RUN set -euo pipefail; for gcc_bin in $(rpm -ql gcc14 gcc14-c++ |grep ^/usr/bin/ ); do \
ln -sf $gcc_bin $(echo "$gcc_bin" | sed -e 's|/usr/bin/|/usr/local/bin/|' -e 's|-14$||'); \
done

View File

@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Sep 6 05:46:48 UTC 2024 - Dirk Mueller <dmueller@suse.com>
- main gcc is 14; switch linking/packages
-------------------------------------------------------------------
Fri Aug 23 10:27:45 UTC 2024 - Dan Čermák <dcermak@suse.com>