URL: https://github.com/SSSD/sssd/pull/396
Author: fidencio
 Title: #396: CI: Add missing http-parser-devel dependency
Action: opened

PR body:
"""
As reported on #3526, running $ ./contrib/ci/run on CentOS 7 minimal
installation ends up in failure on configure because
./contrib/ci/deps.sh does not attempt to install http-parser-devel.

We don't have to worry about CentOS 6 as SSSD is built using
--without-secrets there, thus http-parser-devel is not required.

Resolves: https://pagure.io/SSSD/sssd/issue/3526

Signed-off-by: Fabiano FidĂȘncio <fiden...@redhat.com>
"""

To pull the PR as Git branch:
git remote add ghsssd https://github.com/SSSD/sssd
git fetch ghsssd pull/396/head:pr396
git checkout pr396
From 193477fe252b547d404c7f092bdd6718171b60a8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= <fiden...@redhat.com>
Date: Fri, 29 Sep 2017 13:33:44 +0200
Subject: [PATCH] CI: Add missing http-parser-devel dependency
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

As reported on #3526, running $ ./contrib/ci/run on CentOS 7 minimal
installation ends up in failure on configure because
./contrib/ci/deps.sh does not attempt to install http-parser-devel.

We don't have to worry about CentOS 6 as SSSD is built using
--without-secrets there, thus http-parser-devel is not required.

Resolves: https://pagure.io/SSSD/sssd/issue/3526

Signed-off-by: Fabiano FidĂȘncio <fiden...@redhat.com>
---
 contrib/ci/deps.sh | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/contrib/ci/deps.sh b/contrib/ci/deps.sh
index 4467e117c..1493e94ba 100644
--- a/contrib/ci/deps.sh
+++ b/contrib/ci/deps.sh
@@ -50,6 +50,12 @@ if [[ "$DISTRO_BRANCH" == -redhat-* ]]; then
         krb5-server
         krb5-workstation
     )
+
+    if [[ "$DISTRO_BRANCH" != -redhat-redhatenterprise*-6.*- ||
+          "$DISTRO_BRANCH" != -redhat-centos-6.*- ]]; then
+        DEPS_LIST+=(http-parser-devel)
+    fi
+
     _DEPS_LIST_SPEC=`
         sed -e 's/@PACKAGE_VERSION@/0/g' \
             -e 's/@PACKAGE_NAME@/package-name/g' \
_______________________________________________
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org

Reply via email to