Commit graph

286057 commits

Author SHA1 Message Date
wiz
96597c637e textproc/gtkspell3: import gtkspell3-3.0.9
GtkSpell provides word-processor-style highlighting and replacement
of misspelled words in a GtkTextView widget. Right-clicking a
misspelled word pops up a menu of suggested replacements.

GtkSpell is a library and is mostly of interest to GTK programmers.

This is major version 3 of the library, which is API incompatible
to version 2.
2018-08-25 12:03:21 +00:00
wiz
c554dd4330 gtkspell: mention that this is the legacy version for GTK+2 2018-08-25 11:57:44 +00:00
manu
629a6705a7 Updated www/ap2-jk to 1.2.43
The update from 1.2.37 works around  an Apache cstratup crash on NetBSD 8.0

This has first been committed to pkgsrc-2018Q2 by mistake. Here is it on
HEAD now after a pkgsrc-2018Q2 change rollback;

Complete Changelog

1.2.43
61733: LB: Propagate load factor changes applied by the status worker to a load balancer sub worker correctly to all processes. Based on a patch provided by Jonathan Oddy. (rjung)
fix     ISAPI: Align the make files for 32-bit and 64-bit builds. (markt)
update  Update config.guess and config.sub from http://git.savannah.gnu.org/cgit/config.git. (rjung)
update  Update PCRE bundled with the ISAPI redirector to 8.41. (rjung)
fix     Update the ISAPI redirector installation documentation to reflect the currently supported versions of Windows. (markt)
fix     Align the normalization performed by the ISAPI redirector with that implemented by Tomcat. (markt)

1.2.42
fix     Status: Fix displayed number of bytes read from and written to the backend when an AJP worker is used without a load balancer worker. (rjung)
fix     Apache: Don't try to read remaining request body parts during clean up if reading the request body from the client already failed during earlier processing phases. (rjung)
fix     57485: Apache: Propagate errors reading the request body from the client to mod_jk so Tomcat sees an error rather than a truncated body. (markt)
fix     57836: ISAPI: Empty REMOTE_USER should not be translated to "". (rjung)
fix     58249: Add a note the the documentation that max_packet_size will be aligned to the next multiple of 1024 if a value is specified that is not a multiple of 1024. (markt)
update  58309: ISAPI: Update bundled pcre from version 5.0 to 8.38. (rjung)
fix     58286: Fix crash in mod_jk and in the ISAPI Redirector. The crash only happens on Windows when retrieving the jk-status for the HTML format (which is the default format). This regression was
introduced by the fix to 54177. (rjung)
fix     58285: Don't use GCC atomics on platforms, for which GCC doesn't provide an atomics implementation. This regression was introduced by the fix to 44454 and 56703. (rjung)
fix     58425: Fix regression in 1.4.41 that prevented AJP 1.2 workers from initialising. Note that the AJP 1.2 protocol is deprecated. Patch provided by yagisita. (markt)
fix     58504: If a background thread is used to perform worker maintenance, ensure that maintenance runs are not skipped. Patch provided by Hiroto Shimizu. (markt)
fix     58608: ISAPI: Add a new registry option "flush_packets" that allows the flushing behaviour of IIS7+ to be controlled. The default is not to flush. Setting the option to "true" with cause IIS
to write data to the client as each AJP packet is received. (markt)
fix     58813: ISAPI: Correctly release a mutex allowing the plugin to complete initialization. Prior to this fix, the incomplete initialization was causing a hang on shutdown. Patch provided by
Matthew Reiter. (markt)
fix     58895: Correct an off-by-one error in the log messages for the number of attempts made to communicate with the backend server. Patch provided by Hiroto Shimizu. (markt)
fix     59164: Fix crash on first connection if a host name is specified for the worker that cannot be resolved to an IP address. (markt)
fix     59184: HTTPD: Avoid segmentation fault if mod_jk is configured with an invalid value for JkShmFile. This causes the server startup to fail. (markt)
fix     Minor code clean-up and optimization. (markt)

