summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-04-08Import MoarVM-2016.03 from wip.bsiegert7-0/+289
Short for "Metamodel On A Runtime", MoarVM is a virtual machine built especially for Rakudo Perl 6 and the NQP Compiler Toolchain. The primary backend target for the Christmas 2015 release of Perl 6, MoarVM stands out amongst the various Rakudo and NQP compilation targets by: - Running the Perl 6 specification test suite in the least time - Passing more of the Perl 6 specification tests than Rakudo Perl 6 on other backends - Having the lowest memory usage - Having the best startup time - Being fastest to build both NQP and Rakudo - and thus your Perl 6 and NQP programs too! - Being the only backend to support strings at grapheme level
2016-04-08Patch CVE-2016-3959 in Go. There will be a Go 1.6.1 release next week thatbsiegert3-2/+29
fixes this properly.
2016-04-08Removed duplicate PKGCONFIG_OVERRIDE; added py-expat as dependency to fix ↵adam1-5/+5
building
2016-04-08PLIST correction: use LOCALBASE instead of /usr/pkgadam1-3/+3
2016-04-08Added net/ndpi version 1.7.1; net/ntopng version 2.2adam2-2/+6
2016-04-08ntopng is the next generation version of the original ntop, a network trafficadam11-0/+733
probe that shows the network usage, similar to what the popular top Unix command does. ntopng is based on libpcap and it has been written in a portable way in order to virtually run on every Unix platform, MacOSX and on Windows as well. ntopng users can use a a web browser to navigate through ntop (that acts as a web server) traffic information and get a dump of the network status. In the latter case, ntopng can be seen as a simple RMON-like agent with an embedded web interface. The use of: * a web interface. * limited configuration and administration via the web interface. * reduced CPU and memory usage (they vary according to network size and traffic)
2016-04-08nDPI is an open source LGPLv3 library for deep-packet inspection. Based onadam6-0/+77
OpenDPI it includes ntop extensions. We have tried to push them into the OpenDPI source tree but nobody answered emails so we have decided to create our own source tree.
2016-04-08Updated www/py-django to 1.9.5; www/nghttp2 to 1.9.2adam1-1/+3
2016-04-08Changes 1.9.2:adam2-8/+7
This release fixes several stability issues of nghttpx.
2016-04-08Updated databases/py-cassandra-driver to 3.1.1fhajny1-1/+2
2016-04-08Update databases/py-cassandra-driver to 3.1.1.fhajny2-7/+7
- cqlengine: Fix performance issue related to additional "COUNT" queries (PYTHON-522)
2016-04-08Updated lang/nodejs to 5.10.1fhajny1-1/+2
2016-04-08Update lang/nodejs to 5.10.1.fhajny2-7/+7
- http: Enclose IPv6 Host header in square brackets. This will enable proper seperation of the host adress from any port reference - path: Make win32.isAbsolute more consistent
2016-04-08Changes 1.9.5:adam2-9/+7
Made MultiPartParser ignore filenames that normalize to an empty string to fix crash in MemoryFileUploadHandler on specially crafted user input. Fixed a race condition in BaseCache.get_or_set(). It now returns the default value instead of False if there’s an error when trying to add the value to the cache. Fixed data loss on SQLite where DurationField values with fractional seconds could be saved as None. The forms in contrib.auth no longer strip trailing and leading whitespace from the password fields. The change requires users who set their password to something with such whitespace after a site updated to Django 1.9 to reset their password. It provides backwards-compatibility for earlier versions of Django. Fixed a memory leak in the cached template loader. Fixed a regression that caused collectstatic --clear to fail if the storage doesn’t implement path(). Fixed a crash when using a reverse lookup with a subquery when a ForeignKey has a to_field set to something other than the primary key. Fixed a regression in CommonMiddleware that caused spurious warnings in logs on requests missing a trailing slash. Restored the functionality of the admin’s raw_id_fields in list_editable. Fixed a regression with abstract model inheritance and explicit parent links. Fixed a migrations crash on SQLite when renaming the primary key of a model containing a ForeignKey to 'self'. Fixed JSONField inadvertently escaping its contents when displaying values after failed form validation.
2016-04-08Updated textproc/py-lxml to 3.6.0wiz2-3/+3
2016-04-08Update py-lxml to 3.6.0.wiz2-7/+7
3.6.0 (2016-03-17) ================== * GH#189: Static builds honour FTP proxy configurations when downloading the external libs. Patch by Youhei Sakurai. * GH#187: Now supports (only) version 5.x and later of PyPy. Patch by Armin Rigo. * GH#186: Soupparser failed to process entities in Python 3.x. Patch by Duncan Morris. * GH#185: Rare encoding related `TypeError` on import was fixed. Patch by Petr Demin. * GH#181: Direct support for `.rnc` files in `RelaxNG()` if `rnc2rng` is installed. Patch by Dirkjan Ochtman.
2016-04-08Updated www/py-idna to 2.1wiz2-3/+3
2016-04-08Update py-idna to 2.1.wiz3-9/+11
2.1 (2016-03-20) ++++++++++++++++ - Memory consumption optimizations. The library should consume significantly less memory through smarter data structures being used to represent relevant Unicode properties. Many thanks to Shivaram Lingamneni for this patch. - Patches to make library work better with Python 2.6. The core library currently works however the unit testing does not. (Thanks, Robert Buchholz) - Better affix all Unicode codepoint properties to a specific version.
2016-04-08Updated security/py-cryptography to 1.3.1wiz2-3/+3
2016-04-08Update py-cryptography to 1.3.1.wiz3-8/+14
1.3.1 - 2016-03-21 ~~~~~~~~~~~~~~~~~~ * Fixed a bug that caused an ``AttributeError`` when using ``mock`` to patch some ``cryptography`` modules. 1.3 - 2016-03-18 ~~~~~~~~~~~~~~~~ * Added support for padding ANSI X.923 with :class:`~cryptography.hazmat.primitives.padding.ANSIX923`. * Deprecated support for OpenSSL 0.9.8. Support will be removed in ``cryptography`` 1.4. * Added support for the :class:`~cryptography.x509.PolicyConstraints` X.509 extension including both parsing and generation using :class:`~cryptography.x509.CertificateBuilder` and :class:`~cryptography.x509.CertificateSigningRequestBuilder`. * Added :attr:`~cryptography.x509.CertificateSigningRequest.is_signature_valid` to :class:`~cryptography.x509.CertificateSigningRequest`. * Fixed an intermittent ``AssertionError`` when performing an RSA decryption on an invalid ciphertext, ``ValueError`` is now correctly raised in all cases. * Added :meth:`~cryptography.x509.AuthorityKeyIdentifier.from_issuer_subject_key_identifier`.
2016-04-08Updated devel/py-click to 6.4wiz2-3/+3
2016-04-08Update py-click to 6.4:wiz2-7/+7
Version 6.4 ----------- (bugfix release; released on March 24th 2016) - Fix bug in bash completion where click would discard one or more trailing arguments. See #471.
2016-04-08Updated devel/py-atomicwrites to 1.0.0wiz2-3/+3
2016-04-08Update py-atomicwrites to 1.0.0.wiz2-7/+7
Changes not found.
2016-04-08Updated devel/p5-Package-DeprecationManager to 0.16wiz2-3/+3
2016-04-08Update Package-DeprecationManager to 0.16.wiz2-8/+9
0.16 2016-03-21 - The subs installed into the caller are now named with Sub::Name. This makes these subs appear to be part of the caller, as opposed to an import, which is what we want, since each installed sub is constructed uniquely for a given package.
2016-04-08Updated net/p5-Socket6 to 0.27wiz2-3/+3
2016-04-08Update p5-Socket6 to 0.27:wiz2-8/+7
2016-03-23 Hajimu UMEMOTO <ume@mahoroba.org> * Socket6.pm: Bump version number to 0.27. 2016-03-22 Hajimu UMEMOTO <ume@mahoroba.org> * t/use.t: We still supports an environment where AF_INET6 is not defined. 2016-03-17 Hajimu UMEMOTO <ume@mahoroba.org> * Socket6.pm: Bump version number to 0.26. * Makefile.PL: Make Socket6 buildable on Android. [cpan #98181] Submitted by: fraserbn [...] gmail.com * system inet_ntop broken in darwin. [cpan #113005] Submitted by: RURBAN [...] cpan.org 2015-12-05 Hajimu UMEMOTO <ume@mahoroba.org> * gailookup.pl.in: Add -r option to do reverse lookup. 2015-11-25 Hajimu UMEMOTO <ume@mahoroba.org> * gailookup.pl.in: Add awareness of AI_ALL and AI_V4MAPPED. * gailookup.pl.in: Add -P option to ease to specify port number.
2016-04-08Updated devel/p5-Scalar-List-Utils to 1.45wiz2-3/+3
2016-04-08Updated p5-Scalar-List-Utils to 1.45wiz2-7/+7
1.45 -- 2016/03/25 16:09:40 [CHANGES] * Renamed existing uniq() to uniqstr() * Canonicalise undef to {empty string,zero} in uniq{str,num}() * Add a new uniq() with more DWIMish semantics around undef [BUGFIXES] * Fix uses of GET magic by the uniq*() family of functions. GET magic is now always invoked exactly once if it exists. 1.44 -- 2016/03/17 23:08:46 [CHANGES] * Added List::Util::uniq() and uniqnum() (with thanks to randir and ilmari for assistance writing code and tests)
2016-04-08Updated devel/p5-Params-Validate to 1.23wiz2-3/+3
2016-04-08Update p5-Params-Validate to 1.23:wiz2-7/+7
1.23 2016-03-26 - Fixed some Perl stack corruption bugs. Based on a proposed PR from Tony Cook plus some additional changes. GH #8. - Fixed tests with Carp 1.01 (shipped with Perl 5.8.3). Patch by Andreas Koenig. RT #113318.
2016-04-08Updated security/p5-IO-Socket-SSL to 2.025wiz2-3/+3
2016-04-08Update p5-IO-Socket-SSL to 2.025.wiz2-7/+7
2.025 2016/04/04 - Resolved memleak if SSL_crl_file was used: RT#113257, RT#113530 Thanks to avi[DOT]maslati[AT]forescout[DOT]com and mark[DOT]kurman[AT]gmail[DOT]com for reporting the problem
2016-04-08Updated www/p5-HTML-Escape to 1.10wiz2-3/+3
2016-04-08Update p5-HTML-Escape to 1.10:wiz2-8/+7
1.10 2016-03-15T03:16:39Z - Performance improvement. Aaron Crane <arc@cpan.org>
2016-04-08Updated time/p5-DateTime-TimeZone to 1.97wiz2-3/+3
2016-04-08Update p5-DateTime-TimeZone to 1.97.wiz2-7/+7
1.97 2016-03-23 - This release is based on version 2016c of the Olson database. This release includes contemporary changes for Azerbaijan and Chile. 1.96 2016-03-15 - This release is based on version 2016b of the Olson database. This release includes contemporary changes for Russia, Haiti, and Palestine.
2016-04-08Updated time/p5-DateTime-Locale to 1.03wiz2-3/+3
2016-04-08Update p5-DateTime-Locale to 1.03:wiz2-7/+7
1.03 2016-03-25 - Rebuilt all locale data with CLDR 29, released on 2016-03-19.
2016-04-08Updated devel/global to 6.5.4wiz2-3/+3
2016-04-08Update global to 6.5.4.wiz3-13/+14
Version 6.5.4 - Mar 27 2016 This is a bug fix release. [CHANGES] Changed: o gtags.conf: The entries which include '.xml' were commented out, because they require libxml.a. If you use them, please uncomment them. [FIXED BUGS] Serious bug: o universal-ctags.la: Universal ctags plug-in parser did not work on almost files. Now it works. $ echo 'void a() {}' >a.inl $ echo 'void b() {}' >b.cpp $ gtags --gtagslabel=new-ctags $ global -x '.*' a 1 a.inl void a() {} (b.cpp is ignored.) Version 6.5.3 - Mar 18 2016 [CHANGES] New facilities: o Added new plug-in parser 'universal-ctags.la'. o gtags.conf: - Added new entry 'universal-ctags'. - Added new variable 'ctagscom'. You can overwrite the path of ctags(1) dynamically for exuberant-ctags.la, universal-ctags.la and pygments-parser.la. Changed: o gtags.conf: Added the following patterns to the skip list. '*.o,*.a,*.so,*.lo,*.zip,*.gz,*.bz2,*.xz,*.lzh,*.Z,*.tgz,*.min.js,*min.css' o gtags: Added some explanations for the --explain option. [FIXED BUGS] o global: Global generated incorrect path with the --color option. Now, it works well. [bad case] +- GTAGS +- hi/ |- foo.cpp +- what/ $ cd hi/what $ global -P hi/foo.cpp --color foo.cpp # It should be '../foo.cpp'. o global: Global aborted in obstack_free() in some cases. Now it works well. o htags: Htags ended abnormally when there is a file which includes single quote characters in its file name. Now, it works.
2016-04-08Updated time/p5-DateTime to 1.2600wiz2-3/+3
2016-04-08Update p5-DateTime to 1.2600:wiz2-8/+7
1.26 2016-03-21 - Switched from Module::Build to ExtUtils::MakeMaker. Implementation by Karen Etheridge. GitHub #13.
2016-04-08Updated archivers/p5-Archive-Zip to 1.57wiz2-3/+3
2016-04-08Update p5-Archive-Zip to 1.57:wiz2-7/+7
1.57 Fri 1 Apr 2016 - RT# 106548,106089,105330,111541 [github/ozcoder]
2016-04-08Updated devel/p5-Sub-Name to 0.15wiz2-3/+3
2016-04-08Update p5-Sub-Name to 0.15:wiz2-8/+7
0.15 2016-03-15 22:17:38Z - fix uninitialized warning in test on perls < 5.8.6 (RT#104510) - repository moved to the github p5sagit organization (the primary is on shadowcat, mirrored to github)
2016-04-08Updated audio/musicpd to 0.19.14wiz2-3/+3
2016-04-08Update musicpd to 0.19.14:wiz2-8/+7
ver 0.19.14 (2016/03/18) * decoder - dsdiff: fix off-by-one buffer overflow - opus: limit tag size to 64 kB * archive - iso9660: fix buffer overflow * fix quadratic runtime bug in the tag pool * fix build failures on non-glibc builds due to constexpr Mutex