Update to upstream release 359
Related: RHEL-157464
This commit is contained in:
parent
75fcb4337b
commit
d4895c94f4
6
.gitignore
vendored
6
.gitignore
vendored
@ -335,3 +335,9 @@
|
||||
/cockpit-node-355.tar.xz
|
||||
/cockpit-356.tar.xz
|
||||
/cockpit-node-356.tar.xz
|
||||
/cockpit-357.tar.xz
|
||||
/cockpit-node-357.tar.xz
|
||||
/cockpit-358.tar.xz
|
||||
/cockpit-node-358.tar.xz
|
||||
/cockpit-359.tar.xz
|
||||
/cockpit-node-359.tar.xz
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
This repository is maintained by packit.
|
||||
https://packit.dev/
|
||||
The file was generated using packit 1.14.0.post1.dev10+g291d7454f.
|
||||
The file was generated using packit 1.15.1.post1.dev6+g1fe6a01ee.
|
||||
|
||||
17
cockpit.spec
17
cockpit.spec
@ -55,7 +55,7 @@ Summary: Web Console for Linux servers
|
||||
License: LGPL-2.1-or-later AND GPL-3.0-or-later AND MIT AND CC-BY-SA-3.0 AND BSD-3-Clause
|
||||
URL: https://cockpit-project.org/
|
||||
|
||||
Version: 356
|
||||
Version: 359
|
||||
Release: 1%{?dist}
|
||||
Source0: https://github.com/cockpit-project/cockpit/releases/download/%{version}/cockpit-%{version}.tar.xz
|
||||
Source1: https://github.com/cockpit-project/cockpit/releases/download/%{version}/cockpit-node-%{version}.tar.xz
|
||||
@ -665,6 +665,21 @@ via PackageKit.
|
||||
|
||||
# The changelog is automatically generated and merged
|
||||
%changelog
|
||||
* Thu Mar 26 2026 Packit <hello@packit.dev> - 359-1
|
||||
- Bug fixes and translation updates
|
||||
|
||||
|
||||
* Wed Mar 18 2026 Packit <hello@packit.dev> - 358-1
|
||||
- Networking: Add Wi-Fi support
|
||||
- Cockpit Client updated to GTK 4
|
||||
- Bugfixes and translation updates
|
||||
|
||||
|
||||
* Fri Feb 27 2026 Packit <hello@packit.dev> - 357-1
|
||||
- lib: Use browser context menu on shift
|
||||
- bridge: support Python 3.14 on old kernels (RHEL 8)
|
||||
|
||||
|
||||
* Wed Feb 11 2026 Packit <hello@packit.dev> - 356-1
|
||||
- systemd: Allow editing timers created by Cockpit
|
||||
- Convert license headers to SPDX format
|
||||
|
||||
37
packit.yaml
37
packit.yaml
@ -36,8 +36,8 @@ jobs:
|
||||
identifier: self
|
||||
trigger: pull_request
|
||||
targets: &test_targets
|
||||
fedora-42: {}
|
||||
fedora-43: {}
|
||||
fedora-44: {}
|
||||
fedora-latest-aarch64: {}
|
||||
fedora-rawhide: {}
|
||||
centos-stream-9-x86_64:
|
||||
@ -67,11 +67,12 @@ jobs:
|
||||
targets: *test_targets
|
||||
|
||||
# run extra build/unit tests on some interesting architectures
|
||||
- job: copr_build
|
||||
trigger: pull_request
|
||||
targets:
|
||||
# big-endian
|
||||
- fedora-latest-stable-s390x
|
||||
# https://github.com/fedora-copr/copr/issues/4219
|
||||
# - job: copr_build
|
||||
# trigger: pull_request
|
||||
# targets:
|
||||
# # big-endian
|
||||
# - fedora-latest-stable-s390x
|
||||
|
||||
# for cross-project testing
|
||||
- job: copr_build
|
||||
@ -92,35 +93,49 @@ jobs:
|
||||
post-upstream-clone:
|
||||
- cp tools/cockpit.spec .
|
||||
|
||||
# Download the real GitHub release tarball instead of creating git archive
|
||||
create-archive:
|
||||
- |
|
||||
bash -exc '
|
||||
# Download Source0 from GitHub releases
|
||||
curl -L -o "cockpit-${PACKIT_PROJECT_VERSION}.tar.xz" \
|
||||
"https://github.com/cockpit-project/cockpit/releases/download/${PACKIT_PROJECT_VERSION}/cockpit-${PACKIT_PROJECT_VERSION}.tar.xz"
|
||||
# Output the filename for Packit (required by create-archive)
|
||||
echo "cockpit-${PACKIT_PROJECT_VERSION}.tar.xz"
|
||||
'
|
||||
|
||||
# resolve NPM_PROVIDES, but otherwise keep packit's %changelog
|
||||
post-modifications:
|
||||
- |
|
||||
bash -exc '
|
||||
# for debugging of official runs, CLI is different from packit service
|
||||
env | grep PACKIT
|
||||
tar -xJf "${PACKIT_DOWNSTREAM_REPO}/cockpit-${PACKIT_PROJECT_VERSION}.tar.xz" "cockpit-*/runtime-npm-modules.txt" --strip-components=1
|
||||
tools/fix-spec "${PACKIT_DOWNSTREAM_REPO}/cockpit.spec" "${PACKIT_PROJECT_VERSION}"
|
||||
tar -xJf "${PACKIT_DOWNSTREAM_REPO:-${PACKIT_UPSTREAM_REPO}}/cockpit-${PACKIT_PROJECT_VERSION}.tar.xz" "cockpit-*/runtime-npm-modules.txt" --strip-components=1
|
||||
tools/fix-spec "${PACKIT_DOWNSTREAM_REPO:-${PACKIT_UPSTREAM_REPO}}/cockpit.spec" "${PACKIT_PROJECT_VERSION}"
|
||||
'
|
||||
|
||||
fix-spec-file:
|
||||
# packit needs local file names, not URLs
|
||||
- sed -i 's|^\(Source[0-9]*:\s*\).*\/|\1|' cockpit.spec
|
||||
- job: propose_downstream
|
||||
trigger: release
|
||||
actions: *official_release_actions
|
||||
|
||||
dist_git_branches:
|
||||
- fedora-development
|
||||
- fedora-42
|
||||
- fedora-43
|
||||
- fedora-44
|
||||
|
||||
- job: koji_build
|
||||
trigger: commit
|
||||
dist_git_branches:
|
||||
- fedora-development
|
||||
- fedora-42
|
||||
- fedora-43
|
||||
- fedora-44
|
||||
|
||||
- job: bodhi_update
|
||||
trigger: commit
|
||||
dist_git_branches:
|
||||
# rawhide updates are created automatically
|
||||
- fedora-42
|
||||
- fedora-43
|
||||
- fedora-44
|
||||
|
||||
4
sources
4
sources
@ -1,2 +1,2 @@
|
||||
SHA512 (cockpit-356.tar.xz) = 302fbe91657b136a2ed6a4361815d7f709851d19aaccf3801774142c7d08d7362ac60e4febb35f3068261b285dcbdf70399b542c5d5bc1f25159d2724cc44aa6
|
||||
SHA512 (cockpit-node-356.tar.xz) = b3e6cb71b7c76e850e7c7816954afe0de9d836d89d10ab3e136ac558b338d77e532103b514322161907af0e60a447da4056741f235e990999a740f7462313f03
|
||||
SHA512 (cockpit-359.tar.xz) = 2ca90b6a057f1813ec39fbcb913b274aed998d66d07dec5db6d19e0a40867c4d81252e2092b79540d25c4519919c58e1978d02f766ede85da11cfe64d5821650
|
||||
SHA512 (cockpit-node-359.tar.xz) = ec55f9f4df5ff4b3b31eaf9aa366af781db15bb9157a7ee27c94e74f10ecff60cc68ac5fda63a9dc1c251f5b847b1018066605ca17cac09ea72ae0f104eed471
|
||||
|
||||
Loading…
Reference in New Issue
Block a user