1.2.40
fix     AJP, LB: Reduce lock contention during maintenance function. This was observable when using a big number of AJP13 and LB workers, especially in combination with the Apache httpd prefork MPM.
(rjung)
fix     57060: Allow building from outside of source tree. Patch contributed by Petr Sumbera. (rjung)
fix     56703: Status: Fix inflated counter for current number of backend connections especially when a connection timeout occurred on the backend. (rjung)
fix     56661: Fix Servlet API getLocalAddr(). Works for Tomcat 6.0.42, 7.0.55 and 8.0.11 and Apache and ISAPI plugins. (rjung)
update  Status: Log old and new values when changing worker attributes. (rjung)
fix     56667: Status: Fix log message when changing activation state of all members. (rjung)
fix     56565: Fix IPV6 address resolve on non-dual network stacks. (mturk)
fix     50511: Reduce log level for "OPTIONS *" requests from warning to debug. (rjung)
fix     Apache: Copy log notes instead of using references to prevent access to memory from closed pool. (rjung)
add     Add option to control handling of multiple adjacent slashes in mount and unmount. New default is collapsing the slashes only in unmount. Configuration is done via new JkOption for Apache
("CollapseSlashesAll", "CollapseSlashesNone" or "CollapseSlashesUnmount") and via property "collapse_slashes" for IIS (values "all", "none", "unmount"). This is the fix for CVE-2014-8111. (rjung)
add     Add more checks for shared memory allocation. (rjung)
add     56869: Status: Add maximum number of open backend connections to status worker. Patch contributed by Martin Knoblauch. (rjung)
add     56770: AJP: Add worker name to all log messages. Patch contributed by Martin Knoblauch. (rjung)
fix     50186: Docs: Clarify relation between "connection_pool_timeout" and "keepAliveTimeout" or "connectionTimeout" in the Tomcat AJP connector configuration. (rjung)
fix     52334: LB: Calculate worker recovery time based on last recovery attempt time instead of original error time after the first recovery attempt. (rjung)
fix     54596 part 1: IIS: Fix missing last character when parsing relative file names with no ".." directory components from configuration. (rjung)
fix     54596 part 2: IIS: Fix using relative file names in config with ".." path segments that go up the directory hierarchy higher than the starting point of the relative file name. (rjung)
fix     Status: Add logging if status worker output was dropped due to insufficient buffer size. (rjung)
fix     Reduce log buffer from 8KB to 1KB. Add logging in case of failed logging and add trailing "..." to lines which were likely truncated. (rjung)
update  Replace fixed allocation of 32 entries for fail_on_status by dynamic allocation. (rjung)
add     Enforce implementation restriction on maximal length "60" of worker attributes "name", "host", "route", "domain", "redirect", "session_cookie", "session_path" and "set_session_cookie". Checks
were added to configuration file processing and configuration updates via the status worker. (rjung)
add     52483: Apache: Add debug logging for result of JkOptions configuration processing. (rjung)
fix     54177: Status: Use numeric time stamps instead of textual ones to avoid non-well-formed XML output. Textual timestamps are formatted according to locale settings and reencoding them to UTF-8
would be cumbersome. (rjung)
fix     56618: Status: Use percent decoding when reading query string parameters. For example this fixes editing IPv6 addresses via the status worker if the client encodes ":" as "%3A". Patch
contributed by Christopher Schultz. (rjung)
fix     56452: Fix crash in debug logging for IPv6 adresses. Patch contributed by Christopher Schultz. (rjung)
fix     34526: Apache: Improve compatibility with mod_deflate request body inflation. An automatic detection of mod_deflate inflation is not implemented. Use the new Apache environment variable
JK_IGNORE_CL instead, to let mod_jk ignore an existing Content-Length request header. (rjung)
update  44454: LB: Add warning to docs about problems with "busyness" load balancing method. (rjung)
fix     44454: Improve busy counter by using atomics. (rjung)
fix     56703: Status: Improve connected counter. Use atomics and for mod_jk (Apache) currectly count down connections closed by child processes that are stopped. (rjung)
fix     44571: Ensure that we return with status 503 if we can not get and endpoint for a worker. (rjung)
fix     Apache: Improve log handling during graceful or normal restart. (rjung)
fix     Don't update last access time of worker connections during optional checking of idle connections using CPing. Updating the time stamp breaks closing idle connections. (rjung)
fix     Adjust linger parameters used during connection shutdown. (rjung)
fix     Fix annoying redefine warnings for the autoconf PACKAGE defines during configure based builds. (rjung)
fix     Status: Use multi-line table headers and fix invalid xml output. (rjung)
fix     44571: Implement an optional limit on concurrent requests allowed for a worker (attribute "busy_limit"). Original patch contributed by zealot0630 at gmail dot com. (rjung)
fix     Correct log message "all endpoints are disconnected" to "no usable connection found, will create a new one". Tone done from info log level to debug for the common case. (rjung)
add     57536: AJP: Allow to configure connection source address. This should only be used on multi-homed hosts. The feature is experimental. (rjung)
add     57540: AJP: Forward name of SSL protocol used for handling the request (SSLv3, TLSv1, TLSv1.1, TLSv1.2). (rjung)

1.2.39
Fix forwarding of chunked requests, which is broken in version 1.2.39. (rjung)
fix     56352: Fix regression in memory release. (mturk)
fix     Fix status worker display of worker IP address after name or port was changed. (rjung)
update  56297: Improve key hash function. Copied from APR. (rjung)
fix     55683: Remove quotes from quoted session cookies. (rjung)
fix     53542: ISAPI: Fix grammar in 503 error page. (rjung)
fix     55696: Crash on Mac OS X 10.9 during config parsing. (rjung)

