Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (2h)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-13 03:34:38 UTC Now

2018-06-22 07:52:01 UTC MAIN commitmail json YAML

Update to 0.28
Update LICENSE

Upstream changes:
0.26 (2018/06/09)
    Implemented refactoring due warnings from Perl::Critic.

0.25 (2018/06/04)
    Implemented refactoring due warnings from Perl::Critic.
    Merge pull request #3 from manwar/suggest-code-tidy

0.24 (2018/06/02)
    Added a LICENSE file (GNU GPL v3).
    Removed MYMETA files (see https://rt.cpan.org/Ticket/Display.html?id=108171).
    Improved Kwalitee by adding information to Makefile.PL
    Fixed tests under OpenBSD
    Added some code to check for OpenBSD tar, which is not quite compatible to the command line options passed by this module.
    Also made the method is_gnu() more robust, testing the return code and properly handling STDOUT and STDERR when trying "tar --version".
    Dependencies added are those already available on standard perl (Config and IPC::Open3).
    Added a README.md for better formatting in Github project page.
    Small refactorings and code formating with perltidy.

(wen)

2018-06-22 07:45:53 UTC MAIN commitmail json YAML

Updated archivers/p5-Archive-Tar to 2.30

(wen)

2018-06-22 07:44:42 UTC MAIN commitmail json YAML

Update to 2.30

Upstream changes:
2.30  19/06/2018
- skip white_space test on MSWin32 as Windows will report that both
  files exist, which is obviously a 'feature'

2.28  08/06/2018 (madroach, ARC, OCBNET, ppisar)
- fix creating file with trailing whitespace on filename - fixes 103279
- allow archiving with absolute pathnames - fixes 97748
- small POD fix
- Speed up extract when archive contains lots of files
- CVE-2018-12015 directory traversal vulnerability [RT#125523]

(wen)

2018-06-22 06:38:32 UTC MAIN commitmail json YAML

Updated x11/qt5, archivers/py-lz4

(adam)

2018-06-22 06:38:14 UTC MAIN commitmail json YAML

py-lz4: updated to 2.0.1

2.0.1:
This release fixes: tests failed when run under python setup.py test, but passed when running under tox.

2.0.0:
It's now possible to specify a compession dictionary for block compression.
The bundled LZ4 libraries have been updated to 1.8.2
A compatibility fix for 2.x memoryview objects has been added.
Various flake8 cleanups and test additions.

(adam)

2018-06-22 06:29:22 UTC MAIN commitmail json YAML

2018-06-21 23:27:02 UTC MAIN commitmail json YAML

Updated www/php-owncloud to 10.0.8

(ryoon)

2018-06-21 23:22:51 UTC MAIN commitmail json YAML

Update to 10.0.8

Changelog:
Changes in 10.0.8

Dear ownCloud administrator, please find below the changes and known issues in ownCloud Server 10.0.8 that need your attention. You can also read the full ownCloud Server changelog for further details on what has changed.
PHP 5.6 deprecation

PHP 5.6/7.0 active support has ended on January 19th 2017 / December 3rd 2017 and security support will be dropped by the end of 2018. Many libraries used by ownCloud (including the QA-Suite PHPUnit) will therefore not be maintained actively anymore which forces ownCloud to drop support in one of the next minor server versions as well. Please make sure to upgrade to PHP 7.1 as soon as possible. See the system requirements in the ownCloud documentation.
Personal note for public link mail notification

One of the usability enhancements of ownCloud Server 10.0.8 is the possibility for users to add a personal note when sending public links via mail. When using customized mail templates it is necessary to either adapt the shipped original template to the customizations or to add the code block for the personal note to customized templates in order to display the personal note in the mail notifications.
New mail notifications feature

ownCloud Server 10.0.8 introduces a new extensible notification framework. Apart from technical changes under the hood the Notifications app can now also send mails for all notifications that previously were only displayed within the web interfaces (notification bell) or on the Desktop client (notifications API) like incoming federated share or Custom Group notifications, for example. In the “General” settings section users can configure whether they want to receive mails for all notifications, only for those that require an action or decide not to get notifications via mail (by default users will only receive notifications when an action is required).
LDAP-related improvements

    When disabling or deleting user accounts in LDAP, the administrator can choose to either delete or disable respective accounts in ownCloud when executing occ user:sync (-m, --missing-account-action=MISSING-ACCOUNT-ACTION). User accounts that are disabled in ownCloud can now be re-enabled automatically when running occ user:sync if they are enabled in LDAP. When this behavior is desired administrators just need to add the -r, --re-enable option to their cron jobs or when manually executing occ user:sync.
    Furthermore it is now possible to execute occ user:sync only for single (-u, --uid=UID) or seen (-s, --seenOnly) users (users that are present in the database and have logged in at least once). These new options provide more granularity for administrators in terms of managing occ user:sync performance.
    Another notable change in behavior of occ user:sync is that administrators now have to explicitly specify the option -c, --showCount to display the number of users to be synchronized.

New events for audit logging

New events have been added to be used for audit logging, among others. These include configuration changes by administrators and users, file comments (add/edit/delete) and updating existing public links. When logs are forwarded to external analyzers like Splunk, administrators can check to add the new events. The latest version of the Auditing extension (admin_audit) is required.
New command to verify and repair file checksums

With ownCloud 10 file integrity checking by computing and matching checksums has been introduced to ensure that transferred files arrive at their target in the exact state as their origin. In some rare cases wrong checksums can be written to the database leading to synchronization issues with e.g. the Desktop Client. To mitigate such situations a new command occ files:checksums:verify has been introduced. The command recalculates checksums either for all files of a user or for files within a specified path, and compares them with the values in the database. Naturally the command also offers an option to repair incorrect checksum values (-r, --repair). Please check the available options by executing occ files:checksums:verify --help. Note: Executing this command might take some time depending on the file count.
New config setting to specify minimum characters for sharing autocomplete

For security reasons the default value for minimum characters to trigger the sharing autocomplete mechanism has been set to “4” (previously it was set to “2”). This is to prevent people from easily downloading lots of email addresses or user names by requesting their first letters through the API. As it is a trade-off between security and usability for some scenarios this high security level might not be desirable. Therefore the value now is configurable via the config.php option 'user.search_min_length' => 4,. Please check which value fits your needs best.
New option to granularly configure public link password enforcement

With ownCloud 10 the “File Drop” feature has been merged with public link permissions. This kind of public link does not give recipients access to any content, but it gives them the possibility to “drop files”. As a result, it might not always be desirable to enforce password protection for such shares. Given that, passwords for public links can now be enforced based on permissions (read-only, read & write, upload only/File Drop). Please check the administration settings “Sharing” section and configure as desired.
New option to exclude apps from integrity check

By verifying signature files the integrity check ensures that the code running in an ownCloud instance has not been altered by third parties. Naturally this check can only be successful for code that has been obtained from official ownCloud sources. When providing custom apps (like theme apps) that do not have a signature, the integrity check will fail and notify the administrator. These apps can now be excluded from the integrity check by using the config.php option 'integrity.ignore.missing.app.signature' => ['app_id1', 'app_id2', 'app_id3'],. See config.sample.php for more information.
New occ command to modify user details

It is now possible to modify user details like display names or mail addresses via the command occ user:modify. Please append --help for more information.
occ files:scan can now be executed for groups

Apart from using the occ files:scan command for single users and whole instances it can now be executed for groups using -g, --groups=GROUPS. Please append --help for more information.
New configurable default format for syslog

When using syslog as the log type ('log_type' => 'syslog', in config.php) the default format hahe new format and config.sample.php on how to change it.
New config option to enable fallback to HTTP for federated shares

For security reasons federated sharing (sharing between different ownCloud instances) strictly requires HTTPS (SSL/TLS). When this g.federation.allowHttpFallback' => false, to true in config.php.
Migration related to auth_tokens (app passwords)

Upgrading to 10.0.8 includes migrations related to auth_tokens (app passwords). When users have created app passwords as separate passwords l autocomplete for public link share dialog

When the “Sharing” settings option Allow users to send mail notifications for shared files for public links is enabled, users can send public links via mail from within the web interface. The behavior of the autocomplete when entering mail addresses in the public link share dialog has been changed. Previously the autocomplete queried for local users, users from federated address books and contacts from CardDAV/Contacts App. As public links are not intended for sharing between ownCloud users (local/federated), those have been removed. Contacts synchronized via CardDAV or created in the Contacts app will still appear as suggestions.
Notifications sent by occ can now include links

The command occ notifications:generate can be used to send notifications to individual users or groups. With 10.0.8 it is also capable of including links to such notifications using the -l, --link=LINK option. Please append --help for more information. There is also Announcementcenter to conduct such tasks from the web interface but it is currently limited to send notifications to all users. For now administrators can use the occ command if more granularity is required.
Global option for CORS domains

For security reasons ownCloud has a Same-Origin-Policy that prevents requests to ownCloud resources from other domains than the domain the backend server is hosted on. If ownCloud resources should be accessible from other domains, e.g. for a separate web frontend operated on a different domain, administrators can now globally specify policy exceptions via CORS (Cross-Origin Resource Sharing) using 'cors.allowed-domains' in config.php. Please check config.sample.php for more information.
Solved known issues

    Bogus “Login failed” log entries have been removed (see 10.0.7 known issues)
    The Provisioning API can now properly set default or zero quota
    User quota settings can be queried through Provisioning API
    A regression preventing a user from setting their e-mail address in the settings page has been fixed
    File deletion as a guest user works correctly (trash bin permissions are checked correctly)

Known issues

    Issues with multiple theme apps and Mail Template Editor

As of ownCloud Server 10.0.5 it is only possible to have one theme app enabled simultaneously. When a theme app is enabled and the administrator attempts to enable a second one this will result in an error. However, when also having the Mail Template Editor enabled in this scenario the administrators “General” settings section will be displayed incorrectly. As a remedy administrators can either uninstall the second theme app or disable the Mail Template Editor app.

    occ transfer:ownership does not transfer public link shares if they were created by the target user (reshare).

For developers

    The global JS variable “oc_current_user” was removed. Please use the public method “OC.getCurrentUser()” instead.
    Lots of new Symfony events have been added for various user actions, see changelog for details. Documentation ticket: <https://github.com/owncloud/documentation/issues/3738>`_
    When requesting a private link there is a new HTTP response header “Webdav-Location” that contains the Webdav path to the requested file while the “Location” still points at the frontend URL for viewing the file.

Changes in 10.0.7

ownCloud Server 10.0.7 is a hotfix follow-up release that takes care of an issue regarding OAuth authentication.

Please consider the ownCloud Server 10.0.5 release notes.
Known issues

    When using application passwords, log entries related to “Login Failed” will appear and can be ignored. For people using fail2ban or other account locking tools based on log parsing, please apply this patch with patch -p1 < 50c78a4bf4c2ab4194f40111b8a34b7e9cc17a14.patch (original pull request here).

Changes in 10.0.6

ownCloud Server 10.0.6 is a hotfix follow-up release that takes care of an issue during the build process (https://github.com/owncloud/core/pull/30265). Please consider the ownCloud Server 10.0.5 release notes.
Changes in 10.0.5

Dear ownCloud administrator, please find below the changes and known issues in ownCloud Server 10.0.5 that need your attention. You can also read the full ownCloud Server changelog for further details on what has changed.
Technology preview for PHP 7.2 support

ownCloud catches up with new web technologies. This has mainly been introduced for the open-source community to test and give feedback. PHP 7.2 is not yet supported nor recommended for production scenarios. ownCloud is going to fully support PHP 7.2 with the next major release.
php-intl now is a hard requirement

Please make sure to have the PHP extension installed before upgrading.
Changed: Only allow a single active theme app

The theming behavior has been changed so that only a single theme can be active concurrently. This change ensures that themes can not interfere in any way (e.g., override default theming in an arbitrary order). Please make sure to have the desired theme enabled after upgrading.
Removed old Dropbox external storage backend (Dropbox API v1)

Please switch to the new External Storage: Dropbox app (https://marketplace.owncloud.com/apps/files_external_dropbox) with Dropbox API v2 support to continue providing Dropbox external storages to your users.
Fixed: Only set CORS headers on WebDAV endpoint when Origin header is specified

ownCloud Server 10.0.4 known issue is resolved.
Fixes and improvements for the Mail Template Editor

    Known issues are resolved: Mail Template Editor works again, got support for app themes and additional templates were added for customization.
    Mail Template Editor is still bundled with ownCloud Server but will soon be released as a separate app to ownCloud Marketplace.
    Changelog: https://github.com/owncloud/templateeditor/blob/release/0.2.0/CHANGELOG.md

Known issues

    When using application passwords, log entries related to “Login Failed” will appear, please upgrade to 10.0.7 and check the fix mentionned in its release notes.

Changes in 10.0.4¶

Dear ownCloud administrator, please find below the changes and known issues in ownCloud Server 10.0.4 that need your attention. You can also read the full ownCloud Server 10.0.4 changelog for further details on what has changed.
More granular sharing restrictions

The “Restrict users to only share with users in their groups” option, in the Sharing settings, restricts users to only share with groups which they are a member of, while simultaneously prohibiting sharing with single users that do not belong to any of the users’ groups.

To make this more granular, we split this option into two parts and added “Restrict users to only share with groups they are member of”, which differentiates between users and groups. Doing so makes it possible to restrict users from sharing with all users of an installation, limiting them to only being able to share with groups which they are a member of, and vice versa.
Configurable solution for indistinguishable user display names

The ownCloud sharing dialog displays users according to their display name. As users can choose their display name in self-service (which can be disabled in config.php) and display names are not unique, it is possible that a user can’t distinguish sharing results. To cover this case the displayed user identifiers are now configurable. In the Sharing settings administrators can now configure the display of either mail addresses or user ids.
Added “occ files:scan” repair mode to repair filecache inconsistencies

We recommend to use this command when directed to do so in the upgrade process. Please refer to the occ command’s files:scan –repair documentation for more information.
Detailed mode for “occ security:routes”

Administrators can use the output of this command when using a network firewall, to check the appropriateness of configured rules or to get assistance when setting up.
Added mode of operations to differentiate between single-instance or clustered setup

As ownCloud needs to behave differently when operating in a clustered setup versus a single instance setup, the new config.php option operation.mode has been added. It can take one of two values: single-instance and clustered-instance. For example: 'operation.mode' => 'clustered-instance',.

Currently the Market App (ownCloud Marketplace integration) does not support clustered setups and can do harm when used for installing or updating apps. The new config setting prevents this and other actions that are undesired in cluster mode.

When operating in a clustered setup, it is mandatory to set this option. Please check the config_sample_php_parameters documentation for more information.
Added occ dav:cleanup-chunks command to clean up expired uploads

When file uploads are interrupted for any reason, already uploaded file parts (chunks) remain in the underlying storage so that the file upload can resume in a future upload attempt. However, resuming an upload is only possible until the partial upload is expired and deleted, respectively.

To clean up chunks (expire and delete) originating from unfinished uploads, administrators can use this newly introduced command. The default expiry time is two days, but it can be specified as a parameter to the command. It is recommended to configure CRON to execute this background job regularly.

It is not included in the regular ownCloud background jobs so that the administrators have more flexibility in scheduling it. Please check the background jobs configuration documentation for more information.
Administrators can now exclude files from integrity check in config.php¶

When administrators did intentional changes to the ownCloud code they now have the ability to exclude certain files from the integrity checker. Please check “config.sample.php” for the usage of 'integrity.excluded.files'.
Modification time value of files is now 64 bits long

When upgrading to 10.0.4 migrations may increase update duration dependent on number of files.
Updated minimum supported browser versions

Users with outdated browsers might get warnings. See the list of supported browser versions.
Known issues

    When using application passwords, log entries related to “Login Failed” will appear, please upgrade to 10.0.7 and check the fix mentioned in its release notes.

10.0.3 resolved known issues

    SFTP external storages with key pair mode work again
    Added support for MariaDB 10.2.7+
    Encryption panel in admin settings fixed to properly detect current mode after upgrade to ownCloud 10
    Removed double quotes from boolean values in status.php output

Known issues

    Impersonate app 0.1.1 does not work with ownCloud Server 10.0.4. Please update to Impersonate 0.1.2 to be able to use the feature with ownCloud 10.0.4.
    Mounting ownCloud storage via davfs does not work

(ryoon)

2018-06-21 23:14:13 UTC MAIN commitmail json YAML

Remove libressl

(ryoon)

2018-06-21 23:13:56 UTC MAIN commitmail json YAML

Updated security/libressl to 2.7.4

(ryoon)

2018-06-21 23:12:04 UTC MAIN commitmail json YAML

doc: fix CVE-2018-8905 in tiff

(tez)

2018-06-21 23:11:04 UTC MAIN commitmail json YAML

2018-06-21 23:10:50 UTC MAIN commitmail json YAML

Update to 2.7.4

Changelog:
2.7.4
We have released LibreSSL 2.7.4, a security update for the
2.7.x series. It contains the following changes:

  * Avoid a timing side-channel leak when generating DSA and ECDSA
    signatures. This is caused by an attempt to do fast modular
    arithmetic, which introduces branches that leak information
    regarding secret values. Issue identified and reported by Keegan
    Ryan of NCC Group.

  * Reject excessively large primes in DH key generation. Problem
    reported by Guido Vranken to OpenSSL
    (https://github.com/openssl/openssl/pull/6457) and based on his
    diff.

2.7.3
We have released LibreSSL 2.7.3, which will be arriving in the LibreSSL
directory of your local OpenBSD mirror soon. This is the first bugfix
release from the 2.7 series, which includes the following changes from 2.7.2:

* Removed incorrect NULL checks in DH_set0_key(). Reported by Ondrej Sury.

* Limited tls_config_clear_keys() to only clear private keys.
  This was inadvertently clearing the keypair, which includes the OCSP staple
  and pubkey hash - if an application called tls_configure() followed by
  tls_config_clear_keys(), this would prevent OCSP staples from working.

* Fixed an issue normalizing CPU architecture in the configure script,
  which disabled assembly optimizations on platforms that get detected
  as 'amd64', opposed to 'x86_64'.

2.7.2
ve released LibreSSL 2.7.2, which will be arriving in the LibreSSL
directory of your local OpenBSD mirror soon. This is the first stable release
from the 2.7 series, which is also included with OpenBSD 6.3.

It includes the following changes from 2.7.1

* Updated and added extensive new HISTORY sections to API manuals.

* Added support for shared library builds with CMake on all supported
  platforms. Note that some of the CMake options have changed, consult
  the README for details.

LibreSSL 2.7.2 also includes:

* Added support for many OpenSSL 1.0.2 and 1.1 APIs, based on
  observations of real-world usage in applications. These are
  implemented in parallel with existing OpenSSL 1.0.1 APIs - visibility
  changes have not been made to existing structs, allowing code written
  for older OpenSSL APIs to continue working.

* Extensive corrections, improvements, and additions to the
  API documentation, including new public APIs from OpenSSL that had
  no pre-existing documentation.

* Added support for automatic library initialization in libcrypto,
  libssl, and libtls. Support for pthread_once or a compatible
  equivalent is now required of the target operating system. As a
  side-effect, minimum Windows support is Vista or higher.

* Converted more packet handling methods to CBB, which improves
  resiliency when generating TLS messages.

* Completed TLS extension handling rewrite, improving consistency of
  checks for malformed and duplicate extensions.

* Rewrote ASN1_TYPE_{get,set}_octetstring() using templated ASN.1.
  This removes the last remaining use of the old M_ASN1_* macros
  (asn1_mac.h) from API that needs to continue to exist.

* Added support for client-side session resumption in libtls.
  A libtls client can specify a session file descriptor (a regular
  file with appropriate ownership and permissions) and libtls will
  manage reading and writing of session data across TLS handshakes.

* Improved support for strict alignment on ARMv7 architectures,
  conditionally enabling assembly in those cases.

* Fixed a memory leak in libtls when reusing a tls_config.

* Merged more DTLS support into the regular TLS code path, removing
  duplicated code.

* Many improvements to Windows Cmake-based builds and tests,
  especially when targeting Visual Studio.

2.7.1
We have released LibreSSL 2.7.1, which will be arriving in the
LibreSSL directory of your local OpenBSD mirror soon. This is the second
release from the 2.7 series, which will be part of OpenBSD 6.3.

It includes the following changes from 2.7.0

* Fixed a bug in int_x509_param_set_hosts, calling strlen() if name
  length provided is 0 to match the OpenSSL behaviour. Issue noticed
  by Christian Heimes <christian@python.org>

* Fixed builds macOS 10.11 and older.

LibreSSL 2.7.1 also includes:

* Added support for many OpenSSL 1.0.2 and 1.1 APIs, based on
  observations of real-world usage in applications. These are
  implemented in parallel with existing OpenSSL 1.0.1 APIs - visibility
  changes have not been made to existing structs, allowing code written
  for older OpenSSL APIs to continue working.

* Extensive corrections, improvements, and additions to the
  API documentation, including new public APIs from OpenSSL that had
  no pre-existing documentation.

* Added support for automatic library initialization in libcrypto,
  libssl, and libtls. Support for pthread_once or a compatible
  equivalent is now required of the target operating system. As a
  side-effect, minimum Windows support is Vista or higher.

* Converted more packet handling methods to CBB, which improves
  resiliency when generating TLS messages.

* Completed TLS extension handling rewrite, improving consistency of
  checks for malformed and duplicate extensions.

* Rewrote ASN1_TYPE_{get,set}_octetstring() using templated ASN.1.
  This removes the last remaining use of the old M_ASN1_* macros
  (asn1_mac.h) from API that needs to continue to exist.

* Added support for client-side session resumption in libtls.
  A libtls client can specify a session file descriptor (a regular
  file with appropriate ownership and permissions) and libtls will
  manage reading and writing of session data across TLS handshakes.

* Improved support for strict alignment on ARMv7 architectures,
  conditionally enabling assembly in those cases.

* Fixed a memory leak in libtls when reusing a tls_config.

* Merged more DTLS support into the regular TLS code path, removing
  duplicated code.

* Many improvements to Windows Cmake-based builds and tests,
  especially when targeting Visual Studio.

2.7.0
We have released LibreSSL 2.7.0, which will be arriving in the
LibreSSL directory of your local OpenBSD mirror soon. This is the first
release from the 2.7 series, which will be part of OpenBSD 6.3.
It includes the following changes:

* Added support for many OpenSSL 1.0.2 and 1.1 APIs, based on
  observations of real-world usage in applications. These are
  implemented in parallel with existing OpenSSL 1.0.1 APIs - visibility
  changes have not been made to existing structs, allowing code written
  for older OpenSSL APIs to continue working.

* Extensive corrections, improvements, and additions to the
  API documentation, including new public APIs from OpenSSL that had
  no pre-existing documentation.

* Added support for automatic library initialization in libcrypto,
  libssl, and libtls. Support for pthread_once or a compatible
  equivalent is now required of the target operating system. As a
  side-effect, minimum Windows support is Vista or higher.

* Converted more packet handling methods to CBB, which improves
  resiliency when generating TLS messages.

* Completed TLS extension handling rewrite, improving consistency of
  checks for malformed and duplicate extensions.

* Rewrote ASN1_TYPE_{get,set}_octetstring() using templated ASN.1.
  This removes the last remaining use of the old M_ASN1_* macros
  (asn1_mac.h) from API that needs to continue to exist.

* Added support for client-side session resumption in libtls.
  A libtls client can specify a session file descriptor (a regular
  file with appropriate ownership and permissions) and libtls will
  manage reading and writing of session data across TLS handshakes.

* Improved support for strict alignment on ARMv7 architectures,
  conditionally enabling assembly in those cases.

* Fixed a memory leak in libtls when reusing a tls_config.

* Merged more DTLS support into the regular TLS code path, removing
  duplicated code.

* Many improvements to Windows Cmake-based builds and tests,
  especially when targeting Visual Studio.

(ryoon)

2018-06-21 22:37:00 UTC MAIN commitmail json YAML

doc: fix xv for CVE-2017-18215

(tez)

2018-06-21 22:36:36 UTC MAIN commitmail json YAML

2018-06-21 20:55:44 UTC MAIN commitmail json YAML

doc: Updated devel/jsonnet to 0.10.0

(seb)

2018-06-21 20:55:29 UTC MAIN commitmail json YAML

update devel/jsonnet to version 0.10.0

- One major change: The formatter (jsonnet fmt) is now more opinionated [...]
- Minor additions:
  - jsonnet -y and -m now respect -o
  - JSONNET_PATH environment variable
  - { [null]: true for x in [3] } now respects the null instead of being an error
  - The parser takes much less stack space
  - std.strReplace(str, from, to)
  - std.isArray(v), std.isBoolean(v), std.isFunction(v), std.isNumber(v),
    std.isObject(v), std.isString(v)
  - std.sign(n)
  - std.asciiUpper(x), std.asciiLower(x)
  - std.manifestYamlDoc(value), std.manifestYamlStream(value)
  - std.manifestXmlJsonml(value) (see jsonml.org)
  - ...and minor bug fixes & performance improvements

(seb)

2018-06-21 19:41:05 UTC MAIN commitmail json YAML

Don't autodetect -m64. Fixes ABI=32 build on Tribblix.

(schmonz)

2018-06-21 17:13:13 UTC MAIN commitmail json YAML

2018-06-21 15:33:00 UTC MAIN commitmail json YAML

Note update of net/unbound to 1.7.3.

(he)

2018-06-21 15:32:22 UTC MAIN commitmail json YAML

Update unbound to version 1.7.3

Upstream changes:

Features
- #4102 for NSD, but for Unbound.  Named unix pipes do not use
  certificate and key files, access can be restricted with file and
  directory permissions.  The option control-use-cert is no longer
  used, and ignored if found in unbound.conf.
- Rename tls-additional-ports to tls-additional-port, because every
  line adds one port.

Bug Fixes
- Don't count CNAME response types received during qname minimisation
  as query restart.
- #4100: Fix stub reprime when it becomes useless.
- Fix crash if ratelimit taken into use with unbound-control
  instead of with unbound.conf.
- Patch to fix openwrt for mac os build darwin detection in configure.
- #4103: Fix that auth-zone does not insist on SOA record first in
  file for url downloads.
- Fix that first control-interface determines if TLS is used.  Warn
  when IP address interfaces are used without TLS.
- Fix that control-use-cert: no works for 127.0.0.1 to disable certs.
- Fix unbound-checkconf for control-use-cert.
- Fix for unbound-control on Windows and set TCP socket parameters
  more closely.
- Fix windows unbound-control no cert bad file descriptor error.

(he)

2018-06-21 13:05:14 UTC MAIN commitmail json YAML

2018-06-21 12:28:34 UTC MAIN commitmail json YAML

Remove double whitespace

(ryoon)

2018-06-21 12:22:46 UTC MAIN commitmail json YAML

Updated www/tinyproxy, net/wireshark

(adam)

2018-06-21 12:22:10 UTC MAIN commitmail json YAML

2018-06-21 11:32:15 UTC MAIN commitmail json YAML

tinyproxy: also remove unnecessary patch

(adam)

2018-06-21 11:31:34 UTC MAIN commitmail json YAML

tinyproxy: updated to 1.8.4

Tinyproxy version 1.8.4

Most notably, this release removes the limitation of a single Listen address of not listening on the wildcard address and a DoS (CVE-2012-3505).
Among several other bug fixes, this release fixes a bunch of issues found by coverity (scan.coverity.com).

Bugs resolved since version 1.8.3
fix algorithmic complexity DoS in hashmap
fix failing CONNECT requests with IPv6 literal addresses
fix invalid free for GET requests to IPv6 literal addresses
support multiple Listen statements in configuration
support listening on ipv4 and ipv6 wildcard if no Listen specified
fix crash when writing to log file fails
fix build with autoconf >= 2.69

(adam)

2018-06-21 11:05:06 UTC MAIN commitmail json YAML

clutter: Explicitly disable EGL support.

The autodetection doesn't work correctly, and adding EGL support to cogl is
complicated by it being an optional requirement in MesaLib, so simply disable
and get this package building for now.

(jperkin)

2018-06-21 10:42:22 UTC MAIN commitmail json YAML

xulrunner192: Skip some missing SSP libraries.

(jperkin)

2018-06-21 10:25:35 UTC MAIN commitmail json YAML

2018-06-21 09:34:50 UTC MAIN commitmail json YAML

2018-06-21 08:34:08 UTC MAIN commitmail json YAML

kde frameworks update

(markd)

2018-06-21 08:24:25 UTC MAIN commitmail json YAML

kf5: update to 5.47.0

(markd)

2018-06-21 08:17:11 UTC MAIN commitmail json YAML

time: add kholidays

(markd)

2018-06-21 08:15:59 UTC MAIN commitmail json YAML

kholidays: Add version 5.47.0

This library provides a C++ API that determines holiday and other
special events for a geographical region.

(markd)

2018-06-21 08:00:05 UTC MAIN commitmail json YAML

qqc2-desktop-style: update to 5.47.0

* Use pallet property only when using qtquickcontrols 2.4
* Work with Qt<5.10
* Fix height of tabbar
* Use Control.palette
* [RadioButton] Rename "control" to "controlRoot"
* Don't set explicit spacing on RadioButton/CheckBox
* [FocusRect] Use manual placement instead of anchors
* It turns out the flickable in a scrollview is the contentItem
* Show focus rect when CheckBox or RadioButton are focused
* hacky fix to scrollview detection
* Don't reparent the flickable to the mousearea
* [TabBar] Switch tabs with mouse wheel
* Control must not have children
* Constrain scroll

(markd)

2018-06-21 07:56:11 UTC MAIN commitmail json YAML

plasma-framework: update to5.47.0

* Templates: consistent naming, fix translation catalog names & more
* [Breeze Plasma Theme] Fix kleopatra icon to use color stylesheet
* [Dialog] Handle dialog being minimized gracefully

(markd)

2018-06-21 07:53:54 UTC MAIN commitmail json YAML

kxmlgui: update to 5.47.0

changes unknown

(markd)

2018-06-21 07:51:56 UTC MAIN commitmail json YAML

kwindowsystem: update to 5.47.0

changes unknown

(markd)

2018-06-21 07:48:56 UTC MAIN commitmail json YAML

kwidgetsaddons: update to 5.47.0

* [KCharSelect] Fix table cell size with Qt 5.11
* [API dox] Remove usage of \overload, resulting in broken docs
* [API dox] Tell doxygen "e.g." does not end the sentence, use ".\ "
* [API dox] Remove unneeded HTML escaping
* Don't automatically set the default icons for each style
* Make KMessageWidget match Kirigami inlineMessage's style

(markd)

2018-06-21 07:45:19 UTC MAIN commitmail json YAML

ktextwidgets: update to 5.47.0

changes unknown

(markd)

2018-06-21 07:30:25 UTC MAIN commitmail json YAML

kjobwidgets: update to 5.47.0

changes unknown

(markd)

2018-06-21 07:27:47 UTC MAIN commitmail json YAML

kitemviews: update to 5.47.0

changes unknown

(markd)

2018-06-21 07:26:15 UTC MAIN commitmail json YAML

kirigami2: update to 5.47.0

* Show action.main more prominently on the ToolBarApplicationHeader
* Allow Kirigami build without KWin tablet mode dependency
* correct swipefilter on RTL
* correct resizing of contentItem
* fix --reverse behavior
* share contextobject to always access i18n
* make sure tooltip is hidden
* make sure to not assign invalid variants to the tracked proeprties
* handle not a MouseArea, dropped() signal
* no hover effects on mobile
* proper icons overflow-menu-left and right
* Drag handle to reorder items in a ListView
* Use Mnemonics on the toolbar buttons
* Added missing files in QMake's .pri
* [API dox] Fix Kirigami.InlineMessageType -> Kirigami.MessageType
* fix applicationheaders in applicationitem
* Don't allow showing/hiding the drawer when there's no handle

(markd)

2018-06-21 07:24:17 UTC MAIN commitmail json YAML

kinit: update to 5.47.0

changes unknown

(markd)

2018-06-21 07:20:27 UTC MAIN commitmail json YAML

kguiaddons: update to 5.47.0

changes unknown

(markd)

2018-06-21 07:19:05 UTC MAIN commitmail json YAML

kglobalaccel: update to 5.47.0

* Make sure ungrab keyboard request is processed before emitting shortcut

(markd)

2018-06-21 07:17:31 UTC MAIN commitmail json YAML

kdesignerplugin: update to 5.47.0

changes unknown

(markd)

2018-06-21 07:16:07 UTC MAIN commitmail json YAML

kdelibs4support: update to 5.47.0

changes unknown

(markd)

2018-06-21 07:14:56 UTC MAIN commitmail json YAML

kded: update to 5.47.0

changes unknown

(markd)

2018-06-21 07:13:22 UTC MAIN commitmail json YAML

kconfigwidgets: update to 5.47.0

* Fix the "Default" color scheme to match Breeze again

(markd)

2018-06-21 07:11:21 UTC MAIN commitmail json YAML

kactivities-stats: update to 5.47.0

changes unknown

(markd)

2018-06-21 07:09:45 UTC MAIN commitmail json YAML

kactivities5: update to 5.47.0

changes unknown

(markd)

2018-06-21 07:06:59 UTC MAIN commitmail json YAML

frameworkintegration: update to 5.47.0

changes unknown

(markd)

2018-06-21 07:03:38 UTC MAIN commitmail json YAML

kjs: update to 5.47.0

changes unknown

(markd)

2018-06-21 07:01:01 UTC MAIN commitmail json YAML

kjsembed: update to 5.47.0

changes unknown

(markd)

2018-06-21 06:58:56 UTC MAIN commitmail json YAML

khtml: update to 5.47.0

changes unknown

(markd)

2018-06-21 06:57:37 UTC MAIN commitmail json YAML

kdewebkit: update to 5.47.0

changes unknown

(markd)

2018-06-21 06:55:35 UTC MAIN commitmail json YAML

syntax-highlighting: update to 5.47.0

* Perl6: Add support for extensions .pl6, .p6, or .pm6
* DoxygenLua: fix closing comment blocks (bug 394184)
* Add pgf to the latex-ish file formats (same format as tikz)
* Add postgresql keywords
* Highlighting for OpenSCAD
* debchangelog: add Cosmic Cuttlefish
* cmake: Fix DetectChar warning about escaped backslash
* Pony: fix identifier and keyword
* Lua: updated for Lua5.3

(markd)

2018-06-21 06:53:52 UTC MAIN commitmail json YAML

2018-06-21 06:52:39 UTC MAIN commitmail json YAML

2018-06-21 06:51:06 UTC MAIN commitmail json YAML

2018-06-21 06:49:18 UTC MAIN commitmail json YAML

kapidox: update to 5.47.0

changes unknown

(markd)

2018-06-21 06:47:02 UTC MAIN commitmail json YAML

2018-06-21 06:44:59 UTC MAIN commitmail json YAML

kfilemetadata5: update to 5.47.0

* check that ffmpeg is at least version 3.1 that introduce the API we require
* search for album artist and albumartist tags in taglibextractor
* popplerextractor: don't try to guess the title if there isn't one

(markd)

2018-06-21 06:43:25 UTC MAIN commitmail json YAML

Updated devel/py-test, devel/py-deprecation

(adam)

2018-06-21 06:43:05 UTC MAIN commitmail json YAML

2018-06-21 06:43:05 UTC MAIN commitmail json YAML

2018-06-21 06:41:25 UTC MAIN commitmail json YAML

baloo5: update to 5.47.0

* Terminate query execution early if subterm returns empty result set
* Avoid crash when reading corrupt data from document terms db
* handle string lists as input
* Ignore more types of source files

(markd)

2018-06-21 06:41:14 UTC MAIN commitmail json YAML

py-test: updated to 3.6.2

Pytest 3.6.2:

Bug Fixes
Fix regression in Node.add_marker by extracting the mark object of a MarkDecorator.
Warnings without location were reported as None. This is corrected to now report <undetermined location>.
Continue to call finalizers in the stack when a finalizer in a former scope raises an exception.
Fix encoding error with print statements in doctests

Improved Documentation
Add documentation for the --strict flag.

Trivial/Internal Changes
Update old quotation style to parens in fixture.rst documentation.
Improve display of hint about --fulltrace with KeyboardInterrupt.
pytest���s testsuite is no longer runnable through python setup.py test ��� instead invoke pytest or tox directly.
Fix typo in documentation

(adam)

2018-06-21 06:38:36 UTC MAIN commitmail json YAML

2018-06-21 06:36:46 UTC MAIN commitmail json YAML

2018-06-21 06:35:22 UTC MAIN commitmail json YAML

2018-06-21 06:30:26 UTC MAIN commitmail json YAML

kxmlrpcclient: update to 5.47.0

changes unknown

(markd)

2018-06-21 06:29:06 UTC MAIN commitmail json YAML

2018-06-21 06:27:31 UTC MAIN commitmail json YAML

kdnssd: update to 5.47.0

changes unknown

(markd)

2018-06-21 06:23:29 UTC MAIN commitmail json YAML

kunitconversion: update to 5.47.0

changes unknown

(markd)

2018-06-21 06:21:51 UTC MAIN commitmail json YAML

kemoticons: update to 5.47.0

changes unknown

(markd)

2018-06-21 06:19:59 UTC MAIN commitmail json YAML

attica-qt5: update to 5.47.0

changes unknown

(markd)

2018-06-21 06:16:32 UTC MAIN commitmail json YAML

prison: update to 5.47.0

changes unknown

(markd)

2018-06-21 06:14:34 UTC MAIN commitmail json YAML

2018-06-21 06:13:03 UTC MAIN commitmail json YAML

kimageformats: update to 5.47.0

* Remove duplicated mime types from json files

(markd)

2018-06-21 06:11:36 UTC MAIN commitmail json YAML

kiconthemes: update to 5.47.0

* Check if group < LastGroup, as KIconEffect doesn't handle UserGroup anyway

(markd)

2018-06-21 06:08:44 UTC MAIN commitmail json YAML

2018-06-21 06:05:29 UTC MAIN commitmail json YAML

threadweaver: update to 5.47.0

changes unknown

(markd)

2018-06-21 06:00:14 UTC MAIN commitmail json YAML

ktexteditor: update to 5.47.0

* Don't use title case for the "show word count" checkbox
* Make the word/char count a global preference

(markd)

2018-06-21 05:58:27 UTC MAIN commitmail json YAML

kservice: update to 5.47.0

changes unknown

(markd)

2018-06-21 05:55:43 UTC MAIN commitmail json YAML

krunner: update to 5.47.0

* Process DBus replies in the ::match thread

(markd)

2018-06-21 05:54:16 UTC MAIN commitmail json YAML

kpty: update to 5.47.0

changes unknown

(markd)

2018-06-21 05:53:02 UTC MAIN commitmail json YAML

kpeople: update to 5.47.0

changes unknown

(markd)

2018-06-21 05:51:38 UTC MAIN commitmail json YAML

kparts: update to 5.47.0

changes unknown

(markd)

2018-06-21 05:49:52 UTC MAIN commitmail json YAML

kpackage: update to 5.47.0

* kpackage_install_*package: fix missing dep between .desktop and .json
* make sure paths in rcc are never derived from absolute paths

(markd)

2018-06-21 05:48:02 UTC MAIN commitmail json YAML

knotifyconfig: update to 5.47.0

changes unknown

(markd)

2018-06-21 05:46:14 UTC MAIN commitmail json YAML

knotifications: update to 5.47.0

* Fix crashes in NotifyByAudio when closing applications

(markd)

2018-06-21 05:44:39 UTC MAIN commitmail json YAML

kitemmodels: update to 5.47.0

* KConcatenateRowsProxyModel: properly sanitize input

(markd)

2018-06-21 05:42:07 UTC MAIN commitmail json YAML

kio: update to 5.47.0

* Check if destination exists also when pasting binary data
* Auth support: Return the actual length of socket buffer
* Auth support: Unify API for file descriptor sharing
* Auth support: Create socket file in user's runtime directory
* Auth support: Delete socket file after use
* Auth support: Move task of cleaning up socket file to FdReceiver
* Auth support: In linux don't use abstract socket to share file descriptor
* [kcoredirlister] Remove as many url.toString() as possible
* KFileItemActions: fallback to default mimetype when selecting only files
* Introduce KFileItemListProperties::isFile()
* KPropertiesDialogPlugin can now specify multiple supported protocols using
  X-KDE-Protocols
* Preserve fragment when redirecting from http to https
* [KUrlNavigator] Emit tabRequested when path in path selector menu is
  middle-clicked
* Performance: use the new uds implementation
* Don't redirect smb:/ to smb:// and then to smb:///
* Allow accepting by double-click in save dialog
* Enable preview by default in the filepicker dialog
* Hide file preview when icon is too small
* i18n: use plural form again for plugin message
* Use a regular dialog rather than a list dialog when trashing or deleting a
  single file
* Make the warning text for deletion operations emphasize its permanency and
  irreversibility
* Revert "Show view mode buttons in the open/save dialog's toolbar"

(markd)

2018-06-21 05:38:00 UTC MAIN commitmail json YAML

2018-06-21 05:36:27 UTC MAIN commitmail json YAML

ki18n: update to 5.47.0

changes unknown

(markd)

2018-06-21 05:34:45 UTC MAIN commitmail json YAML

kdoctools: update to 5.47.0

* Update the list of Ukrainian entities
* add entity OSD to general.entites
* Add entities CIFS, NFS, Samba, SMB to general.entities
* Add Falkon, Kirigami, macOS, Solid, USB, Wayland, X11, SDDM to general
  entities

(markd)

2018-06-21 05:33:08 UTC MAIN commitmail json YAML

kdeclarative: update to 5.47.0

* Set kcm context property on the correct context
* [Plotter] Don't render if m_node is null

(markd)

2018-06-21 05:31:22 UTC MAIN commitmail json YAML

kcrash: update to 5.47.0

changes unknown

(markd)

2018-06-21 05:30:04 UTC MAIN commitmail json YAML

kcoreaddons: update to 5.47.0

changes unknown

(markd)

2018-06-21 05:28:28 UTC MAIN commitmail json YAML

kconfig: update to 5.47.0

* kcfg.xsd - do not require a kcfgfile element

(markd)

2018-06-21 05:26:42 UTC MAIN commitmail json YAML

kcmutils: update to 5.47.0

* [KCModuleQml] Ignore disabled controls when tabbing

(markd)

2018-06-21 05:25:11 UTC MAIN commitmail json YAML

kbookmarks: update to 5.47.0

changes unknown

(markd)

2018-06-21 05:20:43 UTC MAIN commitmail json YAML

karchive: update to 5.47.0

* handle zip files embedded within zip files

(markd)

2018-06-21 05:18:00 UTC MAIN commitmail json YAML

kde: set frameworks version to 5.47.0

(markd)

2018-06-21 04:34:13 UTC MAIN commitmail json YAML

doc: Updated mail/mailfront to 2.21

(schmonz)

2018-06-21 04:33:54 UTC MAIN commitmail json YAML

Update to 2.21. From the changelog:

- Fixed crash bug in STARTTLS handling of loaded DH parameters.

- Added $TLS_COMPAT flag to disable certain TLS (security) features for
  maximum compatibility with buggy clients.

(schmonz)

2018-06-21 02:40:18 UTC MAIN commitmail json YAML

oxygen-icons: update to 5.47.0

no significant changes

(markd)

2018-06-21 02:26:12 UTC MAIN commitmail json YAML

extra-cmake-modules: update to 5.47.0

* Android toolchain: allow to specify extra libs manually
* Android: Don't define qml-import-paths if it's empty

(markd)

2018-06-21 00:36:24 UTC MAIN commitmail json YAML

2018-06-21 00:34:18 UTC MAIN commitmail json YAML

phonon{,-qt5}-backend-vlc: update to 0.10.1

Centred around improving behavior with VLC 3.0
which introduced new API allowing correct roles being set on
PulseAudio streams and as a result notification volume control is now
actually working as expected. This also means automatic corking of
music streams on voice calls can work correctly.

(markd)

2018-06-21 00:12:55 UTC MAIN commitmail json YAML

phonon{,-qt5}: update to 4.10.1

4.10.1
Fixes cmake-level compatibility issues with Qt 5.11 for libphonon and
the backends.

4.10.0
Centred around improving behavior with VLC 3.0
which introduced new API allowing correct roles being set on
PulseAudio streams and as a result notification volume control is now
actually working as expected. This also means automatic corking of
music streams on voice calls can work correctly.

(markd)

2018-06-20 22:21:25 UTC MAIN commitmail json YAML

Update to 20180615 - ok from PMC.
Changelog:
More acronyms
Offensive acronyms database which can be searched with the -o flag.

(sevan)

2018-06-20 18:22:45 UTC MAIN commitmail json YAML

2018-06-20 15:08:34 UTC MAIN commitmail json YAML

doc: Updated sysutils/salt to 2018.3.1nb2

(tpaul)

2018-06-20 15:00:16 UTC MAIN commitmail json YAML

2018-06-20 12:40:51 UTC MAIN commitmail json YAML

doc: Updated sysutils/salt to 2018.3.1nb1

(tpaul)

2018-06-20 12:28:42 UTC MAIN commitmail json YAML

mesalib: correct options.mk logic for disabling llvm on netbsd+native xorg

Follow the rest of the cases and use "not-CASE and not-CASE".
Sorry, I got confused.

Fix by wiz.

(maya)

2018-06-20 12:03:19 UTC MAIN commitmail json YAML

2018-06-20 12:03:04 UTC MAIN commitmail json YAML

Support emacs26

(ryoon)

2018-06-20 11:58:14 UTC MAIN commitmail json YAML

Updated devel/apel to 10.8.0.20170122

(ryoon)

2018-06-20 11:57:46 UTC MAIN commitmail json YAML

2018-06-20 11:50:56 UTC MAIN commitmail json YAML

salt: don't crash if no swap is configured, apply pkgin module fixes

patches/patch-salt_grains_core.py:
- Reapply patch in a NetBSD/OpenBSD specific code block after package update
  to 2018.3.1, from PR pkg/53278
- upstream pull #47600

patches/patch-salt_modules_pkgin.py:
- Apply patch in pkgin specific code block from PR pkg/53344
- upstream pull #47814

bump PKGREVISION
ok <leot>

(tpaul)

2018-06-20 11:15:44 UTC MAIN commitmail json YAML

Added editors/emacs26{,-nox11} version 26.1 [makoto 2018-06-20]

(mef)

2018-06-20 11:08:22 UTC MAIN commitmail json YAML

editors/emacs26-nox11: import emacs26-nox11-26.1

GNU Emacs is an extensible, customizable editor textand more.  At its
core is an interpreter for Emacs Lisp, a dialect of the Lisp
programming language with extensions to support text editing.  The
features of GNU Emacs include:

- Content-sensitive editing modes, including syntax coloring, for a
  wide variety of file types including plain text, source code, and
  HTML.
- Complete built-in documentation, including a tutorial for new users.
- Support for many languages and their scripts, including all scripts,
  Russian, Greek, Japanese, Chinese, Korean, Thai, Vietnamese, Lao,
  Ethiopian, and some Indian scripts.
- Highly customizable, using Emacs Lisp code or a graphical
  customization interface.
- A large number of extensions that add other functionality, including
  a project planner, mail and news reader, debugger interface,
  calendar, and more.  Many of these extensions are distributed with
  GNU Emacs; others are available separately.

This package contains Emacs version 26.

(mef)

2018-06-20 11:04:19 UTC MAIN commitmail json YAML

editors/emacs26: import emacs26-26.1

GNU Emacs is an extensible, customizable editor textand more.  At its
core is an interpreter for Emacs Lisp, a dialect of the Lisp
programming language with extensions to support text editing.  The
features of GNU Emacs include:

- Content-sensitive editing modes, including syntax coloring, for a
  wide variety of file types including plain text, source code, and
  HTML.
- Complete built-in documentation, including a tutorial for new users.
- Support for many languages and their scripts, including all scripts,
  Russian, Greek, Japanese, Chinese, Korean, Thai, Vietnamese, Lao,
  Ethiopian, and some Indian scripts.
- Highly customizable, using Emacs Lisp code or a graphical
  customization interface.
- A large number of extensions that add other functionality, including
  a project planner, mail and news reader, debugger interface,
  calendar, and more.  Many of these extensions are distributed with
  GNU Emacs; others are available separately.

This package contains Emacs version 26.

(mef)

2018-06-20 09:30:00 UTC MAIN commitmail json YAML

doc: Updated pkgtools/pkgin to 0.11.2

(jperkin)

2018-06-20 09:29:51 UTC MAIN commitmail json YAML

pkgin: Update to 0.11.2.

## Version 0.11.2 (2018-06-20)

* Fix a couple of issues with PKGPATH handling in import and upgrade.
* Fix an occasional memory corruption issue with commands that call
  pkg_info for output.

(jperkin)

2018-06-20 07:53:03 UTC MAIN commitmail json YAML

Updated security/libgcrypt

(adam)

2018-06-20 06:18:53 UTC MAIN commitmail json YAML

libgcrypt: updated to 1.8.3

version 1.8.3:
Bug fixes:
- Use blinding for ECDSA signing to mitigate a novel side-channel
  attack.
- Fix incorrect counter overflow handling for GCM when using an IV
  size other than 96 bit.
- Fix incorrect output of AES-keywrap mode for in-place encryption
  on some platforms.
- Fix the gcry_mpi_ec_curve_point point validation function.
- Fix rare assertion failure in gcry_prime_check.

(adam)

2018-06-20 05:16:33 UTC MAIN commitmail json YAML

Correction from Updated to Added, sorry

(mef)

2018-06-20 05:14:34 UTC MAIN commitmail json YAML

Added math/p5-Math-Matrix version 0.8 [mef 2018-06-20]
Added math/p5-Math-Systems version 0.01 [mef 2018-06-20]

(mef)

2018-06-20 05:10:50 UTC MAIN commitmail json YAML

math/p5-Math-Matrix: import p5-Math-Matrix-0.8

The following methods are available:
  new
  clone
  size  of matrix
  concat
  transpose
  multiply
  solve
  multiply_scalar
  add
  substract
  equal
  slice
  determinant
  dot_product
  absolute
  normalizing
  cross_product
  print

(mef)

2018-06-20 05:05:00 UTC MAIN commitmail json YAML

math/p5-Math-Systems: import p5-Math-Systems-0.01

Solves systems of equations using Krammer's rule. If you look at the
Solve method you'll understand Krammer's rule (I think?)

Basically a system of equations is more than one equation/variable your
solving. This module REQUIRES you have 1 equation per each coefficent.
Try not to use too many equations. 3 equations is probably the limit of
reason. But if you don't mind long compilation time, go for as many as
you want.

This module uses (and ovbiously requires you have) Math::Matrix to do
all the Matrix work. Please take a look at that module for details do
you can see exactly what is happening. There are no arguements in this
module except for the Matrix which will be brought to Math::Matrix.

Also, keep in mind, there are no error messenging. I will of course
change that someday, but for now I'm satisfied that I can solve systems
of equations. Don't allow error-prone things to be written in. But,
there are of course times when you won't be able to figure out the
stupid answer and this module will absolutly act like it did a great
job, and at the same time, fail. So, keep that in mind.

BETA means something. It's not good.

(mef)

2018-06-20 01:37:15 UTC MAIN commitmail json YAML

mesalib: disable dri *and* llvm in the netbsd native xorg case.

It isn't feasible to build this version of MesaLib with this option and
netbsd's base libraries.

PR pkg/52686.

(maya)

2018-06-19 22:58:56 UTC MAIN commitmail json YAML

Updated graphics/ImageMagick to 7.0.8.2
Updated graphics/p5-PerlMagick to 7.0.8.2

(ryoon)

2018-06-19 22:57:05 UTC MAIN commitmail json YAML

Update to 7.0.8.2

Changelog:
2018-06-18  7.0.8-2 Cristy  <quetzlzacatenango@image...>
  * Release ImageMagick version 7.0.8-2, GIT revision 14476:cda11d81d:20180618.

2018-06-18  7.0.8-2 Cristy  <quetzlzacatenango@image...>
  * More robust SVG text handling.

2018-06-16  7.0.8-1 Cristy  <quetzlzacatenango@image...>
  * Release ImageMagick version 7.0.8-1, GIT revision 14468:94cb08785:20180616.

2018-06-16  7.0.8-1 Cristy  <quetzlzacatenango@image...>
  * Fixed numerous use of uninitialized values, integer overflow, memory
    exceeded, and timeouts (credit to OSS Fuzz).
  * Fixed an issue with stroke and label: (reference
    https://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=34142).
  * PNG: set storage class to DirectClass if alpha enabled (reference
    https://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=34121).

(ryoon)

2018-06-19 22:53:10 UTC MAIN commitmail json YAML

Updated converters/nkf to 2.14
Updated converters/p5-nkf to 2.14

(ryoon)

2018-06-19 22:51:46 UTC MAIN commitmail json YAML

2018-06-19 22:47:30 UTC MAIN commitmail json YAML

Updated cross/pdp11-aout-gcc to 8.1.0

(ryoon)

2018-06-19 22:47:01 UTC MAIN commitmail json YAML

2018-06-19 22:46:12 UTC MAIN commitmail json YAML

Updated cross/pdp11-aout-binutils to 2.30

(ryoon)

2018-06-19 22:45:36 UTC MAIN commitmail json YAML

2018-06-19 15:03:09 UTC MAIN commitmail json YAML

Updated mail/p5-Email-Simple to 2.216

(wen)

2018-06-19 15:01:58 UTC MAIN commitmail json YAML

Update to 2.216

Upstream changes:
2.216    2018-06-06 11:47:52-04:00 America/New_York
        - no changes since v2.215

2.215    2018-05-04 16:21:28+10:00 Australia/Melbourne (TRIAL RELEASE)
        - do not re-fold folded lines (Marc Bradshaw)

(wen)

2018-06-19 14:23:53 UTC MAIN commitmail json YAML

Updated devel/p5-SDL to 2.548

(wen)

2018-06-19 14:22:19 UTC MAIN commitmail json YAML

Update to 2.548

Upstream changes:
2.548 May 19 2018
        - Add version number to all modules [FROGGS]

(wen)

2018-06-19 13:23:54 UTC MAIN commitmail json YAML

Updated lang/rust to 1.26.2

(ryoon)

2018-06-19 13:23:25 UTC MAIN commitmail json YAML

Update to 1.26.2

Changelog:
Version 1.26.2 (2018-06-05)
Compatibility Notes

The borrow checker was fixed to avoid unsoundness when using match ergonomics

(ryoon)

2018-06-19 12:12:53 UTC MAIN commitmail json YAML

Updated textproc/py-natsort, www/py-nevow

(adam)

2018-06-19 12:12:25 UTC MAIN commitmail json YAML

py-nevow: updated to 0.14.4

Nevow 0.14.4:
Bugfixes
Divmod.Runtime.getAttribute now works again on newer Microsoft Edge versions.

(adam)

2018-06-19 12:06:32 UTC MAIN commitmail json YAML

py-natsort: updated to 5.3.2

5.3.2:
Fix bug that prevented install on old versions of setuptools.
Revert layout from src/natsort/ back to natsort/ to make user testing simpler.

(adam)

2018-06-19 12:05:44 UTC pkgsrc-2018Q1 commitmail json YAML

Pullup tickets #5772 and #5773.

(bsiegert)

2018-06-19 12:05:26 UTC pkgsrc-2018Q1 commitmail json YAML

Pullup ticket #5773 - requested by maya
x11/qt5-qtbase: Linux build fix

Revisions pulled up:
- x11/qt5-qtbase/PLIST.Linux                                    1.4

---
  Module Name: pkgsrc
  Committed By: bacon
  Date: Fri May 18 15:22:02 UTC 2018

  Modified Files:
  pkgsrc/x11/qt5-qtbase: PLIST.Linux

  Log Message:
  x11/qt5-qtbase: Fix version in PLIST.Linux

  Previous commit failed to update the hard-coded version from 5.10.0.
  Replacing with ${PKGVERSION} to avoid a repeat.

(bsiegert)

2018-06-19 12:05:22 UTC pkgsrc-2018Q1 commitmail json YAML

Pullup ticket #5772 - requested by leot
audio/mpg321: bugfix

Revisions pulled up:
- audio/mpg321/Makefile                                        1.20
- audio/mpg321/distinfo                                        1.9
- audio/mpg321/patches/patch-mpg321.c                          1.2

---
  Module Name: pkgsrc
  Committed By: leot
  Date: Sat Jun 16 14:43:21 UTC 2018

  Modified Files:
  pkgsrc/audio/mpg321: Makefile distinfo
  pkgsrc/audio/mpg321/patches: patch-mpg321.c

  Log Message:
  mpg321: Do not unlock unititialized main_lock

  Bump PKGREVISION

  Problem spotted by <maya>, fixes PR pkg/53369 by <sevan>.

(bsiegert)

2018-06-19 11:49:27 UTC MAIN commitmail json YAML

Updated www/py-django-countries, devel/py-ddt

(adam)

2018-06-19 11:49:07 UTC MAIN commitmail json YAML

py-ddt: updated to 1.1.3

1.1.3:
Merge pull request 56 from pavelholvi/pavel-add-nested-dict-example-to-docs

(adam)

2018-06-19 11:46:11 UTC MAIN commitmail json YAML

py-django-countries: updated to 5.3.1

5.3.1:
- Fix dumpdata and loaddata for CountryField(multiple=True).

(adam)

2018-06-19 11:39:41 UTC MAIN commitmail json YAML

Updated security/py-asyncssh, www/py-cherrypy

(adam)

2018-06-19 11:39:03 UTC MAIN commitmail json YAML

py-cherrypy: updated to 16.0.2

v16.0.2:
* :issue:1716: Fixed handling of url-encoded parameters in
  digest authentication handling, correcting regression in v14.2.0.

v16.0.1
* :issue:1719: Digest-auth tool will now return a status
  code of 401 for when a scheme other than 'digest' is
  indicated.

(adam)

2018-06-19 11:37:28 UTC MAIN commitmail json YAML

py-asyncssh: updated to 1.13.1

Release 1.13.1:
Added client and server support for host-based SSH authentication. If enabled, this will allow all users from a given host to be authenticated by a shared host key, rather than each user needing their own key. This should only be used with hosts which are trusted to keep their host keys secure and provide accurate client usernames.
Added support for RSA key exchange algorithms (rsa2048-sha256 and rsa1024-sha1) available in PuTTY and some mobile SSH clients.
Added support for the SECP256K1 elliptic curve for ECDSA keys and ECDH key exchange. This curve is supported by the Bitvise SSH client and server.
Added debug logging of the algorithms listed in a received kexinit message.

(adam)

2018-06-19 11:07:26 UTC MAIN commitmail json YAML

lang/guile: Add search path to default extensions for lt_dlopenext.

Fixes usage with packages like print/lilypond on at least Darwin and SunOS, where dynamically loaded guile extensions cannot be found without resorting to LTDL_LIBRARY_PATH quirks.

(fhajny)

2018-06-19 08:46:41 UTC MAIN commitmail json YAML

print/lilypond: Fix patch by removing an empty if/fi block.

(fhajny)

2018-06-19 07:23:02 UTC MAIN commitmail json YAML

Updated x11/qt5

(adam)

2018-06-19 07:21:25 UTC MAIN commitmail json YAML

2018-06-19 07:14:16 UTC MAIN commitmail json YAML

doc: Updated x11/libXaw3d to 1.6.3

(wiz)

2018-06-19 07:14:07 UTC MAIN commitmail json YAML

libXaw3d: update to 1.6.3.

Alan Coopersmith (9):
    Remove CRAY/WORD64 support (unifdef -UCRAY -UWORD64)
    Replace TXT16 with XChar2b inline
    Remove support for pre-C89 headers (unifdef -UX_NOT_STDC_ENV)
    configure: Drop AM_MAINTAINER_MODE
    autogen.sh: Honor NOCONFIGURE=1
    Just use C89 size_t instead of rolling our own Size_t & Off_t
    Use SEEK_* names instead of raw numbers for fseek whence argument
    Get rid of some extraneous ; at the end of C source lines
    Avoid using dead pointer in _XawTextSetSelection

Emil Velikov (1):
    autogen.sh: use quoted string variables

Javier Pello (1):
    Fix --disable-feature options in configure

Jeremy Huddleston Sequoia (1):
    darwin: Remove incorrect export of vendorShellClassRec and vendorShellWidgetClass

Matt Turner (1):
    libXaw3d 1.6.3

Mihail Konev (1):
    autogen: add default patch prefix

Peter Hutterer (1):
    autogen.sh: use exec instead of waiting for configure to finish

Thomas Klausner (1):
    Fix abs() usage.

(wiz)

2018-06-19 07:12:54 UTC MAIN commitmail json YAML

doc: Updated x11/xf86-input-mouse to 1.9.3

(wiz)

2018-06-19 07:12:45 UTC MAIN commitmail json YAML

xf86-input-mouse: update to 1.9.3.

Adam Jackson (2):
    Adapt to removal of xf86GetOS
    bsd: Don't try to use SIGIO for input ABI >= 23

Emil Velikov (1):
    autogen.sh: use quoted string variables

Matt Turner (1):
    xf86-input-mouse 1.9.3

Mihail Konev (1):
    autogen: add default patch prefix

Peter Hutterer (1):
    autogen.sh: use exec instead of waiting for configure to finish

(wiz)

2018-06-19 06:52:53 UTC MAIN commitmail json YAML

Updated devel/p5-PPIx-Regexp to 0.060

(wen)

2018-06-19 06:52:00 UTC MAIN commitmail json YAML

Update to 0.060

Upstream changes:
0.060          2018-06-16      T. R. Wyant
    \N{} now parses as the unknown token, not NoOp, regardless of the
    setting of 'use re qw< strict >;'. \N{} became unconditionally fatal
    in 5.28.0 (5.27.1, actually). The policy when the parse changes is
    to use the most-modern parse. Hence this change.

    As a side effect of this, the unknown token's explain() method now
    returns something -- normally the associated error.

    Add method remove_insignificant(). If the invocant isa Node, this
    returns a clone of the invocant with non-significant elements
    removed. Otherwise it returns either the invocant or nothing.

(wen)

2018-06-19 06:45:37 UTC MAIN commitmail json YAML

Updated devel/p5-Perl-Critic to 1.132

(wen)

2018-06-19 06:44:31 UTC MAIN commitmail json YAML

Update to 1.132
Update DEPENDS

Upstream changes:
1.132    Thu May 31 21:48:48 CDT 2018
    [New Features]
    Added the ability to specify a regex to tell what unused private
    subroutines are OK in Subroutines::ProhibitUnusedPrivateSubroutines.
    This is handy for Moose classes where there could be many false
    positives on _build_xxxx() subroutines.
    Thanks, Dave Cross.  (GH #811, #812)

    [Dependencies]
    Perl::Critic now no longer relies on the deprecated Email::Address.
    (GH #816)

1.131_02 Tue Feb 20 17:18:03 CST 2018
    [New Features]
    Perl::Critic now assumes that .psgi files are Perl, too.  Thanks, Tom
    Hukins. (GH#805)

    Variables::ProhibitUnusedVariables no longer gives a false positive for
    variables used in interpolation.  Thanks, Omer Gazit. (GH#801)

    [Bug Fixes]
    Added missing requirement for Fatal.pm.

1.131_01 Tue Nov 21 17:28:06 CST 2017
    [New Features]
    In the ProhibitLeadingZeros policy, added an exception for mkfifo.
    Thanks, Evan Zacks. (GH#786)

    Add color support for Windows platforms.  Thanks, Roy Ivy III. (GH#700)

    [Bug Fixes]
    Recode Perl::Critic::Utils::all_perl_files() to use File::Find instead
    of opendir/readdir.  This solves endless directory traversals if
    the directories contain circular symbolic references.  Thanks, Tom Wyant.

    [Documentation]
    Added CONTRIBUTING.md.  Thanks, Jonas B. Nielsen.

(wen)

2018-06-19 06:38:50 UTC MAIN commitmail json YAML

Added textproc/p5-PPIx-QuoteLike version 0.005

(wen)

2018-06-19 06:37:21 UTC MAIN commitmail json YAML

Add p5-PPIx-QuoteLike

(wen)

2018-06-19 06:33:38 UTC MAIN commitmail json YAML

Import PPIx-QuoteLike-0.005 as p5-PPIx-QuoteLike.

PPIx::QuoteLike parses Perl string literals and things that are reasonably like
string literals. Its real reason for being is to find interpolated variables for
Perl::Critic policies and similar code.

(wen)

2018-06-19 05:02:10 UTC MAIN commitmail json YAML

Disable the flags for PKGSRC_MKPIE when explicitly required

This notably allows emulators/qemu to properly detect support for PIE, and
disable it where appropriate. This does not work with cwrappers yet.

(khorben)

2018-06-19 03:16:10 UTC MAIN commitmail json YAML

Updated devel/p5-Net-Netmask to 1.9103

(wen)

2018-06-19 03:15:02 UTC MAIN commitmail json YAML

Update to 1.9103

Upstream changes:
1.9103 2018-06-18
- Use ASCII-like regex matching (Github #4)
- Convert tests to Test2
- Pass perlcritic tests
- Pass Kwalitee tests
- Add contributor information
- Add protocol() method (just a stub today that will always return
  'IPv4')

1.9102 2018-06-18
- DEV release only
- Contains most changes that made it to 1.9103.

1.9101 2018-06-02

- fix precision issue on long-double platforms (BAYMAX)
- Convert to use Dist::Zilla
- Formatting changes

1.9100 2018-06-02

- DEV release only
- fix precision issue on long-double platforms (BAYMAX)
- Convert to dist.zilla
- Minor formatting changes

(wen)

2018-06-19 03:07:47 UTC MAIN commitmail json YAML

Updated devel/p5-Net-CIDR to 0.19

(wen)

2018-06-19 03:06:48 UTC MAIN commitmail json YAML

Update to 0.19

Upstream changes:
0.19

2018-06-11  Sam Varshavchik  <mrsam@courier-mta.com>

        * Fix cidrvalidate() checking of IPv6 addresses with a 0 word.

2016-02-13  Sam Varshavchik  <mrsam@courier-mta.com>

        * Move test.pl to t/
        Update documentation to use only reserved IP addresses.

(wen)

2018-06-19 03:01:41 UTC MAIN commitmail json YAML

Updated devel/p5-Module-Starter to 1.75

(wen)

2018-06-19 03:00:41 UTC MAIN commitmail json YAML

Update to 1.75

Upstream changes:
1.75    Thu Jun 14 12:53:47 EDT 2018
        * Update additional template URLs for consistency in tests

1.74    Tue Jun 12 18:15:20 EDT 2018
        * GH#66: Update default module template to link to metacpan (Dan Book)
        * GH#67: Update default module template to use HTTPS where appropriate (Chas. J. Owens IV)

(wen)

2018-06-19 02:25:58 UTC MAIN commitmail json YAML

pulseaudio: fix build on FreeBSD11. Include missing headers.

From Santhosh Raju in PR pkg/53381

(maya)

2018-06-19 02:04:05 UTC MAIN commitmail json YAML

mercury: disable non-local gotos on powerpc(32) too

PR pkg/53346: The configure test for use of labels loops on powerpc

(maya)

2018-06-19 01:30:26 UTC MAIN commitmail json YAML

seamonkey: x86-specific PLIST entries.

We include firefox52/mozilla-common.mk so we don't need extra logic.
Somewhat blind commit.

Reported in PR pkg/53379.

(maya)

2018-06-18 20:46:55 UTC MAIN commitmail json YAML

doc: Added archivers/go-xz version 0.5.4

(minskim)

2018-06-18 20:46:50 UTC MAIN commitmail json YAML

archivers/Makefile: Add go-xz

(minskim)

2018-06-18 20:46:47 UTC MAIN commitmail json YAML

archivers/go-xz: Import version 0.5.4

This Go language package supports the reading and writing of xz
compressed streams. It includes also a gxz command for compressing and
decompressing data. The package is completely written in Go and
doesn't have any dependency on any C code.

(minskim)

2018-06-18 18:01:05 UTC MAIN commitmail json YAML

doc: Updated net/youtube-dl to 20180618

(leot)

2018-06-18 18:00:52 UTC MAIN commitmail json YAML

youtube-dl: Update net/youtube-dl to 20160618

Changes:
version 2018.06.18

Core
* [downloader/rtmp] Fix downloading in verbose mode (#16736)

Extractors
+ [markiza] Add support for markiza.sk (#16750)
* [wat] Try all supported adaptive URLs
+ [6play] Add support for rtlplay.be and extract hd usp formats
+ [rtbf] Add support for audio and live streams (#9638, #11923)
+ [rtbf] Extract HLS, DASH and all HTTP formats
+ [rtbf] Extract subtitles
+ [rtbf] Fixup specific HTTP URLs (#16101)
+ [expressen] Add support for expressen.se
* [vidzi] Fix extraction (#16678)
* [pbs] Improve extraction (#16623, #16684)
* [bilibili] Restrict cid regular expression (#16638, #16734)

version 2018.06.14

Core
* [downloader/http] Fix retry on error when streaming to stdout (#16699)

Extractors
+ [discoverynetworks] Add support for disco-api videos (#16724)
+ [dailymotion] Add support for password protected videos (#9789)
+ [abc:iview] Add support for livestreams (#12354)
* [abc:iview] Fix extraction (#16704)
+ [crackle] Add support for sonycrackle.com (#16698)
+ [tvnet] Add support for tvnet.gov.vn (#15462)
* [nrk] Update API hosts and try all previously known ones (#16690)
* [wimp] Fix Youtube embeds extraction

version 2018.06.11

Extractors
* [npo] Extend URL regular expression and add support for npostart.nl (#16682)
+ [inc] Add support for another embed schema (#16666)
* [tv4] Fix format extraction (#16650)
+ [nexx] Add support for free cdn (#16538)
+ [pbs] Add another cove id pattern (#15373)
+ [rbmaradio] Add support for 192k format (#16631)

(leot)

2018-06-18 15:08:53 UTC MAIN commitmail json YAML

Updated devel/p5-Log-Report to 1.27

(wen)

2018-06-18 15:06:31 UTC MAIN commitmail json YAML

doc: Updated security/pear-Crypt_GPG to 1.6.3

(taca)

2018-06-18 15:06:10 UTC MAIN commitmail json YAML

security/pear-Crypt_GPG: update to 1.6.3

1.6.3 Release date: 2018-06-04 01:59 UTC

Changelog:

* Exclude tools/ and package.php from a composer archive.
* Make possible to get a list of GnuPG warnings collected on last operation.
* Fix Bug #21242: PHPUnit tests fail sometimes while deleting
  S.gpg-agent.extra.
* Fix mode argument type in docblock.

(taca)

2018-06-18 15:03:46 UTC MAIN commitmail json YAML

Update to 1.27

Upstream changes:
version 1.27:

        Fixes:
        - fix metadata [Mohammad S Anwar]

        Improvements:
        - Dancer2 add custom fatal handlers [Andrew Beverley]

(wen)

2018-06-18 15:02:11 UTC MAIN commitmail json YAML

doc: Updated www/contao45 to 4.5.9

(taca)

2018-06-18 15:01:47 UTC MAIN commitmail json YAML

www/contao45: update to 4.5.9

Contao 4.5.9 is available
2018/06/18 12:15 by Leo Feyer

Contao version 4.5.9 is available. The bugfix release fixes several minor
problems and optimizes the RAM usage when generating XML sitemaps.

(taca)

2018-06-18 15:01:26 UTC MAIN commitmail json YAML

doc: Updated www/contao44 to 4.4.19

(taca)