Compare commits
126 Commits
PR_product
...
PR_pattern
Author | SHA256 | Date | |
---|---|---|---|
|
559c07423c | ||
|
6fc811a4d6 | ||
|
4270743a61 | ||
|
c582f6af92 | ||
|
78fc4f16a2 | ||
185263bf0d | |||
|
40c6fe75fd | ||
b2fec7e16c | |||
|
bc626731fc | ||
|
21495d11e4 | ||
83f750b547 | |||
|
4811a95202 | ||
|
14f89da24c | ||
0460196869 | |||
|
a33c16be88 | ||
|
8ec63734bc | ||
|
2e4378f951 | ||
|
9b933a47a2 | ||
|
e975ac924e | ||
|
98be45844f | ||
|
f794b57621 | ||
16befe4b70 | |||
|
af5d108b86
|
||
a1098a15ca | |||
1ca82292dd | |||
|
04db9ab468 | ||
|
bbe5526e53 | ||
a64dd41200 | |||
b54eeab4df | |||
|
71fcbdf019 | ||
9bf55a4c44 | |||
26403ef1f1 | |||
129235e54e | |||
5cf8548955 | |||
ee6f25e7f3 | |||
db14bd8abf | |||
1e94c7328c | |||
cdbe1d93de | |||
|
129a5b9d2a | ||
b3c517d477 | |||
|
6f4c242072 | ||
4a6c95d420 | |||
68b8b70088 | |||
|
dab9d1e54a | ||
|
2da62ab361 | ||
|
e8896156c9 | ||
b766d2e5bb | |||
|
d310f135fd
|
||
|
16e5250054 | ||
32d8a74ed6 | |||
|
7397aa50d7
|
||
|
793efc39aa | ||
|
61950bb0c3 | ||
|
c6de81b632 | ||
|
c90d4e1a55 | ||
4fd46c8021 | |||
806d1c9f09 | |||
|
1bb715adf9
|
||
|
30678012c9
|
||
bc4cab5c50 | |||
01c03c7707 | |||
c9d7f41d9e | |||
|
6c9af3202a | ||
22cda61b86 | |||
|
d377d8ed3d | ||
|
ee0d5a3bce | ||
da5eeb372f | |||
b57b3a0a66 | |||
|
44b26f3ed5
|
||
|
2fbc9cc4db
|
||
|
342b4e261c | ||
|
ee48db1154
|
||
be57857589 | |||
|
48f325441b | ||
|
5dbc9316cf
|
||
087ab68ba2 | |||
1074d69b71 | |||
b7addb8613 | |||
|
e87c35ae57
|
||
e3a0521e53 | |||
|
a2593a8867 | ||
|
3f8a53988c
|
||
|
97987f4c34 | ||
|
194d78f719 | ||
|
4658733d03 | ||
e25fd95998 | |||
b6369a0076 | |||
|
d1c5320573 | ||
|
99eb641c4d | ||
|
fcdd26f13a | ||
|
d8da6a1851 | ||
cfb07f3599 | |||
|
b77bd00d94 | ||
4e5bee00ea | |||
b622048ea7 | |||
ac2c98307a | |||
|
14784deb79
|
||
99b776cb34 | |||
|
79353f98e1 | ||
f6183783cf | |||
|
cc913701f7 | ||
bb19a642aa | |||
25c1d6ef74 | |||
ce767c040f | |||
73e7a3375a | |||
8e71570eac | |||
48fb360472 | |||
c515b2e6fb | |||
03c5cabe92 | |||
|
d1cb67c7c6 | ||
e6de3b2893 | |||
|
6612539bb0 | ||
1c8125be26 | |||
e689842fed | |||
def48d2a41 | |||
f36f1af668 | |||
7f151562a5 | |||
|
fcc7d93648 | ||
578990e73f | |||
9c8b3b9b22 | |||
e13c876b30 | |||
444ca773de | |||
d63fb799e9 | |||
273d82ea5a | |||
1380c7fb56 | |||
280d8d0bcf |
37
.gitea/workflows/patchinfo_numberator.yaml
Normal file
37
.gitea/workflows/patchinfo_numberator.yaml
Normal file
@@ -0,0 +1,37 @@
|
||||
# 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]
|
||||
|
||||
jobs:
|
||||
use-go-action:
|
||||
runs-on: tumbleweed
|
||||
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
|
||||
|
||||
- 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
|
||||
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_options: '--no-edit'
|
||||
skip_fetch: true
|
||||
|
6550
.gitmodules
vendored
6550
.gitmodules
vendored
File diff suppressed because it is too large
Load Diff
@@ -1,3 +1,126 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 26 11:10:18 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
- Backports.productcompose:
|
||||
+ add to backports_unneeded (all are uninstallable and also blocked in Leap
|
||||
16.0):
|
||||
reproducible-faketools
|
||||
reproducible-faketools-ant
|
||||
reproducible-faketools-ar
|
||||
reproducible-faketools-aslr
|
||||
reproducible-faketools-date
|
||||
reproducible-faketools-dettrace
|
||||
reproducible-faketools-faketime
|
||||
reproducible-faketools-filesys
|
||||
reproducible-faketools-find
|
||||
reproducible-faketools-future
|
||||
reproducible-faketools-future1y
|
||||
reproducible-faketools-futurepost
|
||||
reproducible-faketools-hostname
|
||||
reproducible-faketools-j1
|
||||
reproducible-faketools-jar
|
||||
reproducible-faketools-pid
|
||||
reproducible-faketools-random
|
||||
reproducible-faketools-rpmbuild
|
||||
reproducible-faketools-strace
|
||||
reproducible-faketools-strip-nondeterminism
|
||||
reproducible-faketools-tar
|
||||
reproducible-faketools-verbose
|
||||
reproducible-faketools-zip
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 25 10:46:54 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
- Backports.productcompose:
|
||||
+ exclude geolite2legacy because it would bring in python-ipaddr
|
||||
which was dropped from Factory in March 2025 (bsc#1248503)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 22 16:38:02 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
- Backports.productcompose:
|
||||
+ exclude ceph-mgr-diskprediction-local because it would bring in
|
||||
python-scikit-learn with a huge dependency tree (bsc#1248509)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 21 13:04:20 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
- Backports.productcompose:
|
||||
+ exclude packages that should not be installed:
|
||||
bash-legacybin
|
||||
busybox-which (bsc#1248237)
|
||||
this-is-only-for-build-envs
|
||||
sddm-branding-openSUSE (bsc#1248488)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 21 12:23:55 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
- Backports.productcompose:
|
||||
+ reinstate previously excluded packages (bsc#1248444):
|
||||
libcups2-32bit
|
||||
libsybdb5-32bit
|
||||
libtdsodbc0-32bit
|
||||
libzip5-32bit
|
||||
libgnutls30-32bit
|
||||
libgnutls-devel-32bit
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 20 12:02:06 UTC 2025 - Adrian Schröter <adrian@suse.de>
|
||||
|
||||
- Backports.productcompose:
|
||||
+ prepare some settings for maintenance.
|
||||
but not enabling it yet
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 19 10:41:28 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
- Backports.productcompose
|
||||
+ add uninstallables to backports_unneeded
|
||||
grpc-source
|
||||
libcups2-32bit
|
||||
libdbus-1-3-32bit
|
||||
libdvbv5-0-32bit
|
||||
libgudev-1_0-0-32bit
|
||||
libinput10-32bit
|
||||
liblirc_driver0-32bit
|
||||
libpolkit-gobject-1-0-32bit
|
||||
libsybdb5-32bit
|
||||
libtdsodbc0-32bit
|
||||
libusb-1_0-0-32bit
|
||||
libzip5-32bit
|
||||
pam-extra-32bit
|
||||
protobuf21-source
|
||||
sddm-qt6-branding-openSUSE
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 18 11:21:14 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
- Backports.productcompose
|
||||
+ sync with current state of SLES-16.0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 18 10:27:26 UTC 2025 - Wolfgang Engel <wolfgang.engel@suse.com>
|
||||
|
||||
- Backports.productcompose
|
||||
* add to backports_unneeded (bsc#1248123)
|
||||
cluster-md-kmp-azure
|
||||
cluster-md-kmp-rt
|
||||
dlm-kmp-azure
|
||||
dlm-kmp-rt
|
||||
gfs2-kmp-azure
|
||||
gfs2-kmp-rt
|
||||
kselftests-kmp-azure
|
||||
kselftests-kmp-default
|
||||
kselftests-kmp-rt
|
||||
leancrypto-kmp-default
|
||||
libressl
|
||||
libressl-devel
|
||||
libressl-devel-doc
|
||||
ocfs2-kmp-azure
|
||||
ocfs2-kmp-default
|
||||
ocfs2-kmp-rt
|
||||
openssl_tpm2_engine
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 31 12:38:03 UTC 2025 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
|
@@ -3,6 +3,7 @@ product_compose_schema: 0.2
|
||||
vendor: openSUSE
|
||||
name: Backports
|
||||
version: 16
|
||||
update: "16.0"
|
||||
product-type: module
|
||||
summary: openSUSE Backports
|
||||
|
||||
@@ -32,6 +33,7 @@ repodata: all
|
||||
|
||||
# has only an effect during maintenance:
|
||||
set_updateinfo_from: maint-coord@suse.de
|
||||
# set_updateinfo_id_prefix: openSUSE-Leap-16.0-
|
||||
|
||||
flavors:
|
||||
backports_aarch64:
|
||||
@@ -55,24 +57,85 @@ packagesets:
|
||||
packages:
|
||||
- ALP
|
||||
- ALP-dummy-release
|
||||
- bash-legacybin
|
||||
- busybox-which
|
||||
- ceph-mgr-diskprediction-local
|
||||
- cluster-md-kmp-azure
|
||||
- cluster-md-kmp-rt
|
||||
- cmake-mini
|
||||
- dlm-kmp-azure
|
||||
- dlm-kmp-rt
|
||||
- envsubst-mini
|
||||
- ffmpeg-7-mini-libs
|
||||
- gettext-runtime-mini
|
||||
- gettext-tools-mini
|
||||
- gfs2-kmp-azure
|
||||
- gfs2-kmp-rt
|
||||
- ghostscript-mini
|
||||
- ghostscript-mini-devel
|
||||
- geolite2legacy
|
||||
- grpc-source
|
||||
- krb5-mini
|
||||
- krb5-mini-devel
|
||||
- kselftests-kmp-azure
|
||||
- kselftests-kmp-default
|
||||
- kselftests-kmp-rt
|
||||
- leancrypto-kmp-default
|
||||
# - libcups2-32bit
|
||||
- libcurl-mini4
|
||||
- libdbus-1-3-32bit
|
||||
- libdvbv5-0-32bit
|
||||
- libgudev-1_0-0-32bit
|
||||
- libinput10-32bit
|
||||
- liblirc_driver0-32bit
|
||||
- libpolkit-gobject-1-0-32bit
|
||||
- libpxbackend-1_0-mini
|
||||
- libressl
|
||||
- libressl-devel
|
||||
- libressl-devel-doc
|
||||
# - libsybdb5-32bit
|
||||
- libsystemd0-mini
|
||||
# - libtdsodbc0-32bit
|
||||
- libudev-mini1
|
||||
- libunbound-devel-mini
|
||||
- libusb-1_0-0-32bit
|
||||
# - libzip5-32bit
|
||||
- ocfs2-kmp-azure
|
||||
- ocfs2-kmp-default
|
||||
- ocfs2-kmp-rt
|
||||
- openssl_tpm2
|
||||
- pam-extra-32bit
|
||||
- postgresql17-devel-mini
|
||||
- protobuf21-source
|
||||
- reproducible-faketools
|
||||
- reproducible-faketools-ant
|
||||
- reproducible-faketools-ar
|
||||
- reproducible-faketools-aslr
|
||||
- reproducible-faketools-date
|
||||
- reproducible-faketools-dettrace
|
||||
- reproducible-faketools-faketime
|
||||
- reproducible-faketools-filesys
|
||||
- reproducible-faketools-find
|
||||
- reproducible-faketools-future
|
||||
- reproducible-faketools-future1y
|
||||
- reproducible-faketools-futurepost
|
||||
- reproducible-faketools-hostname
|
||||
- reproducible-faketools-j1
|
||||
- reproducible-faketools-jar
|
||||
- reproducible-faketools-pid
|
||||
- reproducible-faketools-random
|
||||
- reproducible-faketools-rpmbuild
|
||||
- reproducible-faketools-strace
|
||||
- reproducible-faketools-strip-nondeterminism
|
||||
- reproducible-faketools-tar
|
||||
- reproducible-faketools-verbose
|
||||
- reproducible-faketools-zip
|
||||
- sddm-branding-openSUSE
|
||||
- sddm-qt6-branding-openSUSE
|
||||
- systemd-mini
|
||||
- systemd-mini-container
|
||||
- systemd-mini-devel
|
||||
- this-is-only-for-build-envs
|
||||
- udev-mini
|
||||
|
||||
# TODO: unneeded Leap package per architecture
|
||||
@@ -93,8 +156,8 @@ packagesets:
|
||||
|
||||
- name: backports_unneeded_x86_64
|
||||
packages:
|
||||
- libgnutls30-32bit
|
||||
- libgnutls-devel-32bit
|
||||
# - libgnutls30-32bit
|
||||
# - libgnutls-devel-32bit
|
||||
|
||||
# TODO: unneeded SLES package on all architectures
|
||||
- name: sles_unneeded
|
||||
@@ -181,11 +244,6 @@ packagesets:
|
||||
- adcli
|
||||
- adcli-doc
|
||||
- adobe-sourcecodepro-fonts
|
||||
- adobe-sourcehansans-cn-fonts
|
||||
- adobe-sourcehansans-hk-fonts
|
||||
- adobe-sourcehansans-jp-fonts
|
||||
- adobe-sourcehansans-kr-fonts
|
||||
- adobe-sourcehansans-tw-fonts
|
||||
- adwaita-fonts
|
||||
- adwaita-icon-theme
|
||||
- agama-scripts
|
||||
@@ -233,6 +291,7 @@ packagesets:
|
||||
- ant-swing
|
||||
- ant-testutil
|
||||
- ant-xz
|
||||
- anthy
|
||||
- antlr
|
||||
- antlr-devel
|
||||
- antlr-java
|
||||
@@ -322,7 +381,6 @@ packagesets:
|
||||
- arm-trusted-firmware
|
||||
- arpwatch
|
||||
- arpwatch-ethercodes
|
||||
- asciidoc
|
||||
- assertj-core
|
||||
- assertj-core-javadoc
|
||||
- at
|
||||
@@ -548,6 +606,7 @@ packagesets:
|
||||
- cockpit-bridge
|
||||
- cockpit-devel
|
||||
- cockpit-doc
|
||||
- cockpit-firewalld
|
||||
- cockpit-kdump
|
||||
- cockpit-machines
|
||||
- cockpit-networkmanager
|
||||
@@ -769,6 +828,7 @@ packagesets:
|
||||
- duktape-devel
|
||||
- dump
|
||||
- dump-rmt
|
||||
- duperemove
|
||||
- dvb-utils
|
||||
- dwarves
|
||||
- dwarves-devel
|
||||
@@ -1610,10 +1670,32 @@ packagesets:
|
||||
- ibmtss-devel
|
||||
- ibsim
|
||||
- ibus
|
||||
- ibus-anthy
|
||||
- ibus-cangjie
|
||||
- ibus-dict-emoji
|
||||
- ibus-gtk3
|
||||
- ibus-gtk4
|
||||
- ibus-hangul
|
||||
- ibus-lang
|
||||
- ibus-libpinyin
|
||||
- ibus-libzhuyin
|
||||
- ibus-m17n
|
||||
- ibus-rime
|
||||
- ibus-table
|
||||
- ibus-table-chinese-array
|
||||
- ibus-table-chinese-cangjie
|
||||
- ibus-table-chinese-cantonese
|
||||
- ibus-table-chinese-easy
|
||||
- ibus-table-chinese-erbi
|
||||
- ibus-table-chinese-jyutping
|
||||
- ibus-table-chinese-quick
|
||||
- ibus-table-chinese-scj
|
||||
- ibus-table-chinese-stroke5
|
||||
- ibus-table-chinese-wu
|
||||
- ibus-table-chinese-wubi-haifeng
|
||||
- ibus-table-chinese-wubi-jidian
|
||||
- ibus-table-chinese-yong
|
||||
- ibus-table-extraphrase
|
||||
- ibutils
|
||||
- icu
|
||||
- icu4j
|
||||
@@ -2166,6 +2248,7 @@ packagesets:
|
||||
- libaio1
|
||||
- libalternatives-devel
|
||||
- libalternatives1
|
||||
- libanthy0
|
||||
- libao-plugins4
|
||||
- libao4
|
||||
- libaom3
|
||||
@@ -2388,6 +2471,8 @@ packagesets:
|
||||
- libcanberra-gtk3-0
|
||||
- libcanberra-gtk3-module
|
||||
- libcanberra0
|
||||
- libcangjie-data
|
||||
- libcangjie2
|
||||
- libcap-devel
|
||||
- libcap-ng-devel
|
||||
- libcap-ng-utils
|
||||
@@ -2698,6 +2783,7 @@ packagesets:
|
||||
- libglib-2_0-0
|
||||
- libglibmm-2_4-1
|
||||
- libglibmm-2_68-1
|
||||
- libglog2
|
||||
- libglslang15
|
||||
- libglut3
|
||||
- libglvnd
|
||||
@@ -2842,6 +2928,7 @@ packagesets:
|
||||
- libgxps2
|
||||
- libhandle1
|
||||
- libhandy-1-0
|
||||
- libhangul1
|
||||
- libharfbuzz-cairo0
|
||||
- libharfbuzz-gobject0
|
||||
- libharfbuzz-icu0
|
||||
@@ -3056,6 +3143,7 @@ packagesets:
|
||||
- libleancrypto-fips1
|
||||
- libleancrypto1
|
||||
- libled1
|
||||
- libleveldb1
|
||||
- liblilv-0-0
|
||||
- liblldb19
|
||||
- liblldp_clif1
|
||||
@@ -3094,6 +3182,7 @@ packagesets:
|
||||
- libmariadbd-devel
|
||||
- libmariadbd19
|
||||
- libmariadbprivate
|
||||
- libmarisa0
|
||||
- libmaxminddb-devel
|
||||
- libmaxminddb0
|
||||
- libmbim
|
||||
@@ -3242,6 +3331,7 @@ packagesets:
|
||||
- libopenblas_pthreads0
|
||||
- libopenblas_serial-devel
|
||||
- libopenblas_serial0
|
||||
- libopencc1_1
|
||||
- libopencore-amrnb0
|
||||
- libopencore-amrwb0
|
||||
- libopencsd1
|
||||
@@ -3319,6 +3409,8 @@ packagesets:
|
||||
- libpfm-devel-static
|
||||
- libpfm4
|
||||
- libpgm-5_3-0
|
||||
- libpinyin-data
|
||||
- libpinyin15
|
||||
- libpipeline-devel
|
||||
- libpipeline1
|
||||
- libpipewire-0_3-0
|
||||
@@ -3425,6 +3517,7 @@ packagesets:
|
||||
- librepo0
|
||||
- librest-1_0-0
|
||||
- librhash1
|
||||
- librime1
|
||||
- librist4
|
||||
- librmt-devel-doc
|
||||
- librmt1_0
|
||||
@@ -3910,6 +4003,7 @@ packagesets:
|
||||
- libzbar0
|
||||
- libzck-devel
|
||||
- libzck1
|
||||
- libzhuyin15
|
||||
- libzimg2
|
||||
- libzio-devel
|
||||
- libzio1
|
||||
@@ -4448,6 +4542,7 @@ packagesets:
|
||||
- openblas_openmp-devel-static
|
||||
- openblas_pthreads-devel-static
|
||||
- openblas_serial-devel-static
|
||||
- opencc-data
|
||||
- opencl-headers
|
||||
- openexr
|
||||
- openexr-doc
|
||||
@@ -4800,11 +4895,13 @@ packagesets:
|
||||
- perl-File-Slurper
|
||||
- perl-File-Which
|
||||
- perl-File-chdir
|
||||
- perl-Font-AFM
|
||||
- perl-Git
|
||||
- perl-Glib
|
||||
- perl-Glib-Object-Introspection
|
||||
- perl-Gtk3
|
||||
- perl-HTML-Form
|
||||
- perl-HTML-Format
|
||||
- perl-HTML-Parser
|
||||
- perl-HTML-Tagset
|
||||
- perl-HTML-Tidy
|
||||
@@ -4933,7 +5030,6 @@ packagesets:
|
||||
- perl-Test-Without-Module
|
||||
- perl-Test-YAML
|
||||
- perl-Test2-Plugin-NoWarnings
|
||||
- perl-Test2-Suite
|
||||
- perl-Text-CSV
|
||||
- perl-Text-CSV_XS
|
||||
- perl-Text-CharWidth
|
||||
@@ -5082,6 +5178,7 @@ packagesets:
|
||||
- pipewire-tools
|
||||
- pkcs11-helper
|
||||
- pkcs11-helper-devel
|
||||
- pkcs11-provider
|
||||
- pkexec
|
||||
- pkgconf
|
||||
- pkgconf-m4
|
||||
@@ -5175,8 +5272,6 @@ packagesets:
|
||||
- popt-devel
|
||||
- popt-lang
|
||||
- postfix
|
||||
- postfix-bdb
|
||||
- postfix-bdb-lmdb
|
||||
- postfix-doc
|
||||
- postfix-ldap
|
||||
- postfix-mysql
|
||||
@@ -5276,16 +5371,8 @@ packagesets:
|
||||
- psutils
|
||||
- pthread-stubs-devel
|
||||
- publicsuffix
|
||||
- pulseaudio
|
||||
- pulseaudio-bash-completion
|
||||
- pulseaudio-lang
|
||||
- pulseaudio-module-bluetooth
|
||||
- pulseaudio-module-gsettings
|
||||
- pulseaudio-module-jack
|
||||
- pulseaudio-module-x11
|
||||
- pulseaudio-module-zeroconf
|
||||
- pulseaudio-setup
|
||||
- pulseaudio-system-wide
|
||||
- pulseaudio-utils
|
||||
- pulseaudio-zsh-completion
|
||||
- purge-kernels-service
|
||||
@@ -5502,6 +5589,7 @@ packagesets:
|
||||
- python313-cairocffi
|
||||
- python313-cairocffi-pixbuf
|
||||
- python313-calver
|
||||
- python313-cangjie
|
||||
- python313-cbor2
|
||||
- python313-cchardet
|
||||
- python313-certifi
|
||||
@@ -6589,6 +6677,7 @@ packagesets:
|
||||
- ruby3.4-devel-extra
|
||||
- ruby3.4-doc
|
||||
- ruby3.4-doc-ri
|
||||
- ruby3.4-rubygem-asciidoctor
|
||||
- ruby3.4-rubygem-bundler
|
||||
- ruby3.4-rubygem-gem2rpm
|
||||
- ruby3.4-rubygem-ruby-augeas
|
||||
@@ -7169,7 +7258,6 @@ packagesets:
|
||||
- unixODBC-devel
|
||||
- unzip
|
||||
- unzip-doc
|
||||
- unzip-rcc
|
||||
- upb-devel
|
||||
- update-alternatives
|
||||
- update-bootloader
|
||||
@@ -7293,7 +7381,6 @@ packagesets:
|
||||
- wireplumber
|
||||
- wireplumber-doc
|
||||
- wireplumber-lang
|
||||
- wireplumber-video-only-profile
|
||||
- wireshark
|
||||
- wireshark-devel
|
||||
- wireshark-ui-qt
|
||||
@@ -7539,6 +7626,7 @@ packagesets:
|
||||
- himmelblau-sshd-config
|
||||
- himmelblau-sso
|
||||
- hyper-v
|
||||
- ibus-mozc
|
||||
- irqbalance
|
||||
- irqbalance-ui
|
||||
- kernel-64kb
|
||||
@@ -7605,6 +7693,8 @@ packagesets:
|
||||
- luajit-devel
|
||||
- microsoft-dracut-config
|
||||
- mokutil
|
||||
- mozc
|
||||
- mozc-gui-tools
|
||||
- ndctl
|
||||
- nv-prefer-signed-open-driver
|
||||
- nvidia-open-driver-G06-signed-64kb-devel
|
||||
@@ -7688,6 +7778,7 @@ packagesets:
|
||||
- fftw3-mpi-devel
|
||||
- grub2-branding-SLE
|
||||
- grub2-powerpc-ieee1275
|
||||
- ibus-mozc
|
||||
- iprutils
|
||||
- irqbalance
|
||||
- irqbalance-ui
|
||||
@@ -7747,6 +7838,8 @@ packagesets:
|
||||
- libxatracker2
|
||||
- lklfuse
|
||||
- lsvpd
|
||||
- mozc
|
||||
- mozc-gui-tools
|
||||
- ndctl
|
||||
- numatop
|
||||
- papi
|
||||
@@ -7827,10 +7920,12 @@ packagesets:
|
||||
- openssl-ibmca
|
||||
- openssl-ibmca-engine
|
||||
- openssl-ibmca-provider
|
||||
- orarun
|
||||
- osasnmpd
|
||||
- pam-doc
|
||||
- pam-manpages
|
||||
- patterns-server-hwcrypto
|
||||
- patterns-server-oracle_server
|
||||
- qclib
|
||||
- s390-tools
|
||||
- s390-tools-chreipl-fcp-mpath
|
||||
@@ -7878,6 +7973,7 @@ 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
|
||||
@@ -7924,6 +8020,7 @@ packagesets:
|
||||
- himmelblau-sshd-config
|
||||
- himmelblau-sso
|
||||
- hyper-v
|
||||
- ibus-mozc
|
||||
- infinipath-psm-devel
|
||||
- intel-cmt-cat
|
||||
- intel-lpmd
|
||||
@@ -7944,9 +8041,16 @@ packagesets:
|
||||
- kernel-kvmsmall-vdso
|
||||
- kernel-livepatch-6_12_0-160000_20-default
|
||||
- kiwi-pxeboot
|
||||
- kubevirt-manifests
|
||||
- kubevirt-virtctl
|
||||
- libFLAC++10-x86-64-v3
|
||||
- libFLAC12-x86-64-v3
|
||||
- libIex-3_2-31-x86-64-v3
|
||||
- libIlmThread-3_2-31-x86-64-v3
|
||||
- libLLVMSPIRVLib19
|
||||
- libOpenEXR-3_2-31-x86-64-v3
|
||||
- libOpenEXRCore-3_2-31-x86-64-v3
|
||||
- libOpenEXRUtil-3_2-31-x86-64-v3
|
||||
- libSvtAv1Enc2
|
||||
- libaccel-config1
|
||||
- libatopology2
|
||||
@@ -8098,6 +8202,8 @@ packagesets:
|
||||
- mcelog
|
||||
- microsoft-dracut-config
|
||||
- mokutil
|
||||
- mozc
|
||||
- mozc-gui-tools
|
||||
- nbdkit-nbd-plugin
|
||||
- nbdkit-python-plugin
|
||||
- nbdkit-vddk-plugin
|
||||
@@ -8119,6 +8225,7 @@ packagesets:
|
||||
- open-vm-tools-desktop
|
||||
- open-vm-tools-sdmp
|
||||
- openssl-3-livepatches
|
||||
- orarun
|
||||
- ovmf
|
||||
- ovmf-tools
|
||||
- pam-doc
|
||||
@@ -8142,6 +8249,7 @@ packagesets:
|
||||
- patterns-sap-security
|
||||
- patterns-sap-trento_agent
|
||||
- patterns-sap-trento_server
|
||||
- patterns-server-oracle_server
|
||||
- pcm
|
||||
- pcp-pmda-infiniband
|
||||
- pcp-pmda-perfevent
|
||||
|
@@ -1,49 +0,0 @@
|
||||
#
|
||||
# spec file for package PackageHub-release
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: PackageHub-release
|
||||
Version:
|
||||
Release: 0
|
||||
Summary:
|
||||
# FIXME: Select a correct license from https://github.com/openSUSE/spec-cleaner#spdx-licenses
|
||||
License:
|
||||
URL:
|
||||
Source:
|
||||
BuildRequires:
|
||||
|
||||
%description
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
%configure
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install
|
||||
|
||||
%check
|
||||
%make_build check
|
||||
|
||||
%files
|
||||
%license COPYING
|
||||
%doc ChangeLog README
|
||||
|
||||
%changelog
|
||||
|
1
_config
1
_config
@@ -231,7 +231,6 @@ BuildFlags: excludebuild:patterns-gnome
|
||||
BuildFlags: excludebuild:patterns-server
|
||||
BuildFlags: excludebuild:patterns-cinnamon
|
||||
BuildFlags: excludebuild:plasma6-openSUSE
|
||||
BuildFlags: excludebuild:product-composer
|
||||
# to build gui flavor only, the main one is from SLFO
|
||||
BuildFlags: excludebuild:pinentry
|
||||
# BuildRequires: openSUSE-release
|
||||
|
3
_maintainership.json
Normal file
3
_maintainership.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"": ["bigironman", "maxlin_factory", "lkocman-factory", "smithfarm"]
|
||||
}
|
Submodule agama-products updated: 43922126d8...ba07b171f2
1
blueman
Submodule
1
blueman
Submodule
Submodule blueman added at 4f05a5c6cb
2
chromium
2
chromium
Submodule chromium updated: afa2535e4b...e0353ee763
Submodule dealers-choice updated: b4710113e2...bf3c473974
Submodule distribution-gpg-keys updated: 0985f38d5c...514c48c1dd
Submodule dovecot23 deleted from 75da71d26e
Submodule duperemove deleted from e90d0e7101
2
exim
2
exim
Submodule exim updated: 882d8e0197...9f3f61dcb2
Submodule filezilla updated: 2afeaeb8ee...1452829516
Submodule forgejo-longterm updated: c27770d6f4...93b17f658d
1
fractal
Submodule
1
fractal
Submodule
Submodule fractal added at f0f599187b
2
fsvs
2
fsvs
Submodule fsvs updated: ce9274426f...d5b64fb742
1
gdm
1
gdm
Submodule gdm deleted from 98b9a89e6a
2
gn
2
gn
Submodule gn updated: 9f8ced3439...140cfd7fc8
Submodule ibus-rime deleted from bcd1e1a150
Submodule ibus-table deleted from 3fcc998623
Submodule ibus-table-chinese deleted from d89a9fd425
Submodule ibus-table-others deleted from dfb3e5377d
Submodule libfilezilla updated: 208a0bea41...5b78c4d41a
1
librime
1
librime
Submodule librime deleted from 30a8147fa7
1
libwlembed
Submodule
1
libwlembed
Submodule
Submodule libwlembed added at a5ab25d0c8
Submodule libxfce4ui updated: 1f9ac85d4c...243a9cca47
Submodule libxfce4windowing updated: 1badb7a14c...1fd9186b83
Submodule liquidshell updated: bd6d180917...ee63f38ada
1
marisa
1
marisa
Submodule marisa deleted from 89748df39a
Submodule micropython updated: 13e2981da0...209a792453
2
moarvm
2
moarvm
Submodule moarvm updated: 83101aa542...bad6e97579
1
mozc
1
mozc
Submodule mozc deleted from e36548051a
Submodule noisetorch deleted from e9bf2da904
2
nqp
2
nqp
Submodule nqp updated: 6309c6b840...a043a46561
2
openQA
2
openQA
Submodule openQA updated: 7a7c0193ae...240b3ed944
Submodule openQA-devel-container updated: 1a86ece774...308767a6a7
2
orage
2
orage
Submodule orage updated: dedf11a019...30d056eae9
Submodule os-autoinst updated: 526d4ef8cc...e9544a8d33
Submodule patterns-kde updated: 8231f7e028...532f373ec7
Submodule patterns-xfce updated: 17cdf36e76...5199929a27
Submodule powerline-go updated: 9e1e6d866d...22f831be82
Submodule product-composer updated: 813163a24c...66ac4085af
1
python-Routes
Submodule
1
python-Routes
Submodule
Submodule python-Routes added at 9e68681b9f
1
python-accessible-pygments
Submodule
1
python-accessible-pygments
Submodule
Submodule python-accessible-pygments added at 0497456b4a
1
python-asyncssh
Submodule
1
python-asyncssh
Submodule
Submodule python-asyncssh added at 80f9591409
1
python-cmd2
Submodule
1
python-cmd2
Submodule
Submodule python-cmd2 added at 4d2e0aa7e8
1
python-flexcache
Submodule
1
python-flexcache
Submodule
Submodule python-flexcache added at c1ce05f6e7
1
python-freeipa
Submodule
1
python-freeipa
Submodule
Submodule python-freeipa added at 1435df497f
Submodule python-geventhttpclient updated: 7318efad05...a35e9846e9
1
python-json5
Submodule
1
python-json5
Submodule
Submodule python-json5 added at be20b90344
1
python-libnacl
Submodule
1
python-libnacl
Submodule
Submodule python-libnacl added at 2d8a2811ca
1
python-numpydoc
Submodule
1
python-numpydoc
Submodule
Submodule python-numpydoc added at 54bff35f09
1
python-pecan
Submodule
1
python-pecan
Submodule
Submodule python-pecan added at fa6b8cda43
1
python-pydata-sphinx-theme
Submodule
1
python-pydata-sphinx-theme
Submodule
Submodule python-pydata-sphinx-theme added at bcb3bf2331
1
python-pygraphviz
Submodule
1
python-pygraphviz
Submodule
Submodule python-pygraphviz added at e460db3ec7
1
python-repoze.lru
Submodule
1
python-repoze.lru
Submodule
Submodule python-repoze.lru added at 6749440ecd
1
python-sphinx-gallery
Submodule
1
python-sphinx-gallery
Submodule
Submodule python-sphinx-gallery added at 8bca28df9a
1
python-sphinx-theme-builder
Submodule
1
python-sphinx-theme-builder
Submodule
Submodule python-sphinx-theme-builder added at a6ed69d0e8
2
rakudo
2
rakudo
Submodule rakudo updated: c13b5b413b...90c4751e17
1
ripgrep
Submodule
1
ripgrep
Submodule
Submodule ripgrep added at 15e234f667
1
rust-grass
Submodule
1
rust-grass
Submodule
Submodule rust-grass added at 566f7cad9f
@@ -1,4 +1,4 @@
|
||||
{
|
||||
"ObsProject": "openSUSE:Backports:SLE-16.0",
|
||||
"StagingProject": "openSUSE:Backports:SLE-16.0:PullRequest",
|
||||
"StagingProject": "openSUSE:Backports:SLE-16.0:PullRequest"
|
||||
}
|
||||
|
2
thunar
2
thunar
Submodule thunar updated: 0275d70560...09cd47a0ca
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"Workflows": ["pr"],
|
||||
"GitProjectName": "products/PackageHub#16.0",
|
||||
"GitProjectName": "products/PackageHub#leap-16.0",
|
||||
"Organization": "pool",
|
||||
"Branch": "leap-16.0",
|
||||
"ManualMergeProject": true,
|
||||
|
Submodule xfce4-panel updated: c71e781d86...e4d7431196
Submodule xfce4-session updated: f5c8da088f...19b43d8014
Submodule xfce4-settings updated: 2cd3874229...a24e3a9cd7
Submodule xfdesktop updated: 4b1b69f0b7...9f828de605
Reference in New Issue
Block a user