1.2.38
update  Deprecate nt_service from Apache Tomcat Connectors. (mturk)
fix     56133: Fix possible crash when a request fails during request body transfer to the back end and reply_timeout was set. Patch contributed by Hiroto Shimizu. (rjung)
fix     Fix status worker not updating parameters for all members. (mturk)
fix     55853: HTTPD: Use the correct API for setting Content-Length. Patch contributed by areese yahoo-inc.com. (rjung)
add     Add IPV6 support for connection to webserver. New directive prefer_ipv6 has been added to control the hostname resolution and preserve backward compatibility. (mturk)
add     Add --disable-sock-cloexec to configure to disable use of SOCK_CLOEXEC (using FD_CLOEXEC + fnctl instead) so built modules will work with Linux kernels prior to 2.6.27. (timw)
update  Clean up config file parsing. Worker names are now restricted to 60 bytes. (rjung)
update  Allow to set a stickyness cookie in case a web framework breaks Tomcat's adding of the routing ID to the end of the JSESSIONID cookie. (rjung)
update  Use max_packet_size also for request body forwarding. (rjung)
update  Apache 2.4: By default forward logical client address as provided by mod_remoteip. When setting JkOptions ForwardPhysicalAddress mod_jk will instead forward the physical peer address. (rjung)
update  Minor documentation improvements. (rjung)
2018-08-25 01:57:43 +00:00
adam
db561c3a88 Updated www/nginx-devel, www/py-pylint-django 2018-08-24 18:31:52 +00:00
adam
3b11dffc87 py-pylint-django: updated to 2.0.1
Version 2.0.1:
Enable testing with Django 2.1
Add test for Model.objects.get_or_create().
Add test for objects.exclude().
Fix Instance of 'Model' has no 'id' member (no-member), fix Class 'UserCreationForm' has no 'declared_fields' member.
Fix for Instance of 'ManyToManyField' has no 'add' member.
Add test & fix for unused arguments on class based views
2018-08-24 18:31:06 +00:00
adam
e347a3d5df nginx-devel: updated to 1.15.2
Changes with nginx 1.15.2:
*) Feature: the $ssl_preread_protocol variable in the
   ngx_stream_ssl_preread_module.
*) Feature: now when using the "reset_timedout_connection" directive
   nginx will reset connections being closed with the 444 code.
*) Change: a logging level of the "http request", "https proxy request",
   "unsupported protocol", and "version too low" SSL errors has been
   lowered from "crit" to "info".
*) Bugfix: DNS requests were not resent if initial sending of a request
   failed.
*) Bugfix: the "reuseport" parameter of the "listen" directive was
   ignored if the number of worker processes was specified after the
   "listen" directive.
*) Bugfix: when using OpenSSL 1.1.0 or newer it was not possible to
   switch off "ssl_prefer_server_ciphers" in a virtual server if it was
   switched on in the default server.
*) Bugfix: SSL session reuse with upstream servers did not work with the
   TLS 1.3 protocol.

Changes with nginx 1.15.1:
*) Feature: the "random" directive inside the "upstream" block.
*) Feature: improved performance when using the "hash" and "ip_hash"
   directives with the "zone" directive.
*) Feature: the "reuseport" parameter of the "listen" directive now uses
   SO_REUSEPORT_LB on FreeBSD 12.
*) Bugfix: HTTP/2 server push did not work if SSL was terminated by a
   proxy server in front of nginx.
*) Bugfix: the "tcp_nopush" directive was always used on backend
   connections.
*) Bugfix: sending a disk-buffered request body to a gRPC backend might
   fail.

Changes with nginx 1.15.0:
*) Change: the "ssl" directive is deprecated; the "ssl" parameter of the
   "listen" directive should be used instead.
*) Change: now nginx detects missing SSL certificates during
   configuration testing when using the "ssl" parameter of the "listen"
   directive.
*) Feature: now the stream module can handle multiple incoming UDP
   datagrams from a client within a single session.
*) Bugfix: it was possible to specify an incorrect response code in the
   "proxy_cache_valid" directive.
*) Bugfix: nginx could not be built by gcc 8.1.
*) Bugfix: logging to syslog stopped on local IP address changes.
*) Bugfix: nginx could not be built by clang with CUDA SDK installed;
   the bug had appeared in 1.13.8.
*) Bugfix: "getsockopt(TCP_FASTOPEN) ... failed" messages might appear
   in logs during binary upgrade when using unix domain listen sockets
   on FreeBSD.
*) Bugfix: nginx could not be built on Fedora 28 Linux.
*) Bugfix: request processing rate might exceed configured rate when
   using the "limit_req" directive.
*) Bugfix: in handling of client addresses when using unix domain listen
   sockets to work with datagrams on Linux.
