- Rebased to the latest sources (see CHANGELOG.md) Resolves: RHEL-34783, RHEL-34792, RHEL-35428, RHEL-35670, RHEL-36612, RHEL-38478, RHEL-38479, RHEL-38481, RHEL-38487, RHEL-38489, RHEL-38491 - Updated pcs-web-ui to 0.1.19 Resolves: RHEL-38493, RHEL-38494, RHEL-38495, RHEL-38496 - “Added” the Cockpit application cockpit-ha-cluster as a web interface for HA cluster management (this was already present because of package sync from Fedora 40) Resolves: RHEL-23048 - Updated bundled rubygems: backports, childprocess, nio4r, puma, rack, rack-protection, sinatra - Bundled new rubygems: base64, rack-session, rackup, webrick - Started bundling webrick again as a dependency of rackup - we no longer use it but rackup requires webrick
33 lines
918 B
Diff
33 lines
918 B
Diff
From 9585ee5285201828a67ffb15e4609d7523255c35 Mon Sep 17 00:00:00 2001
|
|
From: Michal Pospisil <mpospisi@redhat.com>
|
|
Date: Thu, 23 May 2024 17:23:57 +0200
|
|
Subject: [PATCH 2/2] support bundling pycurl
|
|
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index b4ef2682..0f0ed255 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -339,7 +339,6 @@ if test "x$tests_only" != "xyes"; then
|
|
fi
|
|
PCS_CHECK_PYMOD([cryptography])
|
|
PCS_CHECK_PYMOD([lxml])
|
|
- PCS_CHECK_PYMOD([pycurl])
|
|
PCS_CHECK_PYMOD([pyparsing])
|
|
|
|
# those are kind of problematic.
|
|
@@ -352,6 +351,7 @@ if test "x$tests_only" != "xyes"; then
|
|
if test "x$bundle_module" = "xyes" && test "x$cache_only" = "xyes"; then
|
|
PCS_CHECK_PYMOD([setuptools-scm])
|
|
fi
|
|
+ PCS_CHECK_PYMOD([pycurl], [], [yes])
|
|
|
|
# special case, because we need to download from github
|
|
AC_PIP_MODULE([pyagentx])
|
|
--
|
|
2.45.1
|
|
|