Update to upstream release 290
Related: rhbz#2181240
This commit is contained in:
parent
e44a3f2c33
commit
4a94642309
3
.gitignore
vendored
3
.gitignore
vendored
@ -254,7 +254,8 @@
|
||||
/cockpit-284.tar.xz
|
||||
/cockpit-285.tar.xz
|
||||
/cockpit-286.tar.xz
|
||||
/cockpit-286.1.tar.xz
|
||||
/cockpit-287.tar.xz
|
||||
/cockpit-288.tar.xz
|
||||
/cockpit-288.1.tar.xz
|
||||
/cockpit-289.tar.xz
|
||||
/cockpit-290.tar.xz
|
||||
|
@ -1,3 +1,3 @@
|
||||
This repository is maintained by packit.
|
||||
https://packit.dev/
|
||||
The file was generated using packit 0.68.0.post2+g8101c6a.
|
||||
The file was generated using packit 0.74.0.post3+g82517c4.
|
||||
|
18
cockpit.spec
18
cockpit.spec
@ -49,7 +49,7 @@ Summary: Web Console for Linux servers
|
||||
License: LGPL-2.1-or-later
|
||||
URL: https://cockpit-project.org/
|
||||
|
||||
Version: 289
|
||||
Version: 290
|
||||
Release: 1%{?dist}
|
||||
Source0: https://github.com/cockpit-project/cockpit/releases/download/%{version}/cockpit-%{version}.tar.xz
|
||||
|
||||
@ -393,10 +393,10 @@ Recommends: (reportd if abrt)
|
||||
%endif
|
||||
|
||||
Provides: bundled(npm(@patternfly/patternfly)) = 4.224.4
|
||||
Provides: bundled(npm(@patternfly/react-core)) = 4.276.8
|
||||
Provides: bundled(npm(@patternfly/react-core)) = 4.276.9
|
||||
Provides: bundled(npm(@patternfly/react-icons)) = 4.93.6
|
||||
Provides: bundled(npm(@patternfly/react-styles)) = 4.92.6
|
||||
Provides: bundled(npm(@patternfly/react-table)) = 4.113.0
|
||||
Provides: bundled(npm(@patternfly/react-styles)) = 4.92.7
|
||||
Provides: bundled(npm(@patternfly/react-table)) = 4.113.1
|
||||
Provides: bundled(npm(@patternfly/react-tokens)) = 4.94.6
|
||||
Provides: bundled(npm(argparse)) = 1.0.10
|
||||
Provides: bundled(npm(attr-accept)) = 1.1.3
|
||||
@ -579,7 +579,7 @@ fi
|
||||
test -f %{_bindir}/firewall-cmd && firewall-cmd --reload --quiet || true
|
||||
|
||||
# check for deprecated PAM config
|
||||
if grep --color=auto pam_cockpit_cert %{_sysconfdir}/pam.d/cockpit; then
|
||||
if test -f %{_sysconfdir}/pam.d/cockpit && grep -q pam_cockpit_cert %{_sysconfdir}/pam.d/cockpit; then
|
||||
echo '**** WARNING:'
|
||||
echo '**** WARNING: pam_cockpit_cert is a no-op and will be removed in a'
|
||||
echo '**** WARNING: future release; remove it from your /etc/pam.d/cockpit.'
|
||||
@ -753,6 +753,10 @@ via PackageKit.
|
||||
|
||||
# The changelog is automatically generated and merged
|
||||
%changelog
|
||||
* Wed Apr 19 2023 Packit <hello@packit.dev> - 290-1
|
||||
- Login page: Add autocomplete tags
|
||||
- webserver: Disallow direct URL logins with LoginTo=false
|
||||
|
||||
* Wed Apr 05 2023 Packit <hello@packit.dev> - 289-1
|
||||
- Metrics: Indicate high usage and use colorblind-friendly colors
|
||||
- Accounts: Improve password validation
|
||||
@ -774,10 +778,6 @@ via PackageKit.
|
||||
- Metrics: Column visiblity
|
||||
- Services: Pinned units need to be re-done
|
||||
|
||||
* Thu Feb 23 2023 Packit <hello@packit.dev> - 286.1-1
|
||||
- Users: Fix broken alignment of the first column in groups table
|
||||
- Translation updates (rhbz#2139644)
|
||||
|
||||
* Wed Feb 22 2023 Packit <hello@packit.dev> - 286-1
|
||||
- Metrics page: control visibility of the resource usage graphs
|
||||
|
||||
|
22
packit.yaml
22
packit.yaml
@ -1,22 +1,24 @@
|
||||
upstream_project_url: https://github.com/cockpit-project/cockpit
|
||||
# HACK: spec must be next to the generated tarball; https://github.com/packit/packit/issues/1621
|
||||
specfile_path: cockpit.spec
|
||||
actions:
|
||||
post-upstream-clone:
|
||||
# HACK: spec must be next to the generated tarball; https://github.com/packit/packit/issues/1621
|
||||
# build patched spec
|
||||
- tools/node-modules make_package_lock_json
|
||||
- cp tools/cockpit.spec .
|
||||
# packit will compute and set the version by itself
|
||||
- tools/fix-spec ./cockpit.spec 0
|
||||
|
||||
create-archive:
|
||||
# The sandcastle doesn't have enough ram to run webpack, so wait
|
||||
# until the webpack-jumpstart workflow has run and grab the result.
|
||||
- tools/webpack-jumpstart --wait --rebase
|
||||
- tools/make-dist
|
||||
|
||||
srpm_build_deps:
|
||||
- automake
|
||||
- gcc
|
||||
- gettext
|
||||
- glib2-devel
|
||||
- make
|
||||
- nodejs
|
||||
- npm
|
||||
- systemd-devel
|
||||
# use the nicely formatted release NEWS from our upstream release, instead of git shortlog
|
||||
copy_upstream_release_description: true
|
||||
@ -26,9 +28,11 @@ jobs:
|
||||
targets:
|
||||
- fedora-37
|
||||
- fedora-38
|
||||
- fedora-latest-aarch64
|
||||
- fedora-development
|
||||
- centos-stream-8-x86_64
|
||||
- centos-stream-9-x86_64
|
||||
- centos-stream-9-aarch64
|
||||
|
||||
# run build/unit tests on some interesting architectures
|
||||
- job: copr_build
|
||||
@ -45,11 +49,13 @@ jobs:
|
||||
project: "cockpit-preview"
|
||||
preserve_project: True
|
||||
actions:
|
||||
# same as the global one, but specifying actions: does not inherit
|
||||
post-upstream-clone:
|
||||
# HACK: spec must be next to the generated tarball; https://github.com/packit/packit/issues/1621
|
||||
# build patched spec
|
||||
- tools/node-modules make_package_lock_json
|
||||
- cp tools/cockpit.spec .
|
||||
# HACK: https://github.com/packit/packit/issues/1560
|
||||
- tools/node-modules checkout
|
||||
# packit will compute and set the version by itself
|
||||
- tools/fix-spec ./cockpit.spec 0
|
||||
# HACK: tarball for releases (copr_build, koji, etc.), copying spec's Source0; this
|
||||
# really should be the default, see https://github.com/packit/packit-service/issues/1505
|
||||
create-archive:
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (cockpit-289.tar.xz) = b8c6fd228c701ca2431b83c19cb11523632294fa80b8c3cfcddc8edee9a2b1a0ee97b2efc2be54e01314cc9604744a3e2dd0c6de3094425abc3a76e1fa02e27f
|
||||
SHA512 (cockpit-290.tar.xz) = fb7010cbd247b4a348f28ca86e2e3f74747707ca36d1ba17972864c1f2d3541d814cec7b4c0ff4cf4998a58a906cb4ec2e17e60400888eb4573e177d04c8bb55
|
||||
|
Loading…
Reference in New Issue
Block a user