Compare commits
87 Commits
PR_bird3#1
...
PR_helmfil
| Author | SHA256 | Date | |
|---|---|---|---|
|
|
a66c060f42 | ||
| a15935da4f | |||
| b9312ef3d1 | |||
| 172d5d28b3 | |||
| 3499ed9954 | |||
| cfd8745f1b | |||
| d4d13f2589 | |||
| aea01eb697 | |||
| ca4d1ccdb2 | |||
| 5ffd93f8ff | |||
|
|
e66531550a | ||
| 69a658bd00 | |||
|
|
ed10d127e1 | ||
| 920f500c2d | |||
| ae03bdb413 | |||
|
|
8dea22da27 | ||
| db55ee5099 | |||
|
|
acd5200a82 | ||
|
|
fd98ce0933 | ||
|
|
8210acb531 | ||
|
|
8b0d506e17 | ||
| a6975be399 | |||
| fbbea248cc | |||
| 30ffa267ce | |||
| 75399cad77 | |||
| 706517b028 | |||
| c307213f8e | |||
|
3af15d4d22
|
|||
| 60c3479bc6 | |||
|
|
20bac6ac37 | ||
|
|
b511b59ca5
|
||
|
|
bc3dc4b339 | ||
| f93f12361f | |||
|
|
994236b840 | ||
|
|
29a1d5a82c
|
||
|
|
2e6929b3b2 | ||
|
|
c4f6a7a235 | ||
| 335705143c | |||
| f250ad0669 | |||
| 324825e0b7 | |||
| e736273676 | |||
|
|
434d04cf96 | ||
| a97a485213 | |||
|
|
5d5cfbf4aa | ||
|
|
0d97d2916b
|
||
|
|
be9326b949
|
||
| da4eebb4e9 | |||
| c48f6ace11 | |||
| 68261dc6cd | |||
|
|
d19af5a4b9 | ||
|
|
d29edb21a2 | ||
|
|
c31a6f7216 | ||
|
|
8d2906ef2e | ||
|
|
08c4095ab0
|
||
| 5e849a18d0 | |||
| a31c06a700 | |||
| a865f86f0e | |||
| e047cfd6e9 | |||
| 61505d870a | |||
| fcb6c96d1c | |||
| 3d7a75de4e | |||
|
|
5ff3980bb7 | ||
|
|
7e8bcc3848
|
||
|
|
fd4a4e0117
|
||
|
|
ca34b0abcf | ||
|
|
b76e0a26f1
|
||
|
|
073c82f2a2
|
||
| d6eb2b195d | |||
|
|
3fdbe74a8d
|
||
| 8d8263f040 | |||
|
|
d033266214
|
||
| df083c1a38 | |||
| cc899b74db | |||
|
|
817f6e0eca
|
||
| 912cd96266 | |||
| fdedafeaea | |||
| d58f3a9671 | |||
| 89de82717e | |||
|
|
53e6445e86 | ||
|
|
b725025e31 | ||
|
|
980bc2fac9 | ||
|
|
7498e4e745 | ||
|
|
4375c22800 | ||
|
|
26bc829aa4 | ||
|
|
2941bfb155 | ||
|
|
e257ee6ae6 | ||
|
|
201d9fafd2 |
@@ -1,37 +1,35 @@
|
||||
# Use this as .gitea/workflows/patchinfo_numberator.yaml in all products/* repos
|
||||
name: Patchinfo ID numberator
|
||||
run-name: ${{ gitea.actor }} is setting patchinfo numbers
|
||||
on: [push]
|
||||
name: Patchinfo incident numbering
|
||||
|
||||
on:
|
||||
push:
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
REPO_PATH: /workspace/${{ gitea.repository }}
|
||||
REPO_URL: https://gitea-actions-autobuild:${{ secrets.REPO_WRITE }}@$RUNNER_GITEA_DOMAIN/${{ gitea.repository }}.git
|
||||
|
||||
jobs:
|
||||
use-go-action:
|
||||
runs-on: tumbleweed
|
||||
runs-on: tumbleweed_autobuild
|
||||
steps:
|
||||
# Install packages if not provided by image
|
||||
- run: |
|
||||
rpm -q go && exit 0
|
||||
zypper ref
|
||||
zypper in -y go
|
||||
# Generic action from GitHub to clone the product git repo
|
||||
|
||||
- name: Checkout product
|
||||
uses: https://gitea-actions-autobuild:${{ secrets.REPO_READ }}@src.opensuse.org/actions/github-actions-checkout@v4
|
||||
with:
|
||||
token: ${{ secrets.REPO_WRITE }}
|
||||
repo-sha256: true
|
||||
run: |
|
||||
test -n "${{ env.REPO_PATH }}" && rm -rfv "${{ env.REPO_PATH }}"/*
|
||||
git config --global --add safe.directory ${{ env.REPO_PATH }}
|
||||
git clone ${{ env.REPO_URL }} ${{ env.REPO_PATH }}
|
||||
|
||||
- name: Update all new _patchinfo files
|
||||
uses: https://gitea-actions-autobuild:${{ secrets.REPO_READ }}@src.opensuse.org/actions/patchinfo-numbering-action@v0
|
||||
- name: Get last commit author
|
||||
id: last-commit
|
||||
run: |
|
||||
echo "author=$(git log -1 --pretty='%an <%ae>')" >> $GITHUB_OUTPUT
|
||||
- name: Commit changes back
|
||||
uses: https://gitea-actions-autobuild:${{ secrets.REPO_READ }}@src.opensuse.org/actions/stefanzweifel-git-auto-commit-action@v5
|
||||
uses: https://src.opensuse.org/actions/patchinfo-numbering-action@v0
|
||||
with:
|
||||
prefix: packagehub-
|
||||
|
||||
- name: Commit changes
|
||||
uses: https://src.opensuse.org/actions/stefanzweifel-git-auto-commit-action@v5
|
||||
with:
|
||||
commit_user_name: gitea-actions-autobuild
|
||||
commit_user_email: autobuild+gitea@opensuse.org
|
||||
commit_author: ${{ steps.last-commit.outputs.author }}
|
||||
commit_message: "Update incident numbers [skip actions]"
|
||||
commit_author: Patchinfo incident numbering <gitea-actions-autobuild@noreply.src.opensuse.org>
|
||||
commit_message: "Update patchinfo incident numbers [skip actions]"
|
||||
commit_options: '--no-edit'
|
||||
skip_fetch: true
|
||||
|
||||
|
||||
13054
.gitmodules
vendored
13054
.gitmodules
vendored
File diff suppressed because it is too large
Load Diff
@@ -1,3 +1,174 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 11 08:48:51 UTC 2025 - Wolfgang Engel <wolfgang.engel@suse.com>
|
||||
|
||||
- Backports.productcompose:
|
||||
- switch to version 16.1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 10 07:19:41 UTC 2025 - Wolfgang Engel <wolfgang.engel@suse.com>
|
||||
|
||||
- Backports.productcompose:
|
||||
+ add to backports_unneeded, not needed
|
||||
micro patterns that are coming from SLES
|
||||
patterns-micro-alt_onlyDVD
|
||||
patterns-micro-cloud
|
||||
patterns-micro-defaults
|
||||
patterns-micro-fips
|
||||
patterns-micro-hardware
|
||||
patterns-micro-ima-evm
|
||||
patterns-micro-kvm_host
|
||||
patterns-micro-onlyDVD
|
||||
patterns-micro-ra-agent
|
||||
patterns-micro-ra-verifier
|
||||
patterns-micro-salt_minion
|
||||
patterns-micro-sssd-ldap
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 6 14:49:27 UTC 2025 - Wolfgang Engel <wolfgang.engel@suse.com>
|
||||
|
||||
- Backports.productcompose:
|
||||
+ add to backports_unneeded, remove more uninstallables
|
||||
aws-cli
|
||||
NetworkManager-branding-upstream
|
||||
sdbootutil-tukit
|
||||
toolbox-branding-SLE-16.0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 6 13:24:32 UTC 2025 - Wolfgang Engel <wolfgang.engel@suse.com>
|
||||
|
||||
- Backports.productcompose:
|
||||
+ add to backports_unneeded, cleanup more unneeded 32bit packages
|
||||
at-spi2-core-devel-32bit
|
||||
libcups2-32bit
|
||||
libcurl-devel-32bit
|
||||
libdns_sd-32bit
|
||||
libpcap-devel-32bit
|
||||
libraptor2-0-32bit
|
||||
libtss2-fapi1-32bit
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 2 15:07:44 UTC 2025 - Wolfgang Engel <wolfgang.engel@suse.com>
|
||||
|
||||
- Backports.productcompose:
|
||||
+ add to backports_unneeded since not needed patterns
|
||||
patterns-base-transactional_base
|
||||
patterns-micro-elemental_client
|
||||
patterns-sap-bone
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 26 16:48:57 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
- Backports.productcompose
|
||||
+ sync with current state of SLES-16.0 (GM)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 24 10:49:29 UTC 2025 - Wolfgang Engel <wolfgang.engel@suse.com>
|
||||
|
||||
- Backports.productcompose:
|
||||
+ add to backports_unneeded since busybox modules conflict with
|
||||
SLES system packages
|
||||
busybox-adduser
|
||||
busybox-attr
|
||||
busybox-bc
|
||||
busybox-bind-utils
|
||||
busybox-bzip2
|
||||
busybox-coreutils
|
||||
busybox-cpio
|
||||
busybox-diffutils
|
||||
busybox-dos2unix
|
||||
busybox-ed
|
||||
busybox-findutils
|
||||
busybox-gawk
|
||||
busybox-grep
|
||||
busybox-gzip
|
||||
busybox-hexedit
|
||||
busybox-hostname
|
||||
busybox-iproute2
|
||||
busybox-iputils
|
||||
busybox-kbd
|
||||
busybox-kmod
|
||||
busybox-less
|
||||
busybox-links
|
||||
busybox-man
|
||||
busybox-misc
|
||||
busybox-ncurses-utils
|
||||
busybox-net-tools
|
||||
busybox-netcat
|
||||
busybox-patch
|
||||
busybox-policycoreutils
|
||||
busybox-procps
|
||||
busybox-psmisc
|
||||
busybox-sed
|
||||
busybox-selinux-tools
|
||||
busybox-sendmail
|
||||
busybox-sh
|
||||
busybox-sha3sum
|
||||
busybox-sharutils
|
||||
busybox-syslogd
|
||||
busybox-sysvinit-tools
|
||||
busybox-tar
|
||||
busybox-telnet
|
||||
busybox-testsuite
|
||||
busybox-tftp
|
||||
busybox-time
|
||||
busybox-traceroute
|
||||
busybox-tunctl
|
||||
busybox-udhcpc
|
||||
busybox-unzip
|
||||
busybox-util-linux
|
||||
busybox-vi
|
||||
busybox-vlan
|
||||
busybox-wget
|
||||
busybox-which
|
||||
busybox-whois
|
||||
busybox-xz
|
||||
+ add to backports_unneeded since kernels are not allowed (bsc#1250340)
|
||||
kernel-azure-livepatch-devel
|
||||
kernel-default-livepatch-devel
|
||||
kernel-livepatch-6_12_0-160000_4-default
|
||||
kernel-livepatch-6_12_0-160000_5-default
|
||||
kernel-livepatch-6_12_0-160000_4-rt
|
||||
kernel-livepatch-6_12_0-160000_5-rt
|
||||
kernel-rt-livepatch
|
||||
kernel-rt-livepatch-devel
|
||||
patterns-base-kernel_livepatching
|
||||
+ add to backports_unneeded
|
||||
chrony-pool-openSUSE (conflicts with chrony-pool-suse from SLES)
|
||||
connman-nmcompat (conflicts with NetworkManager from SLES)
|
||||
debuginfod-dummy-client (conflicts with debuginfod-client from SLES)
|
||||
ecryptfs-utils (needs ecryptfs.ko, not provided)
|
||||
elemental (requires systemd-presets-branding-Elemental, not provided)
|
||||
geoipupdate-legacy (requires geolite2legacy, not provided)
|
||||
gio-branding-upstream (conflicts with gio-branding from SLES)
|
||||
libdebuginfod1-dummy (conflicts with libdebuginfod from SLES from SLES)
|
||||
libdebuginfod-dummy-devel (requires libdebuginfod1-dummy, not provided)
|
||||
MozillaFirefox-branding-upstream (conflicts with MozillaFirefox-branding-SLE from SLES)
|
||||
ntpd-rs (conflicts with chrony from SLES)
|
||||
ntpsec (conflicts with chrony from SLES)
|
||||
ntpsec-utils (needs ntpsec)
|
||||
plymouth-branding-upstream (conflicts with plymouth-branding-SLE from SLES)
|
||||
systemd-default-settings-branding-openSUSE (conflicts with systemd-default-settings-branding-SLE from SLES)
|
||||
systemd-default-settings-branding-SLE-Micro (conflicts with systemd-default-settings-branding-SLE from SLES)
|
||||
systemd-default-settings-branding-upstream (conflicts with systemd-default-settings-branding-SLE from SLES)
|
||||
systemd-presets-branding-ALP-transactional (conflicts with systemd-presets-branding-SLE from SLES)
|
||||
systemd-presets-branding-Elemental (conflicts with systemd-presets-branding-SLE from SLES)
|
||||
yum-utils (conflicts with zypper-needs-restarting from SLES)
|
||||
+ add to backports_unneeded since 32bit packages are not needed
|
||||
dbus-1-devel-32bit
|
||||
libatk-bridge-2_0-0-32bit
|
||||
libatspi0-32bit
|
||||
libavahi-client3-32bit
|
||||
libcurl4-32bit
|
||||
libdbus-glib-1-2-32bit
|
||||
libdc1394-26-32bit
|
||||
libgusb2-32bit
|
||||
libmanette-0_2-0-32bit
|
||||
libpcap1-32bit
|
||||
libpolkit-agent-1-0-32bit
|
||||
libpq5-32bit
|
||||
libusb-1_0-devel-32bit
|
||||
libwacom9-32bit
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 2 16:40:20 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
@@ -86,7 +257,7 @@ Thu Aug 21 12:23:55 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
Wed Aug 20 12:02:06 UTC 2025 - Adrian Schröter <adrian@suse.de>
|
||||
|
||||
- Backports.productcompose:
|
||||
+ prepare some settings for maintenance.
|
||||
+ prepare some settings for maintenance.
|
||||
but not enabling it yet
|
||||
|
||||
-------------------------------------------------------------------
|
||||
@@ -153,7 +324,7 @@ Mon Jul 28 18:16:57 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
- Backports.productcompose:
|
||||
+ add to backports_unneeded (bsc#1247203)
|
||||
ALP
|
||||
ALP-dummy-release
|
||||
ALP-dummy-release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 27 14:35:46 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
@@ -174,7 +345,7 @@ Fri Jul 4 08:06:42 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
- Backports.productcompose:
|
||||
+ add a bunch of "-mini" packages to the exclude list. These
|
||||
packages are only needed for building.
|
||||
packages are only needed for building.
|
||||
+ sync with current state of SLES-16.0 (pre-RC2)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
@@ -190,7 +361,7 @@ Fri May 30 08:11:48 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
- Backports.productcompose:
|
||||
+ fix the build again by excluding the following packages:
|
||||
libopenssl3-32bit
|
||||
libopenssl3-32bit
|
||||
libopenssl-3-devel-32bit
|
||||
libopenssl-3-fips-provider-32bit
|
||||
|
||||
@@ -198,29 +369,29 @@ Fri May 30 08:11:48 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
Thu May 29 12:55:41 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
- Backports.productcompose:
|
||||
+ sync with current state of SLES-16.0
|
||||
+ sync with current state of SLES-16.0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 7 08:21:19 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
- rename default.productcompose to Backports.productcompose
|
||||
(we can do this because we are not using pkglistgen, which
|
||||
hardcodes "default.productcompose")
|
||||
hardcodes "default.productcompose")
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 6 14:38:05 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
- default.productcompose:
|
||||
+ fix the x86_64 build again by adding a large number of foo-32bit
|
||||
packages to backports_unneeded_x86_64
|
||||
packages to backports_unneeded_x86_64
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 30 09:19:49 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
- supportstatus.txt
|
||||
+ drop this file because it is needed only when using pkglistgen
|
||||
+ drop this file because it is needed only when using pkglistgen
|
||||
- unneeded.yml
|
||||
+ drop this file because it is needed only when using pkglistgen
|
||||
+ drop this file because it is needed only when using pkglistgen
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 24 10:33:13 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
@@ -3,7 +3,7 @@ product_compose_schema: 0.2
|
||||
vendor: openSUSE
|
||||
name: Backports
|
||||
version: 16
|
||||
update: "16.0"
|
||||
update: "16.1"
|
||||
product-type: module
|
||||
summary: openSUSE Backports
|
||||
|
||||
@@ -14,7 +14,7 @@ scc:
|
||||
|
||||
build_options:
|
||||
### For maintenance, otherwise only "the best" version of each package is picked:
|
||||
# - take_all_available_versions
|
||||
- take_all_available_versions
|
||||
- hide_flavor_in_product_directory_name
|
||||
|
||||
### Since the Backports product build is not self-contained in a single repository,
|
||||
@@ -32,8 +32,8 @@ debug: split
|
||||
repodata: all
|
||||
|
||||
# has only an effect during maintenance:
|
||||
set_updateinfo_from: maint-coord@suse.de
|
||||
# set_updateinfo_id_prefix: openSUSE-Leap-16.0-
|
||||
set_updateinfo_from: maintenance@opensuse.org
|
||||
set_updateinfo_id_prefix: SUSE-PackageHub-16.0-
|
||||
|
||||
flavors:
|
||||
backports_aarch64:
|
||||
@@ -57,14 +57,78 @@ packagesets:
|
||||
packages:
|
||||
- ALP
|
||||
- ALP-dummy-release
|
||||
- MozillaFirefox-branding-upstream
|
||||
- NetworkManager-branding-upstream
|
||||
- at-spi2-core-devel-32bit
|
||||
- aws-cli
|
||||
- bash-legacybin
|
||||
- busybox-adduser
|
||||
- busybox-attr
|
||||
- busybox-bc
|
||||
- busybox-bind-utils
|
||||
- busybox-bzip2
|
||||
- busybox-coreutils
|
||||
- busybox-cpio
|
||||
- busybox-diffutils
|
||||
- busybox-dos2unix
|
||||
- busybox-ed
|
||||
- busybox-findutils
|
||||
- busybox-gawk
|
||||
- busybox-grep
|
||||
- busybox-gzip
|
||||
- busybox-hexedit
|
||||
- busybox-hostname
|
||||
- busybox-iproute2
|
||||
- busybox-iputils
|
||||
- busybox-kbd
|
||||
- busybox-kmod
|
||||
- busybox-less
|
||||
- busybox-links
|
||||
- busybox-man
|
||||
- busybox-misc
|
||||
- busybox-ncurses-utils
|
||||
- busybox-net-tools
|
||||
- busybox-netcat
|
||||
- busybox-patch
|
||||
- busybox-policycoreutils
|
||||
- busybox-procps
|
||||
- busybox-psmisc
|
||||
- busybox-sed
|
||||
- busybox-selinux-tools
|
||||
- busybox-sendmail
|
||||
- busybox-sh
|
||||
- busybox-sha3sum
|
||||
- busybox-sharutils
|
||||
- busybox-syslogd
|
||||
- busybox-sysvinit-tools
|
||||
- busybox-tar
|
||||
- busybox-telnet
|
||||
- busybox-testsuite
|
||||
- busybox-tftp
|
||||
- busybox-time
|
||||
- busybox-traceroute
|
||||
- busybox-tunctl
|
||||
- busybox-udhcpc
|
||||
- busybox-unzip
|
||||
- busybox-util-linux
|
||||
- busybox-vi
|
||||
- busybox-vlan
|
||||
- busybox-wget
|
||||
- busybox-which
|
||||
- busybox-whois
|
||||
- busybox-xz
|
||||
- ceph-mgr-diskprediction-local
|
||||
- chrony-pool-openSUSE
|
||||
- cluster-md-kmp-azure
|
||||
- cluster-md-kmp-rt
|
||||
- connman-nmcompat
|
||||
- cmake-mini
|
||||
- dbus-1-devel-32bit
|
||||
- debuginfod-dummy-client
|
||||
- dlm-kmp-azure
|
||||
- dlm-kmp-rt
|
||||
- ecryptfs-utils
|
||||
- elemental
|
||||
- envsubst-mini
|
||||
- ffmpeg-7-mini-libs
|
||||
- gettext-runtime-mini
|
||||
@@ -73,39 +137,90 @@ packagesets:
|
||||
- gfs2-kmp-rt
|
||||
- ghostscript-mini
|
||||
- ghostscript-mini-devel
|
||||
- geoipupdate-legacy
|
||||
- geolite2legacy
|
||||
- gio-branding-upstream
|
||||
- grpc-source
|
||||
- kernel-azure-livepatch-devel
|
||||
- kernel-default-livepatch-devel
|
||||
- kernel-livepatch-6_12_0-160000_4-default
|
||||
- kernel-livepatch-6_12_0-160000_4-rt
|
||||
- kernel-livepatch-6_12_0-160000_5-default
|
||||
- kernel-livepatch-6_12_0-160000_5-rt
|
||||
- kernel-rt-livepatch
|
||||
- kernel-rt-livepatch-devel
|
||||
- krb5-mini
|
||||
- krb5-mini-devel
|
||||
- kselftests-kmp-azure
|
||||
- kselftests-kmp-default
|
||||
- kselftests-kmp-rt
|
||||
- leancrypto-kmp-default
|
||||
# - libcups2-32bit
|
||||
- libatk-bridge-2_0-0-32bit
|
||||
- libatspi0-32bit
|
||||
- libavahi-client3-32bit
|
||||
- libcups2-32bit
|
||||
- libcurl-mini4
|
||||
- libcurl4-32bit
|
||||
- libcurl-devel-32bit
|
||||
- libdbus-1-3-32bit
|
||||
- libdbus-glib-1-2-32bit
|
||||
- libdc1394-26-32bit
|
||||
- libdns_sd-32bit
|
||||
- libdebuginfod-dummy-devel
|
||||
- libdebuginfod1-dummy
|
||||
- libdvbv5-0-32bit
|
||||
- libgudev-1_0-0-32bit
|
||||
- libgusb2-32bit
|
||||
- libinput10-32bit
|
||||
- liblirc_driver0-32bit
|
||||
- libmanette-0_2-0-32bit
|
||||
- libpcap1-32bit
|
||||
- libpcap-devel-32bit
|
||||
- libpolkit-agent-1-0-32bit
|
||||
- libpolkit-gobject-1-0-32bit
|
||||
- libpq5-32bit
|
||||
- libpxbackend-1_0-mini
|
||||
- libraptor2-0-32bit
|
||||
- libressl
|
||||
- libressl-devel
|
||||
- libressl-devel-doc
|
||||
# - libsybdb5-32bit
|
||||
- libsystemd0-mini
|
||||
# - libtdsodbc0-32bit
|
||||
- libtss2-fapi1-32bit
|
||||
- libudev-mini1
|
||||
- libunbound-devel-mini
|
||||
- libusb-1_0-0-32bit
|
||||
- libusb-1_0-devel-32bit
|
||||
- libwacom9-32bit
|
||||
# - libzip5-32bit
|
||||
- ntpd-rs
|
||||
- ntpsec
|
||||
- ntpsec-utils
|
||||
- ocfs2-kmp-azure
|
||||
- ocfs2-kmp-default
|
||||
- ocfs2-kmp-rt
|
||||
- openssl_tpm2
|
||||
- pam-extra-32bit
|
||||
- patterns-base-kernel_livepatching
|
||||
- patterns-base-transactional_base
|
||||
- patterns-micro-alt_onlyDVD
|
||||
- patterns-micro-cloud
|
||||
- patterns-micro-defaults
|
||||
- patterns-micro-elemental_client
|
||||
- patterns-micro-defaults
|
||||
- patterns-micro-fips
|
||||
- patterns-micro-hardware
|
||||
- patterns-micro-ima-evm
|
||||
- patterns-micro-kvm_host
|
||||
- patterns-micro-onlyDVD
|
||||
- patterns-micro-ra-agent
|
||||
- patterns-micro-ra-verifier
|
||||
- patterns-micro-salt_minion
|
||||
- patterns-micro-sssd-ldap
|
||||
- patterns-sap-bone
|
||||
- patterns-base-update_test
|
||||
- plymouth-branding-upstream
|
||||
- postgresql17-devel-mini
|
||||
- protobuf21-source
|
||||
- reproducible-faketools
|
||||
@@ -131,12 +246,19 @@ packagesets:
|
||||
- reproducible-faketools-tar
|
||||
- reproducible-faketools-verbose
|
||||
- reproducible-faketools-zip
|
||||
- sdbootutil-tukit
|
||||
- sddm-branding-openSUSE
|
||||
- sddm-qt6-branding-openSUSE
|
||||
- systemd-default-settings-branding-openSUSE
|
||||
- systemd-default-settings-branding-SLE-Micro
|
||||
- systemd-default-settings-branding-upstream
|
||||
- systemd-presets-branding-ALP-transactional
|
||||
- systemd-presets-branding-Elemental
|
||||
- systemd-mini
|
||||
- systemd-mini-container
|
||||
- systemd-mini-devel
|
||||
- this-is-only-for-build-envs
|
||||
- toolbox-branding-SLE-16.0
|
||||
- udev-mini
|
||||
- update-test-32bit-pkg
|
||||
- update-test-affects-package-manager
|
||||
@@ -149,6 +271,7 @@ packagesets:
|
||||
- update-test-retracted
|
||||
- update-test-security
|
||||
- update-test-trivial
|
||||
- yum-utils
|
||||
|
||||
# TODO: unneeded Leap package per architecture
|
||||
- name: backports_unneeded_aarch64
|
||||
@@ -1263,17 +1386,14 @@ packagesets:
|
||||
- go-doc
|
||||
- go-md2man
|
||||
- go-race
|
||||
- go1.23
|
||||
- go1.23-doc
|
||||
- go1.23-openssl
|
||||
- go1.23-openssl-doc
|
||||
- go1.23-openssl-race
|
||||
- go1.23-race
|
||||
- go1.24
|
||||
- go1.24-doc
|
||||
- go1.24-openssl
|
||||
- go1.24-openssl-race
|
||||
- go1.24-race
|
||||
- go1.25
|
||||
- go1.25-doc
|
||||
- go1.25-race
|
||||
- gobject-introspection
|
||||
- gobject-introspection-devel
|
||||
- golang-github-cpuguy83-go-md2man
|
||||
@@ -1688,11 +1808,13 @@ packagesets:
|
||||
- ibus-gtk3
|
||||
- ibus-gtk4
|
||||
- ibus-hangul
|
||||
- ibus-kkc
|
||||
- ibus-lang
|
||||
- ibus-libpinyin
|
||||
- ibus-libzhuyin
|
||||
- ibus-m17n
|
||||
- ibus-rime
|
||||
- ibus-skk
|
||||
- ibus-table
|
||||
- ibus-table-chinese-array
|
||||
- ibus-table-chinese-cangjie
|
||||
@@ -1708,6 +1830,7 @@ packagesets:
|
||||
- ibus-table-chinese-wubi-jidian
|
||||
- ibus-table-chinese-yong
|
||||
- ibus-table-extraphrase
|
||||
- ibus-unikey
|
||||
- ibutils
|
||||
- icu
|
||||
- icu4j
|
||||
@@ -1831,6 +1954,7 @@ packagesets:
|
||||
- jdom-javadoc
|
||||
- jdom2
|
||||
- jdom2-javadoc
|
||||
- jdupes
|
||||
- jeos-firstboot
|
||||
- jetbrains-annotations
|
||||
- jetbrains-annotations-javadoc
|
||||
@@ -1991,6 +2115,7 @@ packagesets:
|
||||
- kiwi-systemdeps-image-validation
|
||||
- kiwi-systemdeps-iso-media
|
||||
- kiwi-templates-Minimal
|
||||
- kkc-data
|
||||
- kmod
|
||||
- kpartx
|
||||
- krb5
|
||||
@@ -2571,6 +2696,7 @@ packagesets:
|
||||
- libcupsimage2
|
||||
- libcurl-devel
|
||||
- libcurl-devel-doc
|
||||
- libcurl-mini4
|
||||
- libcurl4
|
||||
- libdaemon-devel
|
||||
- libdaemon0
|
||||
@@ -3052,6 +3178,7 @@ packagesets:
|
||||
- libjcat1
|
||||
- libjemalloc2
|
||||
- libjitterentropy3
|
||||
- libjodycode3
|
||||
- libjpeg-turbo
|
||||
- libjpeg62
|
||||
- libjpeg62-devel
|
||||
@@ -3102,6 +3229,7 @@ packagesets:
|
||||
- libkeymap1
|
||||
- libkeyutils1
|
||||
- libkfont0
|
||||
- libkkc2
|
||||
- libkmip-devel
|
||||
- libkmip-tools
|
||||
- libkmip0
|
||||
@@ -3142,9 +3270,8 @@ packagesets:
|
||||
- liblcms2-2
|
||||
- liblcms2-devel
|
||||
- liblcms2-doc
|
||||
- libldap-2_5-0
|
||||
- libldap-2
|
||||
- libldap-data
|
||||
- libldap2
|
||||
- libldapcpp-devel
|
||||
- libldapcpp0
|
||||
- libldb-devel
|
||||
@@ -3250,6 +3377,7 @@ packagesets:
|
||||
- libmpfr6
|
||||
- libmpg123-0
|
||||
- libmplex2-2_2-0
|
||||
- libmsgpack-c2
|
||||
- libmsgraph1-1
|
||||
- libmspack-devel
|
||||
- libmspack0
|
||||
@@ -3589,6 +3717,7 @@ packagesets:
|
||||
- libsigc++3-devel
|
||||
- libsigc-2_0-0
|
||||
- libsigc-3_0-0
|
||||
- libskk0
|
||||
- libslang2
|
||||
- libslirp-devel
|
||||
- libslirp0
|
||||
@@ -4033,6 +4162,7 @@ packagesets:
|
||||
- libzypp-devel
|
||||
- libzypp-devel-doc
|
||||
- libzypp-plugin-appdata
|
||||
- lifecycle-data-sle
|
||||
- lilv
|
||||
- linux-atm
|
||||
- linux-atm-devel
|
||||
@@ -4563,13 +4693,9 @@ packagesets:
|
||||
- openjpeg2
|
||||
- openjpeg2-devel
|
||||
- openjpeg2-devel-doc
|
||||
- openldap2-client
|
||||
- openldap2-devel
|
||||
- openldap2-devel-static
|
||||
- openldap2-doc
|
||||
- openldap2_5-client
|
||||
- openldap2_5-devel
|
||||
- openldap2_5-doc
|
||||
- openldap2_6-client
|
||||
- openldap2_6-devel
|
||||
- openldap2_6-doc
|
||||
- openmpi4
|
||||
- openmpi4-config
|
||||
- openmpi4-devel
|
||||
@@ -5114,6 +5240,7 @@ packagesets:
|
||||
- permissions-zypp-plugin
|
||||
- pesign-obs-integration
|
||||
- pgvector-devel
|
||||
- php-composer2
|
||||
- php8
|
||||
- php8-bcmath
|
||||
- php8-bz2
|
||||
@@ -6716,6 +6843,7 @@ packagesets:
|
||||
- samba-tool
|
||||
- samba-winbind
|
||||
- samba-winbind-libs
|
||||
- sap-convergent-resource-agents
|
||||
- sap-suse-cluster-connector
|
||||
- sapcontrol-bash-completion
|
||||
- saphana-checks
|
||||
@@ -6736,6 +6864,7 @@ packagesets:
|
||||
- sca-patterns-sle12
|
||||
- sca-patterns-sle15
|
||||
- sca-server-report
|
||||
- scap-security-guide
|
||||
- sccache
|
||||
- schily-ctags
|
||||
- schily-mt
|
||||
@@ -6786,6 +6915,8 @@ packagesets:
|
||||
- sisu-mojos
|
||||
- sisu-mojos-javadoc
|
||||
- sisu-plexus
|
||||
- skkdic
|
||||
- skkdic-extra
|
||||
- skopeo
|
||||
- skopeo-bash-completion
|
||||
- skopeo-fish-completion
|
||||
@@ -7621,8 +7752,8 @@ packagesets:
|
||||
- fwts
|
||||
- fwupd-efi
|
||||
- gfs2-kmp-64kb
|
||||
- go1.23-libstd
|
||||
- go1.24-libstd
|
||||
- go1.25-libstd
|
||||
- google-cloud-sap-agent
|
||||
- google-dracut-config
|
||||
- google-guest-agent
|
||||
@@ -7762,7 +7893,6 @@ packagesets:
|
||||
- shim
|
||||
- supportutils-plugin-suse-public-cloud
|
||||
- system-group-ne
|
||||
- systemd-boot
|
||||
- tftpboot-agama-installer-SUSE_SLE_16-aarch64
|
||||
- u-boot-rpi3
|
||||
- u-boot-rpi3-doc
|
||||
@@ -7798,7 +7928,7 @@ packagesets:
|
||||
- kernel-default-livepatch
|
||||
- kernel-kvmsmall
|
||||
- kernel-kvmsmall-devel
|
||||
- kernel-livepatch-6_12_0-160000_20-default
|
||||
- kernel-livepatch-6_12_0-160000_5-default
|
||||
- libLLVMSPIRVLib19
|
||||
- libatopology2
|
||||
- libdpdk-25
|
||||
@@ -7909,7 +8039,7 @@ packagesets:
|
||||
- dnsdist
|
||||
- grub2-s390x-emu
|
||||
- kernel-default-livepatch
|
||||
- kernel-livepatch-6_12_0-160000_20-default
|
||||
- kernel-livepatch-6_12_0-160000_5-default
|
||||
- kernel-zfcpdump
|
||||
- kiwi-settings
|
||||
- libHBAAPI2
|
||||
@@ -7930,8 +8060,6 @@ packagesets:
|
||||
- luajit
|
||||
- luajit-devel
|
||||
- openssl-ibmca
|
||||
- openssl-ibmca-engine
|
||||
- openssl-ibmca-provider
|
||||
- orarun
|
||||
- osasnmpd
|
||||
- pam-doc
|
||||
@@ -7985,7 +8113,6 @@ packagesets:
|
||||
- cloud-regionsrv-client-plugin-azure
|
||||
- cloud-regionsrv-client-plugin-ec2
|
||||
- cloud-regionsrv-client-plugin-gce
|
||||
- containerized-data-importer-manifests
|
||||
- crash-gcore
|
||||
- disk-encryption-tool
|
||||
- dmidecode
|
||||
@@ -8014,8 +8141,8 @@ packagesets:
|
||||
- gfxboot-devel
|
||||
- glibc-livepatches
|
||||
- gmmlib-devel
|
||||
- go1.23-libstd
|
||||
- go1.24-libstd
|
||||
- go1.25-libstd
|
||||
- google-cloud-sap-agent
|
||||
- google-dracut-config
|
||||
- google-guest-agent
|
||||
@@ -8051,9 +8178,8 @@ packagesets:
|
||||
- kernel-kvmsmall
|
||||
- kernel-kvmsmall-devel
|
||||
- kernel-kvmsmall-vdso
|
||||
- kernel-livepatch-6_12_0-160000_20-default
|
||||
- kernel-livepatch-6_12_0-160000_5-default
|
||||
- kiwi-pxeboot
|
||||
- kubevirt-manifests
|
||||
- kubevirt-virtctl
|
||||
- libFLAC++10-x86-64-v3
|
||||
- libFLAC12-x86-64-v3
|
||||
@@ -8322,7 +8448,6 @@ packagesets:
|
||||
- sysctl-logger
|
||||
- syslinux
|
||||
- system-group-ne
|
||||
- systemd-boot
|
||||
- systemd-presets-branding-SLE-SAP
|
||||
- tboot
|
||||
- tftpboot-agama-installer-SUSE_SLE_16-x86_64
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
|
||||
## [openSUSE:Backports:SLE-16.0](https://build.opensuse.org/project/show/openSUSE:Backports:SLE-16.0)
|
||||
|
||||
Adding packages from Factory pool:
|
||||
|
||||
# git submodule add ../../pool/FreeCAD FreeCAD
|
||||
|
||||
19
_config
19
_config
@@ -1,4 +1,8 @@
|
||||
Release: <CI_CNT>.<B_CNT> spec:bp160.<CI_CNT>.<B_CNT>
|
||||
%if 0%{?is_stage_project}
|
||||
Release: <CI_CNT>.<B_CNT> spec:bp161.999999.<CI_CNT>.<B_CNT>
|
||||
%else
|
||||
Release: <CI_CNT>.<B_CNT> spec:bp161.<CI_CNT>.<B_CNT>
|
||||
%endif
|
||||
|
||||
# 000productcompose experiment
|
||||
%if "%_repository" == "product"
|
||||
@@ -125,15 +129,6 @@ Macros:
|
||||
%ffmpeg_pref ffmpeg-7
|
||||
:Macros
|
||||
|
||||
# BEGIN GIMP STUFF - remove this section when gimp3 is ready
|
||||
# %if "%_project" == "openSUSE:Backports:SLE-16.0"
|
||||
# Macros:
|
||||
# Do not build python plugin in gimp2
|
||||
# %_without_python_plugin 1
|
||||
# :Macros
|
||||
# %endif
|
||||
# END GIMP STUFF
|
||||
|
||||
# openSUSE -> SLE magic BuildRequires can work then
|
||||
Substitute: desktop-data-openSUSE-extra desktop-data-SLE-extra
|
||||
Substitute: desktop-data-openSUSE desktop-data-SLE
|
||||
@@ -143,7 +138,7 @@ Substitute: wallpaper-branding-openSUSE wallpaper-branding-SLE
|
||||
%define is_opensuse 1
|
||||
%define is_backports 1
|
||||
|
||||
%if "%_project" == "openSUSE:Backports:SLE-16.0" || "%_project" == "openSUSE:Backports:SLE-16.0:git"
|
||||
%if 0%{?_is_in_project}
|
||||
Macros:
|
||||
%vendor openSUSE
|
||||
%distribution SUSE Linux Enterprise 16
|
||||
@@ -164,7 +159,7 @@ Macros:
|
||||
|
||||
# Leap specific package list, the same list with excludebuild must add to Backports project
|
||||
# Most of package should be built in Backports
|
||||
%if "%_project" == "openSUSE:Backports:SLE-16.0" || "%_project" == "openSUSE:Backports:SLE-16.0:git"
|
||||
%if "%_project" == "openSUSE:Backports:SLE-16.1"
|
||||
# we build ffado:ffado-mixer for openSUSE, the main one is built in SLFO
|
||||
BuildFlags: excludebuild:ffado
|
||||
# build gpgme:qt flavor for qt5 support
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
{
|
||||
"": ["bigironman", "maxlin_factory", "lkocman-factory", "smithfarm"]
|
||||
"": ["packagehub-review"]
|
||||
}
|
||||
|
||||
2
chromium
2
chromium
Submodule chromium updated: 2e70429051...02e67c4e70
2
fcitx5
2
fcitx5
Submodule fcitx5 updated: 3a742f2f96...5ca142210a
2
helmfile
2
helmfile
Submodule helmfile updated: ca876b9c92...7062864cc8
2
lutris
2
lutris
Submodule lutris updated: ed0d79ecd4...937dc36983
2
melange
2
melange
Submodule melange updated: 32c0112588...4ca0d8a776
2
openQA
2
openQA
Submodule openQA updated: f86f242535...04be1d7de7
2
opi
2
opi
Submodule opi updated: 8e0625ef06...13283891b5
Submodule os-autoinst updated: 92aa0b8f1c...6e58455385
@@ -1,4 +1,4 @@
|
||||
{
|
||||
"ObsProject": "openSUSE:Backports:SLE-16.0",
|
||||
"StagingProject": "openSUSE:Backports:SLE-16.0:PullRequest"
|
||||
"ObsProject": "openSUSE:Backports:SLE-16.1",
|
||||
"StagingProject": "openSUSE:Backports:SLE-16.1:PullRequest"
|
||||
}
|
||||
|
||||
2
tor
2
tor
Submodule tor updated: 9aff832504...6933c71419
2
virtme
2
virtme
Submodule virtme updated: e68023567f...547b3766fe
Submodule warewulf4 updated: 3117857577...ace4d55695
@@ -1,25 +1,23 @@
|
||||
{
|
||||
"Workflows": ["pr"],
|
||||
"GitProjectName": "products/PackageHub#leap-16.0",
|
||||
"Organization": "pool",
|
||||
"Branch": "leap-16.0",
|
||||
"ManualMergeProject": true,
|
||||
"Reviewers": [ "+legaldb", "-autogits_obs_staging_bot" ],
|
||||
"ReviewGroups": [
|
||||
{
|
||||
"Name": "autobuild",
|
||||
"Reviewers": [
|
||||
"atartamo",
|
||||
"dmach",
|
||||
"eroca",
|
||||
"jdsn",
|
||||
"mstrigl",
|
||||
"darix",
|
||||
"smithfarm",
|
||||
"oertel",
|
||||
"bigironman"
|
||||
]
|
||||
}
|
||||
]
|
||||
"Workflows": ["pr"],
|
||||
"GitProjectName": "products/PackageHub#leap-16.1",
|
||||
"Organization": "pool",
|
||||
"Branch": "leap-16.1",
|
||||
"ManualMergeProject": true,
|
||||
"Reviewers": [
|
||||
"*packagehub-review",
|
||||
"+legaldb",
|
||||
"-autogits_obs_staging_bot",
|
||||
],
|
||||
"ReviewGroups": [
|
||||
{
|
||||
"Name": "packagehub-review",
|
||||
"Reviewers": [
|
||||
"bigironman",
|
||||
"lkocman-factory",
|
||||
"maxlin_factory",
|
||||
"smithfarm"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user