*) Bugfix: in memory allocation error handling.
2018-08-24 18:27:07 +00:00
manu
40ae18b393 Updated www/ap2-jk to 1.2.43
The update from 1.2.37 works around  an Apache cstratup crash on NetBSD 8.0

Complete Changelog

1.2.43
61733: LB: Propagate load factor changes applied by the status worker to a load balancer sub worker correctly to all processes. Based on a patch provided by Jonathan Oddy. (rjung)
fix	ISAPI: Align the make files for 32-bit and 64-bit builds. (markt)
update	Update config.guess and config.sub from http://git.savannah.gnu.org/cgit/config.git. (rjung)
update	Update PCRE bundled with the ISAPI redirector to 8.41. (rjung)
fix	Update the ISAPI redirector installation documentation to reflect the currently supported versions of Windows. (markt)
fix	Align the normalization performed by the ISAPI redirector with that implemented by Tomcat. (markt)

1.2.42
fix	Status: Fix displayed number of bytes read from and written to the backend when an AJP worker is used without a load balancer worker. (rjung)
fix	Apache: Don't try to read remaining request body parts during clean up if reading the request body from the client already failed during earlier processing phases. (rjung)
fix	57485: Apache: Propagate errors reading the request body from the client to mod_jk so Tomcat sees an error rather than a truncated body. (markt)
fix	57836: ISAPI: Empty REMOTE_USER should not be translated to "". (rjung)
fix	58249: Add a note the the documentation that max_packet_size will be aligned to the next multiple of 1024 if a value is specified that is not a multiple of 1024. (markt)
update	58309: ISAPI: Update bundled pcre from version 5.0 to 8.38. (rjung)
fix	58286: Fix crash in mod_jk and in the ISAPI Redirector. The crash only happens on Windows when retrieving the jk-status for the HTML format (which is the default format). This regression was introduced by the fix to 54177. (rjung)
fix	58285: Don't use GCC atomics on platforms, for which GCC doesn't provide an atomics implementation. This regression was introduced by the fix to 44454 and 56703. (rjung)
fix	58425: Fix regression in 1.4.41 that prevented AJP 1.2 workers from initialising. Note that the AJP 1.2 protocol is deprecated. Patch provided by yagisita. (markt)
fix	58504: If a background thread is used to perform worker maintenance, ensure that maintenance runs are not skipped. Patch provided by Hiroto Shimizu. (markt)
fix	58608: ISAPI: Add a new registry option "flush_packets" that allows the flushing behaviour of IIS7+ to be controlled. The default is not to flush. Setting the option to "true" with cause IIS to write data to the client as each AJP packet is received. (markt)
fix	58813: ISAPI: Correctly release a mutex allowing the plugin to complete initialization. Prior to this fix, the incomplete initialization was causing a hang on shutdown. Patch provided by Matthew Reiter. (markt)
fix	58895: Correct an off-by-one error in the log messages for the number of attempts made to communicate with the backend server. Patch provided by Hiroto Shimizu. (markt)
fix	59164: Fix crash on first connection if a host name is specified for the worker that cannot be resolved to an IP address. (markt)
fix	59184: HTTPD: Avoid segmentation fault if mod_jk is configured with an invalid value for JkShmFile. This causes the server startup to fail. (markt)
fix	Minor code clean-up and optimization. (markt)

