pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/py-mod_wsgi



Module Name:    pkgsrc
Committed By:   rillig
Date:           Wed May 13 04:43:01 UTC 2020

Modified Files:
        pkgsrc/www/py-mod_wsgi: distinfo
Added Files:
        pkgsrc/www/py-mod_wsgi/patches: patch-configure

Log Message:
www/py-mod_wsgi: fix bashism in configure script


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 pkgsrc/www/py-mod_wsgi/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/www/py-mod_wsgi/patches/patch-configure

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/py-mod_wsgi/distinfo
diff -u pkgsrc/www/py-mod_wsgi/distinfo:1.14 pkgsrc/www/py-mod_wsgi/distinfo:1.15
--- pkgsrc/www/py-mod_wsgi/distinfo:1.14        Wed Jul  3 19:50:33 2019
+++ pkgsrc/www/py-mod_wsgi/distinfo     Wed May 13 04:43:01 2020
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.14 2019/07/03 19:50:33 adam Exp $
+$NetBSD: distinfo,v 1.15 2020/05/13 04:43:01 rillig Exp $
 
 SHA1 (mod_wsgi-4.6.7.tar.gz) = 22583af805328832f14f49410d59a0ed9ff6227c
 RMD160 (mod_wsgi-4.6.7.tar.gz) = de54aa46c51d0dbc6a190d302a884b7fb4b5069c
 SHA512 (mod_wsgi-4.6.7.tar.gz) = 0a0953471e5f117f650917da8f0c74e448c911820d12e2ecc9d0437d0464dc10f28924708b7f3826ffc2d6df372b5cebda4178bd57bd83e051bce70c92d62dae
 Size (mod_wsgi-4.6.7.tar.gz) = 497481 bytes
+SHA1 (patch-configure) = 7ece56413dfcb8de755dab722ebac632f3d1166f

Added files:

Index: pkgsrc/www/py-mod_wsgi/patches/patch-configure
diff -u /dev/null pkgsrc/www/py-mod_wsgi/patches/patch-configure:1.1
--- /dev/null   Wed May 13 04:43:01 2020
+++ pkgsrc/www/py-mod_wsgi/patches/patch-configure      Wed May 13 04:43:01 2020
@@ -0,0 +1,26 @@
+$NetBSD: patch-configure,v 1.1 2020/05/13 04:43:01 rillig Exp $
+
+Fix bashism.
+
+https://github.com/GrahamDumpleton/mod_wsgi/issues/567
+
+--- configure.orig     2018-08-14 00:24:32.000000000 +0000
++++ configure  2020-05-02 14:39:52.265155718 +0000
+@@ -1938,7 +1938,7 @@
+ if test -x "${APXS}"; then
+     APXS_CC=`${APXS} -q CC`
+     APXS_LIBTOOL=`${APXS} -q LIBTOOL | sed -e "s/ .*$//"`
+-    if [[ ${APXS_CC} = ${XCODE_PREFIX}* ]]; then
++    case ${APXS_CC} in "${XCODE_PREFIX}"*)
+         if test ! -x ${XCODE_CC}; then
+             cat "${APXS_LIBTOOL}" | sed -e \
+                 "s%${XCODE_BIN_PATTERN}%/usr/bin/%" > ./libtool
+@@ -1953,7 +1953,7 @@
+ 
+         chmod +x ./apxs ./libtool
+         APXS=./apxs
+-    fi
++    esac
+ fi
+ 
+ 



Home | Main Index | Thread Index | Old Index