1
0

Compare commits

..

18 Commits

Author SHA256 Message Date
Nathan Cutler
2fbc9cc4db workflows: adapt patchinfo_numberator for src.opensuse.org operation
Originally we had a literal, byte-for-byte copy of this action from src.suse.de,
but since src.suse.de is not accessible from src.opensuse.org, it was doomed
to fail.

Signed-off-by: Nathan Cutler <ncutler@suse.cz>
2025-08-22 12:01:13 +02:00
be57857589 Merge pull request '0Backports: reinstate libgnutls30-32bit and its dependencies (bsc#1248444)' (#38) from smithfarm/PackageHub:wip-gnutls into leap-16.0
Reviewed-on: products/PackageHub#38
2025-08-22 09:28:10 +02:00
Nathan Cutler
48f325441b Backports.productcompose: add more packages to backports_unneeded
Signed-off-by: Nathan Cutler <ncutler@suse.cz>
2025-08-22 09:27:30 +02:00
Nathan Cutler
5dbc9316cf 0Backports: reinstate libgnutls30-32bit and its dependencies
At some time in the past, libgnutls30-32bit was not building
properly in SLFO, so we had excluded it and some things that
were not installable as a result, but in the meantime it has
supposedly been fixed, so reinstate the whole lot.

Signed-off-by: Nathan Cutler <ncutler@suse.cz>
2025-08-21 14:50:42 +02:00
087ab68ba2 Merge pull request '_maintainership.json: add lkocman-factory, smithfarm' (#36) from smithfarm/PackageHub:wip-expand-maintainership into leap-16.0
Reviewed-on: products/PackageHub#36
Reviewed-by: Yuchen Lin <maxlin_factory@noreply.src.opensuse.org>
2025-08-21 10:54:29 +02:00
1074d69b71 Merge pull request 'add ripgrep' (#27) from maxlin_factory/PackageHub:add_ripgrep into leap-16.0
Reviewed-on: products/PackageHub#27
Reviewed-by: Nathan Cutler <smithfarm@noreply.src.opensuse.org>
2025-08-21 10:29:49 +02:00
b7addb8613 add ripgrep 2025-08-21 10:28:29 +02:00
Nathan Cutler
e87c35ae57 _maintainership.json: add lkocman-factory, smithfarm
Signed-off-by: Nathan Cutler <ncutler@suse.cz>
2025-08-21 10:15:01 +02:00
e3a0521e53 Merge pull request 'Prepare for maintenance, but not enabling it yet' (#34) from smithfarm/PackageHub:wip-adrian-maintenance into leap-16.0
Reviewed-on: products/PackageHub#34
2025-08-20 14:11:33 +02:00
Nathan Cutler
a2593a8867 workflows: add patchinfo_numberator.yaml
Prepare for Maintenance, but not enabling it yet.
(Changes from Adrian)

Signed-off-by: Nathan Cutler <ncutler@suse.cz>
2025-08-20 14:10:32 +02:00
Nathan Cutler
3f8a53988c Backports.productcompose: prepare for maintenance
but not enabling it yet (changes from Adrian)

Signed-off-by: Nathan Cutler <ncutler@suse.cz>
2025-08-20 14:02:47 +02:00
b6369a0076 Merge pull request 'Forwarded PRs: rakudo' (#26) from PR_rakudo#1 into leap-16.0
Reviewed-on: products/PackageHub#26
Reviewed-by: Autogits StagingBot <autogits_obs_staging_bot@noreply.src.opensuse.org>
2025-08-20 08:37:26 +02:00
AutoGits PR Review Bot
d8da6a1851 auto-created for rakudo
This commit was autocreated by AutoGits PR Review Bot referencing
 PR: pool/rakudo#1
2025-08-19 18:19:52 +02:00
cfb07f3599 Merge pull request 'Forwarded PRs: nqp' (#24) from PR_nqp#1 into leap-16.0
Reviewed-on: products/PackageHub#24
Reviewed-by: Autogits StagingBot <autogits_obs_staging_bot@noreply.src.opensuse.org>
2025-08-19 18:19:35 +02:00
AutoGits PR Review Bot
b77bd00d94 auto-created for nqp
This commit was autocreated by AutoGits PR Review Bot referencing
 PR: pool/nqp#1
2025-08-19 18:19:09 +02:00
4e5bee00ea Merge pull request 'update moarvm' (#29) from maxlin_factory/PackageHub:update_moarvm into leap-16.0
Reviewed-on: products/PackageHub#29
Reviewed-by: Autogits StagingBot <autogits_obs_staging_bot@noreply.src.opensuse.org>
2025-08-19 17:22:41 +02:00
b622048ea7 update moarvm 2025-08-19 22:48:23 +08:00
ac2c98307a Merge pull request 'Backports.productcompose: add uninstallables to backports_unneeded' (#28) from smithfarm/PackageHub:wip-exclude-32bit into leap-16.0
Reviewed-on: products/PackageHub#28
2025-08-19 13:29:09 +02:00
9 changed files with 81 additions and 10 deletions

View File

@@ -0,0 +1,31 @@
# 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:
# 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

4
.gitmodules vendored
View File

@@ -26258,3 +26258,7 @@
path = fractal
url = ../../pool/fractal
branch = leap-16.0
[submodule "ripgrep"]
path = ripgrep
url = ../../pool/ripgrep
branch = leap-16.0

View File

@@ -1,3 +1,32 @@
-------------------------------------------------------------------
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>

View File

@@ -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,6 +57,8 @@ packagesets:
packages:
- ALP
- ALP-dummy-release
- bash-legacybin
- busybox-which
- cluster-md-kmp-azure
- cluster-md-kmp-rt
- cmake-mini
@@ -75,7 +79,7 @@ packagesets:
- kselftests-kmp-default
- kselftests-kmp-rt
- leancrypto-kmp-default
- libcups2-32bit
# - libcups2-32bit
- libcurl-mini4
- libdbus-1-3-32bit
- libdvbv5-0-32bit
@@ -87,13 +91,13 @@ packagesets:
- libressl
- libressl-devel
- libressl-devel-doc
- libsybdb5-32bit
# - libsybdb5-32bit
- libsystemd0-mini
- libtdsodbc0-32bit
# - libtdsodbc0-32bit
- libudev-mini1
- libunbound-devel-mini
- libusb-1_0-0-32bit
- libzip5-32bit
# - libzip5-32bit
- ocfs2-kmp-azure
- ocfs2-kmp-default
- ocfs2-kmp-rt
@@ -101,10 +105,12 @@ packagesets:
- pam-extra-32bit
- postgresql17-devel-mini
- protobuf21-source
- 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
@@ -125,8 +131,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

View File

@@ -1,3 +1,3 @@
{
"": ["bigironman", "maxlin_factory"]
"": ["bigironman", "maxlin_factory", "lkocman-factory", "smithfarm"]
}

2
moarvm

Submodule moarvm updated: 83101aa542...bad6e97579

2
nqp

Submodule nqp updated: 6309c6b840...a043a46561

2
rakudo

Submodule rakudo updated: c13b5b413b...90c4751e17

1
ripgrep Submodule

Submodule ripgrep added at 15e234f667