Index: head/security/wapiti/Makefile =================================================================== --- head/security/wapiti/Makefile (revision 459606) +++ head/security/wapiti/Makefile (revision 459607) @@ -1,21 +1,27 @@ # Created by: Philippe Audeoud # $FreeBSD$ PORTNAME= wapiti -PORTVERSION= 2.3.0 -PORTREVISION= 2 +PORTVERSION= 3.0.0 CATEGORIES= security MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= antoine@FreeBSD.org COMMENT= Wapiti is a vulnerability scanner for web applications LICENSE= GPLv2 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup32>=0:www/py-beautifulsoup32@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}requests>=1.2.3:www/py-requests@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup>=0:www/py-beautifulsoup@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}lxml>=0:devel/py-lxml@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}tld>=0:dns/py-tld@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yaswfp>=0:graphics/py-yaswfp@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}mako>=0:textproc/py-mako@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pysocks>=0:net/py-pysocks@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sqlite3>=0:databases/py-sqlite3@${FLAVOR} -USES= python:2 +USES= python:3.4+ USE_PYTHON= distutils autoplist .include Index: head/security/wapiti/distinfo =================================================================== --- head/security/wapiti/distinfo (revision 459606) +++ head/security/wapiti/distinfo (revision 459607) @@ -1,2 +1,3 @@ -SHA256 (wapiti-2.3.0.tar.gz) = 6b836a4810f17b7eda4345fb12293112129961ba243140c72a8da0ac2572f4b4 -SIZE (wapiti-2.3.0.tar.gz) = 305739 +TIMESTAMP = 1515566240 +SHA256 (wapiti-3.0.0.tar.gz) = 4708fa1d8159b0a5e606bdb26e1454e8df1d8bf6e11d9ad63c84e12e8edc8daa +SIZE (wapiti-3.0.0.tar.gz) = 528316 Index: head/security/wapiti/files/patch-wapitiCore__language__language.py =================================================================== --- head/security/wapiti/files/patch-wapitiCore__language__language.py (revision 459606) +++ head/security/wapiti/files/patch-wapitiCore__language__language.py (nonexistent) @@ -1,12 +0,0 @@ ---- ./wapitiCore/language/language.py.orig 2013-10-02 19:36:32.000000000 +0000 -+++ ./wapitiCore/language/language.py 2013-11-28 19:46:44.000000000 +0000 -@@ -55,7 +55,8 @@ - # if lang is not specified, default language is used - defLocale = locale.getdefaultlocale() - langCounty = defLocale[0] # en_UK -- lang = langCounty[:2] # en -+ if langCounty is not None: -+ lang = langCounty[:2] # en - if lang not in self.AVAILABLE_LANGS: - # if lang is not one of the supported languages, we use english - print("Oups! No translations found for your language... Using english.") Property changes on: head/security/wapiti/files/patch-wapitiCore__language__language.py ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/security/wapiti/files/patch-setup.py =================================================================== --- head/security/wapiti/files/patch-setup.py (revision 459606) +++ head/security/wapiti/files/patch-setup.py (revision 459607) @@ -1,11 +1,11 @@ ---- ./setup.py.orig 2013-10-20 12:04:17.000000000 +0000 -+++ ./setup.py 2013-11-28 19:47:25.000000000 +0000 -@@ -14,7 +14,7 @@ - "README", - "TODO", - "VERSION"])) --doc_and_conf_files.append(("share/man/man1", ["doc/wapiti.1.gz"])) -+doc_and_conf_files.append(("man/man1", ["doc/wapiti.1.gz"])) - - # Main - setup( +--- setup.py.orig 2018-01-03 08:51:42 UTC ++++ setup.py +@@ -24,7 +24,7 @@ doc_and_conf_files = [ + ] + ), + ( +- "share/man/man1", ++ "man/man1", + [ + "doc/wapiti.1", + "doc/wapiti-getcookie.1"