37 lines
1.2 KiB
Bash
Executable File
37 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
version=$(curl -sf https://download.opensuse.org/history/latest)
|
|
curl -s -f https://api.opensuse.org/public/source/openSUSE:Factory/_config > _config.factory
|
|
curl -s -f https://api.opensuse.org/public/source/openSUSE:Factory:Rings:0-Bootstrap/_config > _config.ring0
|
|
cat > _config.new << EOF
|
|
%define _project openSUSE:Factory:Rings:0-Bootstrap
|
|
|
|
# for glibc
|
|
%define disable_32bit 1
|
|
Macros:
|
|
%disable_32bit 1
|
|
:Macros
|
|
|
|
%if "%_project" == "openSUSE:Factory:Rings:0-Bootstrap" || "%_project" == "openSUSE:Factory:ARM:Rings:0-Bootstrap"
|
|
BuildFlags: excludebuild:kernel-source
|
|
BuildFlags: excludebuild:binutils:aarch64
|
|
BuildFlags: excludebuild:binutils:arm
|
|
BuildFlags: excludebuild:gcc12:cross-aarch64-gcc12
|
|
BuildFlags: excludebuild:gcc12:cross-aarch64-gcc12-bootstrap
|
|
BuildFlags: excludebuild:gcc12:cross-arm-gcc12
|
|
BuildFlags: excludebuild:gcc12:cross-arm-none-gcc12-bootstrap
|
|
BuildFlags: excludebuild:glibc:cross-aarch64
|
|
%endif
|
|
|
|
EOF
|
|
cat _config.factory _config.ring0 >> _config.new
|
|
sed -i -e "/^RepoURL:/s,/tumbleweed,/history/$version/tumbleweed," _config.new
|
|
# boo#1204790
|
|
sed -i -e 's/glibc-devel-32bit.*/glibc-devel-32bit/' _config.new
|
|
|
|
if [ -e _config ] && cmp -s _config.new _config; then
|
|
rm _config.new
|
|
else
|
|
mv _config.new _config
|
|
fi
|