1.2.40
fix	AJP, LB: Reduce lock contention during maintenance function. This was observable when using a big number of AJP13 and LB workers, especially in combination with the Apache httpd prefork MPM. (rjung)
fix	57060: Allow building from outside of source tree. Patch contributed by Petr Sumbera. (rjung)
fix	56703: Status: Fix inflated counter for current number of backend connections especially when a connection timeout occurred on the backend. (rjung)
fix	56661: Fix Servlet API getLocalAddr(). Works for Tomcat 6.0.42, 7.0.55 and 8.0.11 and Apache and ISAPI plugins. (rjung)
update	Status: Log old and new values when changing worker attributes. (rjung)
fix	56667: Status: Fix log message when changing activation state of all members. (rjung)
fix	56565: Fix IPV6 address resolve on non-dual network stacks. (mturk)
fix	50511: Reduce log level for "OPTIONS *" requests from warning to debug. (rjung)
fix	Apache: Copy log notes instead of using references to prevent access to memory from closed pool. (rjung)
add	Add option to control handling of multiple adjacent slashes in mount and unmount. New default is collapsing the slashes only in unmount. Configuration is done via new JkOption for Apache ("CollapseSlashesAll", "CollapseSlashesNone" or "CollapseSlashesUnmount") and via property "collapse_slashes" for IIS (values "all", "none", "unmount"). This is the fix for CVE-2014-8111. (rjung)
add	Add more checks for shared memory allocation. (rjung)
add	56869: Status: Add maximum number of open backend connections to status worker. Patch contributed by Martin Knoblauch. (rjung)
add	56770: AJP: Add worker name to all log messages. Patch contributed by Martin Knoblauch. (rjung)
fix	50186: Docs: Clarify relation between "connection_pool_timeout" and "keepAliveTimeout" or "connectionTimeout" in the Tomcat AJP connector configuration. (rjung)
fix	52334: LB: Calculate worker recovery time based on last recovery attempt time instead of original error time after the first recovery attempt. (rjung)
fix	54596 part 1: IIS: Fix missing last character when parsing relative file names with no ".." directory components from configuration. (rjung)
fix	54596 part 2: IIS: Fix using relative file names in config with ".." path segments that go up the directory hierarchy higher than the starting point of the relative file name. (rjung)
fix	Status: Add logging if status worker output was dropped due to insufficient buffer size. (rjung)
fix	Reduce log buffer from 8KB to 1KB. Add logging in case of failed logging and add trailing "..." to lines which were likely truncated. (rjung)
update	Replace fixed allocation of 32 entries for fail_on_status by dynamic allocation. (rjung)
add	Enforce implementation restriction on maximal length "60" of worker attributes "name", "host", "route", "domain", "redirect", "session_cookie", "session_path" and "set_session_cookie". Checks were added to configuration file processing and configuration updates via the status worker. (rjung)
add	52483: Apache: Add debug logging for result of JkOptions configuration processing. (rjung)
fix	54177: Status: Use numeric time stamps instead of textual ones to avoid non-well-formed XML output. Textual timestamps are formatted according to locale settings and reencoding them to UTF-8 would be cumbersome. (rjung)
fix	56618: Status: Use percent decoding when reading query string parameters. For example this fixes editing IPv6 addresses via the status worker if the client encodes ":" as "%3A". Patch contributed by Christopher Schultz. (rjung)
fix	56452: Fix crash in debug logging for IPv6 adresses. Patch contributed by Christopher Schultz. (rjung)
fix	34526: Apache: Improve compatibility with mod_deflate request body inflation. An automatic detection of mod_deflate inflation is not implemented. Use the new Apache environment variable JK_IGNORE_CL instead, to let mod_jk ignore an existing Content-Length request header. (rjung)
update	44454: LB: Add warning to docs about problems with "busyness" load balancing method. (rjung)
fix	44454: Improve busy counter by using atomics. (rjung)
fix	56703: Status: Improve connected counter. Use atomics and for mod_jk (Apache) currectly count down connections closed by child processes that are stopped. (rjung)
fix	44571: Ensure that we return with status 503 if we can not get and endpoint for a worker. (rjung)
fix	Apache: Improve log handling during graceful or normal restart. (rjung)
fix	Don't update last access time of worker connections during optional checking of idle connections using CPing. Updating the time stamp breaks closing idle connections. (rjung)
fix	Adjust linger parameters used during connection shutdown. (rjung)
fix	Fix annoying redefine warnings for the autoconf PACKAGE defines during configure based builds. (rjung)
fix	Status: Use multi-line table headers and fix invalid xml output. (rjung)
fix	44571: Implement an optional limit on concurrent requests allowed for a worker (attribute "busy_limit"). Original patch contributed by zealot0630 at gmail dot com. (rjung)
fix	Correct log message "all endpoints are disconnected" to "no usable connection found, will create a new one". Tone done from info log level to debug for the common case. (rjung)
add	57536: AJP: Allow to configure connection source address. This should only be used on multi-homed hosts. The feature is experimental. (rjung)
add	57540: AJP: Forward name of SSL protocol used for handling the request (SSLv3, TLSv1, TLSv1.1, TLSv1.2). (rjung)

1.2.39
Fix forwarding of chunked requests, which is broken in version 1.2.39. (rjung)
fix	56352: Fix regression in memory release. (mturk)
fix	Fix status worker display of worker IP address after name or port was changed. (rjung)
update	56297: Improve key hash function. Copied from APR. (rjung)
fix	55683: Remove quotes from quoted session cookies. (rjung)
fix	53542: ISAPI: Fix grammar in 503 error page. (rjung)
fix	55696: Crash on Mac OS X 10.9 during config parsing. (rjung)

