- Do not use += to set initial CONFIGURE_ARGS value
- Convert to option helpers and new test framework (TEST_TARGET)
- Remove extra patch that prevented installation of the example files
(it is not needed in the post-staging era: running `make package
OPTIONS_UNSET=EXAMPLES -DBATCH' will produce package without the
exampes by default, requiring no special hacks)
- Wrap one overly long line by optimizing away one of the STRIP_CMD's
Changelog:
Nmap 7.00 [2015-11-19]
o This is the most important release since Nmap 6.00 back in May 2012!
For a list of the most significant improvements and new features,
see the announcement at: https://nmap.org/7
o [NSE] Added 6 NSE scripts from 6 authors, bringing the total up to 515!
They are all listed at https://nmap.org/nsedoc/, and the summaries are below
(authors are listed in brackets):
+ targets-xml extracts target addresses from previous Nmap XML results files.
[Daniel Miller]
+ [GH#232] ssl-dh-params checks for problems with weak, non-safe, and
export-grade Diffie-Hellman parameters in TLS handshakes. This includes the
LOGJAM vulnerability (CVE-2015-4000). [Jacob Gajek]
+ nje-node-brute does brute-forcing of z/OS JES Network Job Entry node names.
[Soldier of Fortran]
+ ip-https-discover detectings support for Microsoft's IP over HTTPS
tunneling protocol. [Niklaus Schiess]
+ [GH#165] broadcast-sonicwall-discover detects and extracts information from
SonicWall firewalls. [Raphael Hoegger]
+ [GH#38] http-vuln-cve2014-8877 checks for and optionally exploits a
vulnerability in CM Download Manager plugin for Wordpress. [Mariusz Ziulek]
o [Ncat] [GH#151] [GH#142] New option --no-shutdown prevents Ncat from shutting
down when it reads EOF on stdin. This is the same as traditional netcat's
"-d" option. [Adam Saponara]
o [NSE] [GH#229] Improve parsing in http.lua for multiple Set-Cookie headers in
a single response. [nnposter]
- Python3 specific version for devel/py-jsonschema
jsonschema is an implementation of JSON Schema for Python
- Full support for Draft 3 and Draft 4 of the schema.
- Lazy validation that can iteratively report all validation errors.
- Small and extensible
- Programmatic querying of which properties or items failed validation.
WWW: http://github.com/Julian/jsonschema
- Update PORTVERSION and distinfo for the new release (0.2.1)
- USES: tar:tgz instead of EXTRACT_SUFX
- Regenerate patch while here (portlint)
Changes:
| 0.2.1
* Fixed C89 compatibility issue in Base64
| 0.2.0
* Support for PHP 7
* Added Crypto stream BIO wrapper
* Improved error handling
* Added an integer overflow checking
* Removed Algorithm class and AlogirithmException class
* Introduced a MAC class as a subclass of Hash and parent of HMAC and CMAC
* Added MACException class subclassing HashException
* Fixed HMAC and CMAC implementation and added key param to constructor
* Fixed and tested CCM mode
* Added new error code for failed tag verification (TAG_VERIFY_FAILED)
* Add setTagLength Cipher method replacing length param in getTag
* Removed Rand::egd
* Created a complete API documentation
PR: 204668
Submitted by: Gasol Wu <gasol.wu@gmail.com> (maintainer)
- Python3 specific version of devel/py-vcversioner
You can write a setup.py with no version information specified, and
vcversioner will find a recent, properly-formatted VCS tag and extract a
version from it.
WWW: https://github.com/habnabit/vcversioner
- Python3 version for textproc/py-MarkupSafe
py-MarkupSafe is a python module that implements a XML/HTML/XHTML Markup
safe string.
WWW: https://pypi.python.org/pypi/MarkupSafe/
- Python3 version of devel/py-Jinja2
Jinja is a sandboxed template engine written in pure Python licensed
under the BSD license. It provides a Django-like non-XML syntax and
compiles templates into executable python code. It's basically a
combination of Django templates and python code.
WWW: http://jinja.pocoo.org/
Add working mirror.
Also update file size in distinfo - checksum is not changed
and I dunno why. But with old file size it warns that expected
size was different.
PR: 204491
Submitted by: Walter Schwarzenfeld <w.litter@aon.at>
- update to 1.10
- add YAML option (on by default)
- remove gratuitous word from option descriptions
- USE_PYTHON=concurrent instead of setting EXAMPLESDIR
- alphabetize USE_PYTHON
- discard pkg-message given all options are enabled by default
While here limit python version to 2.x, because it's dependencies
graphics/py-graphviz and math/py-matplotlib failed to configure
with python3.
PR: 204594
Submitted by: John W. O'Brien <john@saltant.com>
Approved by: dikshie@sfc.wide.ad.jp (maintainer)
- Escape literal dot properly in sed(1) code (for REINPLACE_CMD)
- Spell "C-string" correctly in COMMENT and add a missing newline
- Use NULL for pointer in C code (original snippet was for C++ and Bjarne
prefers to avoid macros, per his C++ Style and Technique FAQ)