svn commit: r469775 - head/security/vuxml/files
Thomas Zander
riggs at FreeBSD.org
Sun May 13 06:16:50 UTC 2018
Author: riggs
Date: Sun May 13 06:16:49 2018
New Revision: 469775
URL: https://svnweb.freebsd.org/changeset/ports/469775
Log:
Bump maximum description length to 5000
Details:
Thanks to www/chromium, we now have a valid entry with 4933 characters.
Entries this long will probably remain exceptions, but there should
not be a warning for the currently valid entries.
Modified:
head/security/vuxml/files/extra-validation.py
Modified: head/security/vuxml/files/extra-validation.py
==============================================================================
--- head/security/vuxml/files/extra-validation.py Sun May 13 06:01:44 2018 (r469774)
+++ head/security/vuxml/files/extra-validation.py Sun May 13 06:16:49 2018 (r469775)
@@ -13,7 +13,7 @@ if len(sys.argv) != 2:
re_date = re.compile(r'^(19|20)[0-9]{2}-[0-9]{2}-[0-9]{2}$')
# warn if description has more than X characters
-DESCRIPTION_LENGTH = 4500
+DESCRIPTION_LENGTH = 5000
tree = ET.parse(sys.argv[1])
root = tree.getroot()
More information about the svn-ports-head
mailing list