1.2.38
update	Deprecate nt_service from Apache Tomcat Connectors. (mturk)
fix	56133: Fix possible crash when a request fails during request body transfer to the back end and reply_timeout was set. Patch contributed by Hiroto Shimizu. (rjung)
fix	Fix status worker not updating parameters for all members. (mturk)
fix	55853: HTTPD: Use the correct API for setting Content-Length. Patch contributed by areese yahoo-inc.com. (rjung)
add	Add IPV6 support for connection to webserver. New directive prefer_ipv6 has been added to control the hostname resolution and preserve backward compatibility. (mturk)
add	Add --disable-sock-cloexec to configure to disable use of SOCK_CLOEXEC (using FD_CLOEXEC + fnctl instead) so built modules will work with Linux kernels prior to 2.6.27. (timw)
update	Clean up config file parsing. Worker names are now restricted to 60 bytes. (rjung)
update	Allow to set a stickyness cookie in case a web framework breaks Tomcat's adding of the routing ID to the end of the JSESSIONID cookie. (rjung)
update	Use max_packet_size also for request body forwarding. (rjung)
update	Apache 2.4: By default forward logical client address as provided by mod_remoteip. When setting JkOptions ForwardPhysicalAddress mod_jk will instead forward the physical peer address. (rjung)
update	Minor documentation improvements. (rjung)
2018-08-24 11:32:02 +00:00
leot
6914dd37d2 doc: Updated net/hub to 2.5.1 2018-08-24 11:30:05 +00:00
leot
610b7de0f1 hub: Update net/hub to 2.5.1
Changes:
2.5.1
-----
* `hub issue create`: ignore the `.github/ISSUE_TEMPLATE` directory instead of
  crashing
* `hub pull-request`: avoid re-requesting reviewers in case of CODEOWNERS
* `hub ci-status`: handle cases when Checks API is unavailable, like older
  GitHub Enterprise
* Handle HTTP 422 message format from server response
* Ignore crash for malformed `~/.config/hub` file
* Clarify `hub init -g` documentation that it doesn't imply `hub create`
* `hub clone`: add more documentation about git protocol used
2018-08-24 11:29:35 +00:00
adam
4f4bcf3d70 Updated devel/msgpack 2018-08-24 09:52:01 +00:00
adam
d53603df19 msgpack: updated to 3.1.0
version 3.1.0
* Improve documents
* Add fuzzer support
* Fix msgpack::object union member access bug
* Improve cross platform configuration
* Fix out of range dereference bug of EXT
* Add timestamp support. std::chrono::system_clock::time_point is mapped to TIMESTAMP
* Add minimal timestamp support for C. The type msgpack_timestamp and the function msgpack_object_to_timestamp() are introduced
* Improve MSGPACK_DEFINE family name confliction probability
* Add no static-library build option (BUILD_SHARED_LIBS=ON)
* Add header only cmake target
* Add std::byte adaptor
* Remove some warnings
2018-08-24 09:51:22 +00:00
wiz
f204203d28 doc: Updated textproc/p5-XML-Parser-Lite to 0.722 2018-08-24 09:37:02 +00:00
wiz
f9c402b335 p5-XML-Parser-Lite: update to 0.722.
0.722 2018-08-19 PHRED
    - Remove unnecessary tests [github/paultcochrane for all]
    - Fix link to dist repo
    - Added continuous integration configurations
    - Minor fixes and cosmetic changes to make code adhere better to current
      Perl best practices
    - Documentation fixes
2018-08-24 09:36:54 +00:00
wiz
253afb1f83 doc: Updated textproc/p5-Text-Diff-HTML to 0.08 2018-08-24 09:36:00 +00:00
wiz
9d1595b2ee p5-Text-Diff-HTML: update to 0.08.
0.08  2018-08-21T03:21:47
      - Update project metadata: The Perl Shop is now project
        maintainer, distribution homepage is now on MetaCPAN, and the
        project now includes an appropriate LICENSE file.
2018-08-24 09:35:51 +00:00
wiz
aed921f26a doc: Updated textproc/p5-Lingua-EN-Sentence to 0.31 2018-08-24 09:34:38 +00:00
wiz
6745f3f64d p5-Lingua-EN-Sentence: update to 0.31.
0.31 Aug 19 2018
    Declared min version of Perl. Fix for RT bug #124686
2018-08-24 09:34:30 +00:00
wiz
f51783890c doc: Updated devel/p5-Term-Size to 0.209 2018-08-24 09:31:31 +00:00
wiz
1ee9bf37e1 p5-Term-Size: update to 0.209.
0.209 2018-08-21  Term-Size

    - Tweak documentation
    - Promote to a stable release

0.208 2018-08-20  Term-Size ( TRIAL VERSION )

    - use PerlIO instead of FILE* RT#38594
    - On error, Term::Size functions now return undef
      in scalar context, or an empty list on list context
      RT#76292
2018-08-24 09:31:22 +00:00
wiz
6ad6442c42 doc: Updated devel/p5-Module-CoreList to 5.20180820 2018-08-24 09:30:32 +00:00
wiz
be1d6e79d6 p5-Module-CoreList: update to 5.20180820.
5.20180820
  - Updated for v5.29.2
2018-08-24 09:30:24 +00:00
wiz
d6fe7b6cb2 doc: Updated devel/p5-Log-Dispatch to 2.68 2018-08-24 09:29:27 +00:00
wiz
7a525edf8d p5-Log-Dispatch: update to 2.68.
2.68     2018-08-21

