Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit a7b2203f authored by Robert Nelson's avatar Robert Nelson
Browse files

cockpit (273-1rcnee0)


Signed-off-by: default avatarRobert Nelson <robertcnelson@gmail.com>
parent 8099b044
No related merge requests found
#!/bin/sh
# The upstream Debian packaging in tools/debian/ applies to all supported
# Debian/Ubuntu release targets of Cockpit. In some of them, some
# features or build dependendencies might not be available or are deliberately
# disabled.
# This script can modify (in-place) the debian/* packaging for a particular
# release (first CLI argument). It gets called by
# https://github.com/cockpit-project/cockpituous/blob/main/release/release-dsc
# for building Debian/Ubuntu packages for a new Cockpit release.
set -eu
if [ -z "${1:-}" ] || [ -n "${2:-}" ]; then
echo "Usage: $0 <release>" >&2
exit 1
fi
release="$1"
debian_dir=$(dirname $(readlink -f "$0"))
set -x
# Remove PCP build dependencies, binary package, and Suggests: while pcp is not in stable
# (https://tracker.debian.org/pcp)
case "$release" in
stretch)
sed -i '/libpcp.*-dev/d; /^Package: cockpit-pcp/,/^$/ d; /cockpit-pcp/d' $debian_dir/control
# also remove the files, otherwise --fail-missing breaks the build
sed -i 's/for m in /&pcp /' $debian_dir/rules
;;
esac
cockpit (272-1rcnee0~bullseye+20220628) bullseye; urgency=low
cockpit (273-1rcnee0~bullseye+20220725) bullseye; urgency=low
* Rebuild for repos.rcn-ee.com
-- Robert Nelson <robertcnelson@gmail.com> Tue, 28 Jun 2022 15:28:37 -0500
-- Robert Nelson <robertcnelson@gmail.com> Mon, 25 Jul 2022 09:42:09 -0500
cockpit (273-1) unstable; urgency=medium
* New upstream release:
- Metrics: Display CPU temperature
- Networking: Suggest netmask and gateway addresses
- Software Updates: Optionally reboot after updating
- cockpit/ws container: Support modern SSH keys
-- Martin Pitt <mpitt@debian.org> Wed, 20 Jul 2022 13:44:37 +0200
cockpit (272-1) unstable; urgency=medium
......
......@@ -7,7 +7,7 @@ mirror="http://http.debian.net/debian"
package_name="cockpit"
debian_pkg_name="${package_name}"
package_version="272"
package_version="273"
package_source="${debian_pkg_name}_${package_version}.orig.tar.xz"
src_dir="${package_name}-${package_version}"
......@@ -21,4 +21,4 @@ debian_untar="${package_name}_${debian_version}.debian.tar.xz"
debian_patch=""
local_patch="rcnee0"
bullseye_version="~bullseye+20220628"
bullseye_version="~bullseye+20220725"
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment