pkgsrc-Changes archive

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

CVS commit: pkgsrc/security/wfuzz



Module Name:    pkgsrc
Committed By:   wiz
Date:           Fri Feb 10 14:37:20 UTC 2023

Modified Files:
        pkgsrc/security/wfuzz: distinfo
Added Files:
        pkgsrc/security/wfuzz/patches: patch-setup.py

Log Message:
wfuzz: fix invalid pattern

Fixes build.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/security/wfuzz/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/security/wfuzz/patches/patch-setup.py

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

Modified files:

Index: pkgsrc/security/wfuzz/distinfo
diff -u pkgsrc/security/wfuzz/distinfo:1.3 pkgsrc/security/wfuzz/distinfo:1.4
--- pkgsrc/security/wfuzz/distinfo:1.3  Tue Oct 26 11:18:05 2021
+++ pkgsrc/security/wfuzz/distinfo      Fri Feb 10 14:37:20 2023
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.3 2021/10/26 11:18:05 nia Exp $
+$NetBSD: distinfo,v 1.4 2023/02/10 14:37:20 wiz Exp $
 
 BLAKE2s (wfuzz-3.1.0.tar.gz) = 8c240e4720ba9a8e1fd96e13d86de6381ef150fc46e4a113001c9771e73a3ee9
 SHA512 (wfuzz-3.1.0.tar.gz) = e3c7b0924ee0a41d17a6d968fb638ff393aa2f020bdebe91231b59fccdd0ebb640c1985bd9d8d5087db4bc6384cc1fbc917e005f6a6742ee3cbef505e9ec217c
 Size (wfuzz-3.1.0.tar.gz) = 103099 bytes
+SHA1 (patch-setup.py) = d1342a06269fee766454f7189208b292179cac00

Added files:

Index: pkgsrc/security/wfuzz/patches/patch-setup.py
diff -u /dev/null pkgsrc/security/wfuzz/patches/patch-setup.py:1.1
--- /dev/null   Fri Feb 10 14:37:20 2023
+++ pkgsrc/security/wfuzz/patches/patch-setup.py        Fri Feb 10 14:37:20 2023
@@ -0,0 +1,15 @@
+$NetBSD: patch-setup.py,v 1.1 2023/02/10 14:37:20 wiz Exp $
+
+Fix invalid pattern.
+
+--- setup.py.orig      2020-11-06 11:04:27.000000000 +0000
++++ setup.py
+@@ -31,7 +31,7 @@ dev_requires = [
+ install_requires = [
+     'pycurl',
+     'pyparsing<2.4.2;python_version<="3.4"',
+-    'pyparsing>=2.4*;python_version>="3.5"',
++    'pyparsing>=2.4;python_version>="3.5"',
+     'six',
+     'configparser;python_version<"3.5"',
+     'chardet',



Home | Main Index | Thread Index | Old Index