- Speedups to the internals to avoid re-validating the same sets of parameters
  repeatedly. Based on a PR #54 from Sergey Leschenko.
2018-08-24 09:29:19 +00:00
wiz
ec6b29cfdb doc: Updated devel/p5-Git-CPAN-Patch to 2.3.3 2018-08-24 09:26:29 +00:00
wiz
47ad7ce665 p5-Git-CPAN-Patch: update to 2.3.3.
Use TEST_DEPENDS.

2.3.3 2018-08-21
  [ DOCUMENTATION ]
    - Fix sendpatch typo in POD. (GH#36, Racke)

  [ MISC ]
    - Use native signatures instead of Method::Signatures::Simple, which
      also mean minimal perl version is now 5.20.0.

  [ STATISTICS ]
    - code churn: 16 files changed, 105 insertions(+), 75 deletions(-)
2018-08-24 09:26:20 +00:00
wiz
e5a5de9e14 doc: Updated devel/p5-CPAN-Perl-Releases to 3.74 2018-08-24 06:12:36 +00:00
wiz
966182d922 p5-CPAN-Perl-Releases: update to 3.74.
Updated for v5.29.2
2018-08-24 06:12:27 +00:00
wiz
46d8793d85 doc: Updated converters/p5-Cpanel-JSON-XS to 4.05 2018-08-24 06:11:50 +00:00
wiz
17f8ff29dc p5-Cpanel-JSON-XS: update to 4.05.
4.05 2018-08-19 (rurban)
        - Set decoded type (PR #115 by Pali)
        - Add json_type_weaken (PR #114 by Pali)
        - Fix tests for 5.6 (rurban, pali)
2018-08-24 06:11:41 +00:00
wiz
f675058a1b doc: Updated archivers/p5-Archive-Zip to 1.62 2018-08-24 06:10:27 +00:00
wiz
f07962f0e5 p5-Archive-Zip: update to 1.62.
Use TEST_DEPENDS

1.62 Sun 19 Aug 2018
    - Add link-samename.zip to MANIFEST
2018-08-24 06:10:19 +00:00
kamil
f0d3b3198d devel: Register honggfuzz 2018-08-23 22:40:52 +00:00
kamil
27667d9666 doc: Added devel/honggfuzz version 1.7 2018-08-23 22:33:11 +00:00
kamil
ff9c2315db devel/honggfuzz: import honggfuzz-1.7
A security oriented, feedback-driven, evolutionary, easy-to-use fuzzer
with interesting analysis options.
2018-08-23 22:08:07 +00:00
leot
d4464082c2 doc: Updated graphics/ImageMagick6 to 6.9.9.38nb5 2018-08-23 15:01:19 +00:00
leot
7d23c4f81c ImageMagick6: Also block PS2 and PS3 coders in policy.xml
At least when reading PS2 and PS3 files via
`convert PS2:<input> <output>' and `convert PS3:<input> <output>'
gslib/ghostscript will be invoked and hence subject to VU#332928.

Pointed out by Bob Friesenhahn via oss-security@ ML (and follow up from
VU#332928 update).
2018-08-23 14:54:21 +00:00
leot
2567b4b691 doc: Updated graphics/ImageMagick to 7.0.8.10nb3 2018-08-23 14:53:04 +00:00
leot
4fe88bb391 ImageMagick: Also block PS2 and PS3 coders in policy.xml
At least when reading PS2 and PS3 files via
`convert PS2:<input> <output>' and `convert PS3:<input> <output>'
gslib/ghostscript will be invoked and hence subject to VU#332928.

Pointed out by Bob Friesenhahn via oss-security@ ML (and follow up from
VU#332928 update).
2018-08-23 14:52:22 +00:00
triaxx
8bec775ea4 gutenprint-lib: fix missing graphics/gexiv2 dependency
Bump revision
2018-08-23 14:26:21 +00:00
maya
d58436838f intel-microcode-netbsd: uncomment LICENSE 2018-08-23 11:33:58 +00:00
adam
706f1c48a1 Updated devel/py-treq, devel/py-scandir 2018-08-23 11:32:12 +00:00
adam
b9f28f4cd2 py-scandir: updated to 1.9.0
1.9.0:
Fix build on Python 2.7.
Fix dirent struct alignment on OpenBSD

1.8:
Mark C extension as optional for things like Jython.
2018-08-23 11:31:51 +00:00
adam
6b5c1e556f py-treq: updated to 18.6.0
18.6.0:
Unknown changes.
2018-08-23 11:28:36 +00:00
maya
27f503621c Add intel's microcode license. 2018-08-23 10:52:27 +00:00
fhajny
595b5e6e02 doc: Updated devel/php-gearman to 2.0.5 2018-08-23 08:37:14 +00:00
fhajny
ebccb80482 devel/php-gearman: Update to 2.0.5.
Based on a PR by @mmoll, see NetBSD/pkgsrc#30


Version 2.0.5
-------------
- fixing incorrect number of required parameters for
  GearmanClient::addServer and GearmanClient::addServers, along with
  proceduralequivalents

Version 2.0.4
-------------
- fix "Param to skip exception handling setup in addServer/addServers
  in GearmanClient class"
2018-08-23 08:37:06 +00:00
fhajny
a91146cdb2 doc: Updated devel/gearmand to 1.1.18 2018-08-23 08:21:12 +00:00
fhajny
30d2d2cee1 devel/gearmand: Update to 1.1.18.
Based on a PR by @mmoll, see NetBSD/pkgsrc#31

Upstream changelog
==================

1.1.18
- HTTP protocol bug fix
- configure.sh accepts -o flag
- Build and test cleanly on OS X with latest xcode

1.1.17
- Redis fixed for items larger than 64 bytes
- Various memcached plugin bugfixes
- Shellcheck passes for bootstrap.sh

1.1.16
- Fixes to HTTP protocol plugin and background jobs
- Redis queue plugin refactored
- TCP Keepalive settings are properly respected
- Various fixes for stricter C++11 compilation
- Changed from CYaSSL to WolfSSL
- Various fixes to memcached queue plugin

1.1.15
- Added "prioritystatus" command to display queued jobs broken down by
  priority.
- Turn on artifact storage
- Use _exit() in fork test to fix race
- add "redis-password" option to redis

1.1.14
- This includes significant fixes for the redis queue backend, and
  various minor bug fixes.


1.1.12 Sun Feb  9 04:27:38 PST 2014
- GEARMAN_SERVERS environmental variable for libgearman to pick up
  servers to communicate with. This means that any driver now linked
with libgearman will be able to handle multiple servers.
- Add INFO level messages for queue creation.

1.1.11 Thu Oct  3 04:38:47 EDT 2013
- Workers which return a bad gearman_return_t will be counted as an
  error by the server and not a final (i.e. they will be retried).
- Fixed possible bug where the server would over count the number of
  NOOP sent if NOOP messages did not get sent.

1.1.10 Mon Sep 16 04:20:13 CDT 2013
- Added gearman_job_use_client()
- Improve compile time.
- Fix for NOOP failure (bad worker causes early exit of loop).
- Fix for postgres (use INFORMATION_SCHEMA).
- Added gearman_client_has_active_tasks() so that you can see if a
  client has active tasks that it is working on.

1.1.9 Fri Aug  2 02:39:25 EDT 2013
- Added gearman_task_is_finished()
- Improved SSL support.
- Exceptions are now supported.
- gearmand excepts its root CA via the environmental variable
  GEARMAND_PORT.
- libgearman will now except GEARMAND_CA_CERTIFICATE,
  GEARMAN_CLIENT_PEM, and GEARMAN_CLIENT_KEY

1.1.8 Thu Jun  6 18:47:01 EDT 2013
- Postgres test case now passes.
- SSL support added.
- OSX fixes.

1.1.7 Mon May  6 06:46:20 EDT 2013
- Cleanup of error codes returned by gearmand.
- gearmand will now set its port from the env variable GEARMAND_PORT.
- Fix issue where identifier might not be set correctly on reconnect.

1.1.6 Tue Apr 16 03:29:57 EDT 2013
- Merge of 1.0.4 tree
- Added support for gearadmin to "cancel" a job.
- Keep-alive support for gearmand has been extended (more options to
  control behavior).
- Fixed issues related to clients who didn't really support exceptions
  being passed exceptions.

1.1.5 Mon Feb  4 00:59:19 EST 2013
- Rollup of bug fixes for 1.0.3
- --threads=0 for gearmand will now result in gearmand using all
  available cores.

1.1.4 Mon Dec 17 21:24:16 EST 2012
- Add GEARMAN_CLIENT_GENERATE_UNIQUE, with default set to not
  generate.
- Experimental addition to queue service which will allow a queue to
  be stored on shutdown (--libsqlite3-store-on-shutdown).
- Rollup of all changes in 1.0.2

1.1.3 Wed Nov  7 22:48:21 EST 2012
- Merge with 1.0.1

1.1.2 Fri Oct 12 05:34:29 EDT 2012
- Merge with 0.41

1.1.1 Wed Sep 19 22:04:56 EDT 2012
- Merge with 0.39

1.1.0 Wed Sep  5 08:33:37 PDT 2012
- Fix for ABI compatibility issues.
2018-08-23 08:21:02 +00:00
adam
18f1fff2bd Updated devel/py-test-pythonpath, devel/py-unittest-mixins 2018-08-23 07:51:18 +00:00
adam
c057b66bb6 py-unittest-mixins: updated to 1.6
1.6:
Unknown changes.
2018-08-23 07:51:00 +00:00