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 (1h)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-13 02:27:00 UTC Now

2020-03-17 03:45:56 UTC MAIN commitmail json YAML

lang/perl5: remove obsolete SUBST actions

These did not have any effect since the files have changed meanwhile.

(rillig)

2020-03-16 22:09:54 UTC MAIN commitmail json YAML

2020-03-16 21:28:23 UTC MAIN commitmail json YAML

mpv: Clean up options.mk and add a JACK option (off by default)

(nia)

2020-03-16 21:20:43 UTC MAIN commitmail json YAML

mpv: pkglint cleanup (whitespace only)

(wiz)

2020-03-16 21:20:03 UTC MAIN commitmail json YAML

2020-03-16 20:58:18 UTC MAIN commitmail json YAML

2020-03-16 20:31:44 UTC MAIN commitmail json YAML

2020-03-16 16:55:41 UTC MAIN commitmail json YAML

mk/wxGTK.mk: Remove (no users, almost no point)

This file allowed one to in theory specify a wxGTK version, but only
two programs used it.  Both now directly include a preferred version.
Generally, packages should use wxGTK30, unless there is a good reason
to use 28.

A major motivation earlier was not being able to install 28 and 30 at
once, but this has been solved.

As briefly discussed on pkgsrc-users.

(gdt)

2020-03-16 16:43:29 UTC MAIN commitmail json YAML

doc: Updated ham/trustedQSL to 2.5.1

(gdt)

2020-03-16 16:43:23 UTC MAIN commitmail json YAML

ham/tqsl: Update to 2.5.1

Sign/upload of log tested on NetBSD 8 amd64.

Packaging changes:
  Change to wxGTK30, and don't use mk/wxGTK.mk
  Force off lmdb in tqsl's cmake

Upstream NEWS:

  localization

  Major feature Additions:

    Use an ARRL-supplied web service with ULS data to pre-fill station
    location information.

    Detect when the user runs TQSL ���As Administrator��� on Windows
    systems and warn that this is not recommended.

    The user is allowed to temporarily or permanently ignore that
    warning.TQSL no longer asks for passwords for callsign
    certificates when they are created.

    There is a preference setting to re-enable this if desired.

    When submitting requests for US 1x1 callsigns, which must always
    be a signed request, ensure that the flow properly marks the
    callsign as 1x1, and that the requester has a valid callsign
    certificate that can be used to sign that request.

  minor updates and bugfixes

(gdt)

2020-03-16 16:27:40 UTC MAIN commitmail json YAML

doc: Updated sysutils/nnn to 3.0

(sjmulder)

2020-03-16 16:27:18 UTC MAIN commitmail json YAML

nnn: Update to 3.0

Changes:
- take list of files as input and show
- option -e replaces NNN_USE_EDITOR
- option -t replaces NNN_IDLE_TIMEOUT
- PCRE support
- more readline bindings for native prompts
- run GUI app as plugin
- attempt lazy unmount when regular unmount fails
- fix unmount on macOS: use umount
- detect sshfs and rclone to prompt intelligently
- auto-proceed on file open (toggle key +)
- quit with error code on Q
- additional key F5 to toggle hidden
- key e to edit in EDITOR (back on multiple user requests)
- option to edit list of files in selection is changed to E
- do not end selection on redraw
- nuke: glow as Markdown viewer
- nuke: refactor, handle some common video types by extension
- file name removed from status bar
- static Makefile target
- generate, upload static package on release
- fix crash on entering empty dir, then Down
- fix keypresses lost when showing message
- fix #227: nnn creates xdg-open zombies

(sjmulder)

2020-03-16 15:34:29 UTC MAIN commitmail json YAML

doc: Updated www/ruby-selenium-webdriver to 3.142.7

(taca)

2020-03-16 15:33:52 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-cucumber-wire to 2.0.0

Add a missing entry I forgot to commit.

(taca)

2020-03-16 15:32:14 UTC MAIN commitmail json YAML

www/ruby-selenium-webdriver: update to 3.142.7

Update ruby-selenium-webdriver to 3.142.7.

pkgsrc change: remove redundant CATEGORIES.

3.142.3 (2019-05-21)
====================

Firefox:
  * Fixed a regression when Firefox binary path was not sent to GeckoDriver
    by default and browser could not be located (issue #7219)

3.142.2 (2019-05-11)
====================

Chrome:
  * Fixed an issue when getting/setting network conditions and sending CDP
    commands didn't work with Grid (issue #7174)

Safari:
  * Fixed an issue when getting/setting permissions and attaching debugger
    didn't work with Grid (issue #7174)

3.142.1 (2019-05-07)
====================

Firefox:
  * Fixed an issue when processing error in legacy driver would result
    in NoMethodError (issue #7178)

3.142.0 (2019-04-24)
====================

Ruby:
  * Fixed an issue when services are not shutdown properly

Firefox:
  * Fixed an issue when passing :profile string to Firefox::Options.new would
    result in NoMethodError. Now it will find a profile with such name on your
    system and use it accordingly (issue #7119)
  * Fixed an issue when instantiating Firefox driver with capabilities having
    :marionette would result in NoMethodError (issue #7120)

3.141.5926 (2019-04-18)
=======================

Ruby:
  * Fixed an issue when Selenium itself would print deprecation warning
    for TimeoutError
  * Fixed a regression when socket poller would raise Errno::EBADF on JRuby

3.141.592 (2019-04-18)
======================

Ruby:
  * Updated minimum required Ruby version to 2.3
  * Added support for ChildProcess 1.x
  * Improved socket connection waiting (thanks @N0xFF)
  * Changed waiting to use monotonic clock instead of Time class to avoid
    collisions with Timecop and similar gems
  * Removed deprecated PortProber.random
  * Added strictFileInteractability to the list of known capabilities
  * Added InsecureCertificateError
  * Added support for setting SOCKS version in proxy (issue #6938)
  * Implemented new window command using driver.manage.new_window. The command
    is supported by recent Firefox, Safari and IE drivers (thanks @dylanlive)
  * Added support for passing proc to driver_path setter in Service classes
  * Deprecated all errors which don't exist in WebDriver specification
  * Deprecated TouchActionBuilder which is not a part of WebDriver specification
    and is only supported by Chrome, but is likely to be dropped in v75.
    ActionBuilder should be used instead
  * Deprecated using Remote::W3C::Capabilities in favor of Remote::Capabilities

Chrome:
  * Added support for execute CDP commands using Driver#execute_cdp
  * Removed GPU disabling in ChromeDriver when using Options#headless!
  * Switched suggested download URL to HTTPS (thanks @JLLeitschuh)
  * Added support for instantiating service class directly and moved all driver
    executable configuration there (command-line arguments, port, etc.)
    Passing driver_opts, driver_path and port to driver initializer is now
    deprecated so use Selenium::WebDriver::Service.chrome instead, which allows
    to customize executable behavior in similar way. Once initialized, this
    object can be passed as :service keyword during driver initialization.
  * Deprecated Chrome.driver_path= in favor of Service::Chrome.driver_path=

Edge:
  * Added support for instantiating service class directly and moved all driver
    executable configuration there (command-line arguments, port, etc.)
    Passing driver_opts, driver_path and port to driver initializer is now
    deprecated so use Selenium::WebDriver::Service.firefox instead, which allows
    to customize executable behavior in similar way. Once initialized, this
    object can be passed as :service keyword during driver initialization
  * Deprecated Edge.driver_path= in favor of Service::Edge.driver_path=

Firefox:
  * Deprecated legacy driver in favor of GeckoDriver
  * Fixed Firefox path lookup on Cygwin (issue #6908)
  * Added support for instantiating service class directly and moved all driver
    executable configuration there (command-line arguments, port, etc.)
    Passing driver_opts, driver_path and port to driver initializer is now
    deprecated so use Selenium::WebDriver::Service.firefox instead, which allows
    to customize executable behavior in similar way. Once initialized, this
    object can be passed as :service keyword during driver initialization
  * Deprecated Firefox.driver_path= in favor of Service::Firefox.driver_path=
  * Deprecated outdated capabilities

IE:
  * Fixed an issue when native events could not be disabled using IE::Options
    initializer
  * Added support for instantiating service class directly and moved all driver
    executable configuration there (command-line arguments, port, etc.)
    Passing driver_opts, driver_path and port to driver initializer is now
    deprecated so use Selenium::WebDriver::Service.ie instead, which allows
    to customize executable behavior in similar way. Once initialized, this
    object can be passed as :service keyword during driver initialization
  * Deprecated IE.driver_path= in favor of Service::IE.driver_path=

Safari:
  * Added support for instantiating service class directly and moved all driver
    executable configuration there (command-line arguments, port, etc.)
    Passing driver_opts, driver_path and port to driver initializer is now
    deprecated so use Selenium::WebDriver::Service.safari instead, which allows
    to customize executable behavior in similar way. Once initialized, this
    object can be passed as :service keyword during driver initialization
  * Deprecated Safari.driver_path= in favor of Service::Safari.driver_path=

Remote:
  * Change default HTTP client to use persistent connections

(taca)

2020-03-16 14:52:05 UTC MAIN commitmail json YAML

opencv: Fix pkgbase is not defined error

(ryoon)

2020-03-16 14:48:17 UTC MAIN commitmail json YAML

doc: Fix pattern for devel/php-composer

(ryoon)

2020-03-16 14:35:38 UTC MAIN commitmail json YAML

doc: Updated www/py-google-api-python-client to 1.8.0nb1

(wiz)

2020-03-16 14:35:30 UTC MAIN commitmail json YAML

py-google-api-python-client: update to 1.8.0nb1.

Add two missing dependencies.

(wiz)

2020-03-16 14:28:21 UTC MAIN commitmail json YAML

doc: Added devel/py-google-api-core version 1.16.0

(wiz)

2020-03-16 14:28:11 UTC MAIN commitmail json YAML

devel/Makefile: + py-google-api-core

(wiz)

2020-03-16 14:27:57 UTC MAIN commitmail json YAML

htdavlock: needs apache

(tnn)

2020-03-16 14:27:25 UTC MAIN commitmail json YAML

devel/py-google-api-core: import py-google-api-core-1.16.0

This Python library is not meant to stand-alone. Instead it defines
common helpers used by all Google API clients.

(wiz)

2020-03-16 14:17:15 UTC MAIN commitmail json YAML

doc: Added devel/py-googleapis-common-protos version 1.51.0

(wiz)

2020-03-16 14:17:06 UTC MAIN commitmail json YAML

devel/Makefile: + py-googleapis-common-protos

(wiz)

2020-03-16 14:17:05 UTC MAIN commitmail json YAML

emacs-snapshot: needs a termcap implementation

configure: error: The required function 'tputs' was not found in any library.

(tnn)

2020-03-16 14:16:43 UTC MAIN commitmail json YAML

devel/py-googleapis-common-protos: import py-googleapis-common-protos-1.51.0

googleapis-common-protos contains the Python classes generated from
the common protos in the googleapis repository.

(wiz)

2020-03-16 14:08:46 UTC MAIN commitmail json YAML

2020-03-16 14:00:58 UTC MAIN commitmail json YAML

google-benchmark: remove -Werror

Breaks build with stack check

(wiz)

2020-03-16 13:47:27 UTC MAIN commitmail json YAML

httperf: needs libtool

(tnn)

2020-03-16 13:42:15 UTC MAIN commitmail json YAML

syncffsd: only for NetBSD

(tnn)

2020-03-16 13:39:37 UTC MAIN commitmail json YAML

graphics/extrema: Depend on wxGTK28 more simply

Before, this used mk/wxGTK.mk, but that amounted to a dependency on
wxGTK28.  We have no reports of anyone using the variables to control
this.

It remains to change to wxGTK30 and test.

(gdt)

2020-03-16 13:30:57 UTC MAIN commitmail json YAML

2020-03-16 13:22:20 UTC MAIN commitmail json YAML

deforaos-libdesktop: update to 0.4.0nb3.

Fix PLIST (no more devhelp2)

(wiz)

2020-03-16 13:18:44 UTC MAIN commitmail json YAML

deforaos-cpp: update to 0.0.3nb4.

Fix PLIST (no more devhelp2)

(wiz)

2020-03-16 13:17:19 UTC MAIN commitmail json YAML

deforaos-libdatabase: update to 0.0.1nb14.

Fix PLIST (no more .devhelp2)

(wiz)

2020-03-16 13:00:04 UTC MAIN commitmail json YAML

doc: Added games/nudoku version 2.0.0

(fcambus)

2020-03-16 12:59:47 UTC MAIN commitmail json YAML

2020-03-16 12:59:02 UTC MAIN commitmail json YAML

games/nudoku: import nudoku 2.0.0.

nudoku is a ncurses based sudoku game. Perfect to relax a little or
just waste some time when you are on the console.

(fcambus)

2020-03-16 11:17:22 UTC MAIN commitmail json YAML

boehm-gc: Enable threads. Needed for neko-vm.

(nia)

2020-03-16 10:38:09 UTC MAIN commitmail json YAML

libmemcached: gnu++0x for alloca

(nia)

2020-03-16 10:19:15 UTC MAIN commitmail json YAML

2020-03-16 10:16:18 UTC MAIN commitmail json YAML

eom: Needs libxml2

(nia)

2020-03-16 10:16:12 UTC MAIN commitmail json YAML

eom: Needs libxml2

(nia)

2020-03-16 10:11:00 UTC MAIN commitmail json YAML

fallingtime: Use c99

(nia)

2020-03-16 09:48:59 UTC MAIN commitmail json YAML

adwaita-icon-theme: use PRINT_PLIST_AWK to prevent future accidents

(tnn)

2020-03-16 09:35:47 UTC MAIN commitmail json YAML

2020-03-16 08:46:09 UTC MAIN commitmail json YAML

adwaita-icon-theme: fix PLIST for !NetBSD

(tnn)

2020-03-16 07:30:07 UTC MAIN commitmail json YAML

fixup more RUBY_VERSIONS_ACCEPTED fallout

(tnn)

2020-03-16 02:35:33 UTC MAIN commitmail json YAML

ruby-selenium-webdriver: mark as BROKEN pending investigation

(tnn)

2020-03-16 02:32:09 UTC MAIN commitmail json YAML

ruby-redmine-themes: adjust RUBY_VERSIONS_ACCEPTED here too

(tnn)

2020-03-16 01:16:10 UTC MAIN commitmail json YAML

2020-03-16 00:21:07 UTC MAIN commitmail json YAML

2020-03-16 00:00:45 UTC MAIN commitmail json YAML

sfslite: not -Werror -safe with GCC 9.3.0

(tnn)

2020-03-15 23:47:14 UTC MAIN commitmail json YAML

py-sniffio: PYTHON_VERSIONS_INCOMPATIBLE must go before pyversion.mk

(tnn)

2020-03-15 23:41:54 UTC MAIN commitmail json YAML

2020-03-15 23:35:03 UTC MAIN commitmail json YAML

py-uncompyle6: fix PLIST for Python 2.7; note: and_not_check.py is not used at all

(adam)

2020-03-15 23:14:58 UTC MAIN commitmail json YAML

Updated converters/help2man, devel/py-importlib-resources

(adam)

2020-03-15 23:14:40 UTC MAIN commitmail json YAML

py-importlib-resources: updated to 1.3.1

v1.3.1
For improved compatibility, importlib_resources.trees is now imported implicitly.

v1.3.0
Add extensibility support for non-standard loaders to supply Traversable resources. Introduces a new abstract base class abc.TraversableResources that supersedes (but implements for compatibility) abc.ResourceReader. Any loader that implements (implicitly or explicitly) the TraversableResources.files method will be capable of supplying resources with subdirectory support.
Preferred way to access as_file is now from top-level module. importlib_resources.trees.as_file is deprecated and discouraged.
Moved Traversable abc to abc module.

(adam)

2020-03-15 23:09:56 UTC MAIN commitmail json YAML

help2man: updated to 1.47.13

help2man (1.47.13) unstable
  * Merge change from Po-Chuan Hsieh to suppress creation of an empty
    pkglibdir when nls is disabled.
  * Remove install_dirs target entirely, add explicit $(MKINSTALLDIRS)
    before each $(INSTALL_{DATA,PROGRAM}) call.
  * Update parsing of --version to allow multi-word programs when
    constructing the placeholder NAME paragraph

(adam)

2020-03-15 23:06:03 UTC MAIN commitmail json YAML

gpsd: ppscheck(8) only gets built if we have TIOCMIWAIT (i.e. on Linux)

(tnn)

2020-03-15 23:03:03 UTC MAIN commitmail json YAML

mk/linux-pam: replace obsolete _PKG_SILENT with RUN

(rillig)

2020-03-15 22:58:32 UTC MAIN commitmail json YAML

Updated graphics/py-altgraph, devel/py-macholib

(adam)

2020-03-15 22:58:14 UTC MAIN commitmail json YAML

py-macholib: updated to 1.14

macholib 1.14
Repository moved to GitHub
Update the LC_NAMES table

(adam)

2020-03-15 22:55:54 UTC MAIN commitmail json YAML

py-altgraph: updated to 0.17

0.17
Explicitly mark Python 3.8 as supported in wheel metadata.
Migrate from Bitbucket to GitHub
Run black on the entire repository

(adam)

2020-03-15 22:53:03 UTC MAIN commitmail json YAML

Updated mail/dovecot2, mail/dovecot2-pigeonhole

(adam)

2020-03-15 22:52:46 UTC MAIN commitmail json YAML

dovecot2-pigeonhole: updated to 0.5.10

v0.5.10:
No changes

(adam)

2020-03-15 22:52:04 UTC MAIN commitmail json YAML

dovecot2: updated to 2.3.10

v2.3.10
* Disable retpoline migitations by default. These can cause severe
  performance regressions, so they should be only enabled when
  applicable.
* IMAP MOVE now commits transactions in batches of 1000 mails. This
  helps especially with lazy_expunge when moving a lot of mails. It
  mainly avoids situations where multiple IMAP sessions are running the
  same MOVE command and duplicating the mails in the lazy_expunge folder.
  With this change there can still be some duplication, but the MOVE
  always progresses forward. Also if the MOVE fails at some point, the
  changes up to the last 1000 mails are still committed instead of
  rolled back. Note that the COPY command behavior hasn't changed,
  because it is required by IMAP standard to be an atomic operation.
* IMAP EXPUNGE and CLOSE now expunges mails in batches of 1000 mails.
  This helps especially with lazy_expunge when expunging a lot of mails
  (e.g. millions) to make sure that the progress always moves forward
  even if the process is killed.
* Autoexpunging now expunges mails in batches of 1000 mails. This helps
  especially with lazy_expunge when expunging a lot of mails
  (e.g. millions) to make sure that the progress always moves forward
  even if the process is killed.
+ Add tool for generating sysreport called dovecot-sysreport.
  This generates a bundle of information usually needed for support
  requests.
+ Add support for the new IMAP \Important SPECIAL-USE flag (RFC 8457).
+ Add metric { group_by } setting. This allows automatically creating
  new metrics based on the fields you want to group statistics by.
  NOTE: This feature is considered experimental and syntax is subject
  to change in future release.
+ auth: Support SCRAM-SHA-256 authentication mechanism.
+ imap: Support the new IMAP STATUS=SIZE extension.
+ Use TCP_QUICKACK to reduce latency for some TCP connections.
+ quota-status: Made the service more robust against erroneous use with
  Postfix ACL policies other than smtpd_recipient_restrictions.
+ Add "revision" field support to imap_id_send setting. Using
  "revision *" will send in IMAP ID command response the short commit
  hash of the Dovecot git source tree HEAD (same as in dovecot --version).
+ IMAP ENVELOPE includes now all addresses when there are multiple
  headers (From, To, Cc, etc.) The standard way of having multiple
  addresses is to just list them all in a single header. It's
  non-standard to have multiple headers. However, since MTAs allow these
  mails to pass through and different software may handle them in
  different ways, it's better from security point of view to show all
  the addresses.
+ Event filters now support using "field_name=" to match a field that
  doesn't exist or has an empty value. For example use "error=" to match
  only events that didn't fail.
- acl: INBOX ACLs shouldn't apply for IMAP GETMETADATA/SETMETADATA
  commands.
- cassandra: CASS_ERROR_SERVER_WRITE_FAILURE error should also be
  treated as "uncertain write failure".
- dict-redis: Using quota_clone configured with dict-redis could have
  crashed when Redis responded slowly.
- imap-hibernate: Communication trouble with imap-master leads to
  segfault.
- imap-hibernate: Unhibernation retrying wasn't working.
- imap: Fixed auth lookup privilege problem when imap process was reused
  and user was being un-hibernated.
- Fix potential crash when copying/moving mails within the same folder.
  This happened only when there were a lot of fields in dovecot.index.cache.
- lib-index: Recreating dovecot.index.cache file could have crashed when
  merging bitmask fields.
- lib-index: Using public/shared folders with INDEXPVT configured to use
  private \Seen flags, trying to search seen/unseen in an empty folder
  crashes with segfault.
- lib-mail: Large base64-encoded mails weren't decoded properly.
  This could have affected searching/indexing mails and message snippet
  generation.
- lib-mail: Message with only quoted text could have caused message
  snippet to ignore its 200 character limit and return the entire
  message. This was added also to dovecot.index.cache file, which
  increased disk space and memory usage unnecessarily.
  v2.3.9.2 regression (previous versions cached the quoted snippet as
  empty). In a large mail quoted text could have become wrongly added
  to the snippet, possibly mixed together with non-quoted text.
- lib-smtp: client could have assert-crashed if STARTTLS handshake
  finished earlier than usually.
- lib-ssl-iostream: remove -static flag for lib-ssl-iostream linking to
  prevent a compile issue.
- lib-storage: Mailbox synchronization may have assert-crashed in some
  rare situations.
- lib-storage: mdbox didn't preserve date.saved with dsync.
- lib: Don't require EAI_{ADDRFAMILY,NODATA}, breaks FreeBSD
- master: Some services could respawn unthrottled if they crash during
  startup.
- push-notification: Do not send push_notification_finished event if
  nothing was done. This happens when mail transaction is started and
  ended with no changes.
- quota-status: Addresses with special characters in the local part caused
  problems in the interaction between Postfix and Dovecot. Postfix sent
  its own internal representation in the recipient field, while Dovecot
  expected a valid RFC5321 mailbox address.
- submission-login: SESSION was not correctly encoded field for the
  XCLIENT command. Particularly, a '+' character introduced by the
  session ID's Base64 encoding causes problems.
- submission: Fix submission_max_mail_size to work correctly on 32-bit
  systems.
- submission: Trusted connections crashed in second connection's EHLO
  if submission-login { service_count } is something else than 1 (which
  is the default).
- submission: XCLIENT command was never used in the protocol exchange
  with the relay MTA when submission_backend_capabilities is configured,
  even when the relay MTA was properly configured to accept the XCLIENT
  command.

(adam)

2020-03-15 22:51:08 UTC MAIN commitmail json YAML

Updated textproc/py-ujson, databases/py-apsw

(adam)

2020-03-15 22:50:51 UTC MAIN commitmail json YAML

py-apsw: updated to 3.31.1

3.31.1-r1
Various updates due to year change
Fix deprecated universal newline use in shell
Shell now uses pragma function_list to get list of functions for tab completion
Added constants:
SQLITE_DBCONFIG_TRUSTED_SCHEMA, SQLITE_DBCONFIG_LEGACY_FILE_FORMAT,
SQLITE_CONSTRAINT_PINNED, SQLITE_OK_SYMLINK, SQLITE_CANTOPEN_SYMLINK,
SQLITE_FCNTL_CKPT_DONE, SQLITE_OPEN_NOFOLLOW, SQLITE_VTAB_DIRECTONLY

(adam)

2020-03-15 22:45:37 UTC MAIN commitmail json YAML

freeradius: include pam.bl3.mk so rlm_pam.so always gets built

(tnn)

2020-03-15 22:45:25 UTC MAIN commitmail json YAML

py-ujson: updated to 2.0.2

2.0.2:
Fix "鐃緒申 is not JSON serializable" on Python 3

(adam)

2020-03-15 22:41:05 UTC MAIN commitmail json YAML

2020-03-15 22:28:15 UTC MAIN commitmail json YAML

Updated devel/abseil, net/grpc

(adam)

2020-03-15 22:27:52 UTC MAIN commitmail json YAML

grpc: updated to 1.27.3

Release v1.27.3
This is a patch release for the gRPC-C++.

(adam)

2020-03-15 22:25:56 UTC MAIN commitmail json YAML

abseil: updated to 20200225.1

20200225.1:
Patched Feb 2020 LTS branch with the bug fix for absl::Status::ErasePayload.

20200225:
Fix build on FreeBSD/powerpc
Add RISCV support to GetProgramCounter()
Add missing ABSL_HAVE_VDSO_SUPPORT conditional
Fix pointer format specifier in documentation
fix: Add support for more ARM processors detection
Use https links
Fix Conan builds
Always enable proper symbolize implementation on Windows
Fix spelling errors

(adam)

2020-03-15 22:19:45 UTC MAIN commitmail json YAML

abseil: build with -fPIC

Fixes net/grpc shared library linking problem.

(tnn)

2020-03-15 22:02:40 UTC MAIN commitmail json YAML

webkit-gtk: disable bubblewrap sandbox

It's Linux specific and we don't have the prerequisite tools to build with
this option in pkgsrc.

(tnn)

2020-03-15 21:47:43 UTC MAIN commitmail json YAML

gdal-lib: remove the sqlite option and enable it always

Because gdal-lib depends unconditionally on geograpy/proj, which depends
unconditionally on sqlite3, it doesn't make sense dependency-wise to
conditionally omit sqlite3 support here.

(tnn)

2020-03-15 21:41:27 UTC MAIN commitmail json YAML

proj: buildlink3 sqlite3

Needed because it is expressed in the installed libtool file:
libproj.la:dependency_libs='-lsqlite3 -ldl -lpthread'

(tnn)

2020-03-15 21:32:11 UTC MAIN commitmail json YAML

options.description: document rust-llvm

(gutteridge)

2020-03-15 21:13:36 UTC MAIN commitmail json YAML

2020-03-15 21:09:47 UTC MAIN commitmail json YAML

SDL2: Disable OSS audio on NetBSD

(nia)

2020-03-15 21:08:41 UTC MAIN commitmail json YAML

2020-03-15 21:01:47 UTC MAIN commitmail json YAML

lmdb: fix a patch: rearrange linker parameter order & drop useless -R flag

(tnn)

2020-03-15 20:37:08 UTC MAIN commitmail json YAML

sqlrelay: not -Werror -safe with GCC 9.3.0

(tnn)

2020-03-15 20:28:41 UTC MAIN commitmail json YAML

2020-03-15 20:11:24 UTC MAIN commitmail json YAML

doc: perl update done

(wiz)

2020-03-15 20:10:59 UTC MAIN commitmail json YAML

doc: Updated lang/perl5 to 5.30.2

(wiz)

2020-03-15 20:10:46 UTC MAIN commitmail json YAML

perl: update to 5.30.2.

Incompatible Changes

    There are no changes intentionally incompatible with 5.30.0. If any
    exist, they are bugs, and we request that you submit a report. See
    "Reporting Bugs" below.

Modules and Pragmata

  Updated Modules and Pragmata

    *  Compress::Raw::Bzip2 has been upgraded from version 2.084 to 2.089.

    *  Module::CoreList has been upgraded from version 5.20191110 to
        5.20200314.

Configuration and Compilation
    *  GCC 10 is now supported by Configure.

Selected Bug Fixes
    *  printf() or sprintf() with the %n format no longer cause a panic on
        debugging builds, or report an incorrectly cached length value when
        producing "SVfUTF8" flagged strings.

    *  A memory leak in regular expression patterns has been fixed.

    *  A read beyond buffer in grok_infnan has been fixed.

    *  An assertion failure in the regular expression engine has been
        fixed.

    *  "(?{...})" eval groups in regular expressions no longer
        unintentionally trigger "EVAL without pos change exceeded limit in
        regex".

(wiz)

2020-03-15 20:05:24 UTC MAIN commitmail json YAML

doc: Updated www/py-google-api-python-client to 1.8.0

(wiz)

2020-03-15 20:05:15 UTC MAIN commitmail json YAML

py-google-api-python-client: update to 1.8.0.

Release to support API endpoint override.

New Features

    Add api endpoint override. (#829)

Implementation Changes

    Don't set http.redirect_codes if the attr doesn't exist and allow more httplib2 versions. (#841)

(wiz)

2020-03-15 20:04:20 UTC MAIN commitmail json YAML

doc: Updated graphics/adwaita-icon-theme to 3.36.0

(wiz)

2020-03-15 20:04:11 UTC MAIN commitmail json YAML

adwaita-icon-theme: update to 3.36.0.

3.36.0
  - symbolic: media rtl cleanup (issue 75)
  - symbolic: night light more identifiable
3.35.92
  - fullcolor mimetype icons - firmware, addons for they
    are prominently exposed in Software
  - drop rtl variant for playback (issue 75)
3.35.91
  - avatar-default: adjust metrics
  - index.theme fixes (alex)
  - *disabled more prominent (sam)
  - keyboard (issue 41)
  - settings icons (sam)
  - edit-clear (sam)

(wiz)

2020-03-15 20:00:14 UTC MAIN commitmail json YAML

doc: Updated lang/vala to 0.48.1

(wiz)

2020-03-15 20:00:05 UTC MAIN commitmail json YAML

vala: update to 0.48.1.

Vala 0.48.1
===========
* Various improvements and bug fixes:
  - codegen:
    + Replace hard-coded "gsize" with resolved "size_t"
    + Add destroy of parameter in vfunc of delegate property setter [#919]
    + Inherit "array" attributes from (base/-interface) property
    + Inherit "delegate_target" from (base/-interface) parameter/property/method
    + Actually respect "delegate_target" attribute of method/parameter
    + Move ObjectTypeSymbol casting to GTypeModule
    + Factor out GValueModule and GLibValue into a separate source-files
    + Avoid symbol clashes with "va_*" from "stdarg.h"
  - vala:
    + Fix search for Parameter.base_parameter
    + Real struct-type without type_id can't be used for GObject property [#921]
  - codewriter: Output inner interface declarations [#918]

* Bindings:
  - glib-2.0: Add missing "type_id"/"has_type_id" attributes to structs [#921]
  - glib-2.0: Memory profiling ("g_mem_*") is deprecated since 2.46
  - linux: Don't depend on GLib.Time when using POSIX profile
  - gtk4: Update to 3.98+2da445f9
  - poppler-glib: Update to 0.85
  - vapi: Update GIR-based bindings

(wiz)

2020-03-15 19:56:52 UTC MAIN commitmail json YAML

doc: Updated security/py-google-auth to 1.11.3

(wiz)

2020-03-15 19:56:29 UTC MAIN commitmail json YAML

py-google-auth: update to 1.11.3.

Bug Fixes

    fix the scopes so test can pass for a local run (#450) (b2dd77f)
    only add IAM scope to credentials that can change scopes (#451) (82e224b)

(wiz)

2020-03-15 19:55:42 UTC MAIN commitmail json YAML

deforaos-libsystem: fix build on Linux

(tnn)

2020-03-15 19:54:05 UTC MAIN commitmail json YAML

doc: Updated security/libsecret to 0.20.2

(wiz)

2020-03-15 19:53:47 UTC MAIN commitmail json YAML

libsecret: update to 0.20.2.

0.20.2
* secret-file-collection: force little-endian in GVariant [!49, #42]
* Prefer g_info() over g_message() [!48, #40]
* meson: Don't specify shared_library() [!47]
* docs: Make sure to set install: true [!46]

(wiz)

2020-03-15 19:51:41 UTC MAIN commitmail json YAML

doc: Updated devel/glib2 to 2.64.1

(wiz)

2020-03-15 19:51:30 UTC MAIN commitmail json YAML

glib2: update to 2.64.1

Overview of changes in GLib 2.64.1
==================================

* Fix memory monitor tests to only be installed if installed-tests are enabled,
  and to be skipped if GObject-Introspection is too old (!1407)

* Bugs fixed:
- #1986 Socks5 Proxy: Authentication seems broken
- #1988 Socks5 Proxy: Wrong error returned when using no authentication
- !1407 Backport various patches from master to glib-2-64
- !1412 Backport SOCKS5 fixes to glib-2-64

* Translation updates:
- Dutch
- Italian
- Serbian

(wiz)

2020-03-15 19:48:04 UTC MAIN commitmail json YAML

doc: Updated chat/farstream to 0.2.9

(wiz)

2020-03-15 19:47:56 UTC MAIN commitmail json YAML

farstream: update to 0.2.9.

farstream 0.2.9 (March 11, 2020)
================================
- Add OPUS specific SDP OA negotiation to match RFC
- Switch VP8 to standard encoding name
- Removed MSN plugin, MSN Messenger is long dead
- Port away from deprecated libnice signals
- Bug fixes

(wiz)

2020-03-15 19:46:08 UTC MAIN commitmail json YAML

doc: Updated devel/dconf to 0.36.0

(wiz)

2020-03-15 19:45:59 UTC MAIN commitmail json YAML

dconf: update to 0.36.0.

Changes in dconf 0.36.0
=======================

- No changes since 0.35.1

Changes in dconf 0.35.1
=======================

- Writer service: avoid writing to disk and emitting changed signals
  when write requests do not result in changes to the database (Daniel
  Playfair Cal, !3)
- build: Drop redundant `install` key from `configure_file()` (Philip
  Withnall, !53)
- build: Update abicheck.sh script to work with GCC 9 (Diego
  Escalante Urello, !55)
- build: Update use of link_whole for meson-0.52 (Diego Escalante
  Urello, !54)

(wiz)

2020-03-15 19:31:38 UTC MAIN commitmail json YAML

doc: Updated devel/p5-EV to 4.32

(tnn)

2020-03-15 19:30:54 UTC MAIN commitmail json YAML

p5-EV: update to 4.32 to fix build on Linux

changes for version 4.32 - 2020-01-24
(libev) fixed a bug introduced in 4.31 when timerfds and signalfds were used at the same time.
(libev) 0 is now allowed as requested event mask in io watchers.
(libev) once-per-minute wakeups will now be optimized away when timerfds are available
use the new ev_io_modify in EV::IO->events, instead of the potentially slower ev_io_set.
add a bunch of mutator methods, mostly untested(!): EV::Timer->repeat, EV::Periodic->offset, EV::Periodic->interval, EV::Periodic->reschedule_cb.
minor optimisations and bugfixes.

(tnn)

2020-03-15 19:23:45 UTC MAIN commitmail json YAML

py-configparser: needs setuptools

(tnn)

2020-03-15 18:50:58 UTC MAIN commitmail json YAML

firefox: further minimum version bumps for 74.0

Firefox now explicitly requires NSPR >= 4.25 and NSS >= 3.50.

(gutteridge)

2020-03-15 18:46:46 UTC MAIN commitmail json YAML

doc: Updated mail/neomutt to 20200313

(wiz)

2020-03-15 18:46:36 UTC MAIN commitmail json YAML

neomutt: update to 20200313.

2020-03-13  Richard Russon  <rich@flatcap.org>
* Features
  - UI: add number of old messages to sidebar_format
  - UI: support ISO 8601 calendar date
  - UI: fix commands that don窶冲 need to have a non-empty mailbox to be valid
  - PGP: inform about successful decryption of inline PGP messages
  - PGP: try to infer the signing key from the From address
  - PGP: enable GPGMe by default
  - Notmuch: use query as name for vfolder-from-query
  - IMAP: add network traffic compression (COMPRESS=DEFLATE, RFC4978)
  - Header cache: add support for generic header cache compression
* Bug Fixes
  - Fix uncollapse_jump
  - Only try to perform entire-thread on maildir/mh mailboxes
  - Fix crash in pager
  - Avoid logging single new lines at the end of header fields
  - Fix listing mailboxes
  - Do not recurse a non-threaded message
  - Fix initial window order
  - Fix leaks on IMAP error paths
  - Notmuch: compose(attach-message): support notmuch backend
  - Fix IMAP flag comparison code
  - Fix $move for IMAP mailboxes
  - Maildir: maildir_mbox_check_stats should only update mailbox stats if requested
  - Fix unmailboxes for virtual mailboxes
  - Maildir: sanitize filename before hashing
  - OAuth: if 'login' name isn't available use 'user'
  - Add error message on failed encryption
  - Fix a bunch of crashes
  - Force C locale for email date
  - Abort if run without a terminal
* Changed Config
  - `$crypt_use_gpgme`                        - Now defaults to 'yes' (enabled)
  - `$abort_backspace`                        - Hitting backspace against an empty prompt aborts the prompt
  - `$abort_key`                              - String representation of key to abort prompts
  - `$arrow_string`                            - Use an custom string for arrow_cursor
  - `$crypt_opportunistic_encrypt_strong_keys` - Enable encryption only when strong a key is available
  - `$header_cache_compress_dictionary`        - Filepath to dictionary for zstd compression
  - `$header_cache_compress_level`            - Level of compression for method
  - `$header_cache_compress_method`            - Enable generic hcache database compression
  - `$imap_deflate`                            - Compress network traffic
  - `$smtp_user`                              - Username for the SMTP server
* Translations
  - 100% Lithuanian
  - 81% Spanish
  - 78% Russian
* Build
  - Add libdebug
  - Rename public headers to lib.h
  - Create libcompress for compressed folders code
  - Enable Cirrus CI for FreeBSD
* Code
  - Refactor Windows and Dialogs
  - Lots of code tidying
  - Refactor: mutt_addrlist\_{search,write}
  - Lots of improvements to the Config code
  - Use Buffers more pervasively
  - Unify API function naming
  - Rename library shared headers
  - Refactor libconn gui dependencies
  - Refactor: init.[ch]
  - Refactor config to use subsets
  - Config: add path type
  - Remove backend deps from the connection code
* Upstream
  - Allow ~b ~B ~h patterns in send2-hook
  - Rename smime oppenc mode parameter to get_keys_by_addr()
  - Add $crypt_opportunistic_encrypt_strong_keys config var
  - Fix crash when polling a closed ssl connection
  - Turn off auto-clear outside of autocrypt initialization
  - Add protected-headers="v1" to Content-Type when protecting headers
  - Fix segv in IMAP postponed menu caused by reopen_allow
  - Adding ISO 8601 calendar date
  - Fix $fcc_attach to not prompt in batch mode
  - Convert remaining mutt_encode_path() call to use struct Buffer
  - Fix rendering of replacement_char when Charset_is_utf8
  - Update to latest acutest.h

(wiz)

2020-03-15 17:50:29 UTC MAIN commitmail json YAML

mk/mysql.buildlink3.mk: fix fatal error when no MySQL version is found

This happened in a bulk build with PKGSRC_RUN_TEST=yes.

(rillig)

2020-03-15 17:34:44 UTC MAIN commitmail json YAML

devel/ruby-cucumber-wire: update to 2.0.0

Update ruby-cucumber-wire to 2.0.0.

## [2.0.0](https://github.com/cucumber/cucumber-ruby-wire/compare/v1.2.0...v2.0.0)

### Changed

* Use `cucumber-ruby-core` 6.0.0

## [1.2.0](https://github.com/cucumber/cucumber-ruby-wire/compare/v1.1.0...v1.2.0)

### Removed

* Multiline arguments do not need `Location` anymore

### Added

* Use `Cucumber:Messages::IdGenerator::UUID` to provide ids for `Hooks`

(taca)

2020-03-15 17:27:54 UTC MAIN commitmail json YAML

devel/ruby-cucumber-core: update to 6.0.0

Update ruby-cucumber-core to 6.0.0.

No release notes available.

(taca)

2020-03-15 17:25:49 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-cucumber-messages to 10.0.3

(taca)

2020-03-15 17:24:53 UTC MAIN commitmail json YAML

devel/ruby-cucumber-messages: update to 10.0.3

Update ruby-cucumber-messages to 10.0.3.

No release notes available.

(taca)

2020-03-15 17:21:51 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-protobuf-cucumber to 3.10.8

(taca)

2020-03-15 17:21:21 UTC MAIN commitmail json YAML

devel/ruby-protobuf-cucumber: update to 3.10.8

Update ruby-protobuf-cucumber to 3.10.8.

No release notes available.

(taca)

2020-03-15 17:17:29 UTC MAIN commitmail json YAML

doc: Added lang/ruby-cucumber-gherkin version 11.0.0

(taca)

2020-03-15 17:17:13 UTC MAIN commitmail json YAML

lang/Makefile: add and enable ruby-cucumber-gherkin

(taca)

2020-03-15 17:16:28 UTC MAIN commitmail json YAML

lang/ruby-cucumber-gherkin: add package version 11.0.0

Add ruby-cucumber-gherkin package version 11.0.0, it looks like
successor of ruby-gherkin.

Gherkin parser/compiler for Ruby.

(taca)

2020-03-15 17:13:22 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-tty-prompt to 0.21.0

(taca)

2020-03-15 17:12:59 UTC MAIN commitmail json YAML

devel/ruby-tty-prompt: update to 0.21.0

Update ruby-tty-prompt to 0.21.0.

## [v0.21.0] - 2019-03-08

### Added
* Add :min option to #multi_select prompt by Katelyn Schiesser(@slowbro)

### Changed
* Change gemspec to remove test artifacts

### Fixed
* Fix :help_color option for multi_selct prompt by @robbystk

(taca)

2020-03-15 17:10:11 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-necromancer to 0.6.0

(taca)

2020-03-15 17:09:41 UTC MAIN commitmail json YAML

devel/ruby-necromancer: update to 0.6.0

Update ruby-necromancer to 0.6.0.

## [v0.6.0] - 2020-03-08

### Changed
* Change gemspec to remove test artifacts

(taca)

2020-03-15 17:06:22 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-rugged to 0.99.0

(taca)

2020-03-15 17:05:59 UTC MAIN commitmail json YAML

devel/ruby-rugged: update to 0.99.0

Update ruby-rugged to 0.99.0.

No release notes available but it catch up to libssh2 1.9.0.

(taca)

2020-03-15 17:03:58 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-rspec-rails to 3.9.1

(taca)

2020-03-15 17:03:30 UTC MAIN commitmail json YAML

devel/ruby-rspec-rails: update to 3.9.1

Update ruby-rspec-rails to 3.9.1.

### 3.9.1 / 2020-03-10
[Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.9.0...v3.9.1)

Bug Fixes:

* Add missing require for have_enqueued_mail matcher. (Ignatius Reza, #2117)

(taca)

2020-03-15 17:02:34 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-rspec-expectations to 3.9.1

(taca)

2020-03-15 17:01:52 UTC MAIN commitmail json YAML

devel/ruby-rspec-expectations: update to 3.9.1

Update ruby-rspec-expectations to 3.9.1.

### 3.9.1 / 2020-03-13
[Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.9.0...v3.9.1)

Bug Fixes:

* Issue an improved warning when using `respond_to(...).with(n).arguments` and ignore
  the warning when using with `have_attributes(...)`. (Jon Rowe, #1164)

(taca)

2020-03-15 16:59:28 UTC MAIN commitmail json YAML

doc: Removed x11/ruby-tk-gem

(taca)

2020-03-15 16:59:11 UTC MAIN commitmail json YAML

x11/ruby-tk-gem: remove pacakge

Remove ruby-tk-gem pakcage since ruby-tk take place of it.

(taca)

2020-03-15 16:58:23 UTC MAIN commitmail json YAML

x11/Makefile: delete ruby-tk-gem

(taca)

2020-03-15 16:57:11 UTC MAIN commitmail json YAML

doc: note remove of Ruby 2.2 packages

lang/ruby22
lang/ruby22-base

(taca)

2020-03-15 16:55:00 UTC MAIN commitmail json YAML

x11/ruby-tk: add distinfo

Add distinfo.

(taca)

2020-03-15 16:54:31 UTC MAIN commitmail json YAML

x11/ruby-tk: switch to rubygem base

Switch ruby-tk to rubygem base; almost copy from ruby-tk-gem since
now all ruby lanauge package dose not bundle tk interface.

There should be no change from ruby-tk-gem.

(taca)

2020-03-15 16:48:55 UTC MAIN commitmail json YAML

lang/ruby: drop support for Ruby 2.2

* Drop support for Ruby 2.2.
* Update document in comment for Ruby 2.7.

(taca)

2020-03-15 16:44:58 UTC MAIN commitmail json YAML

2020-03-15 16:44:10 UTC MAIN commitmail json YAML

lang/Makefile: delete ruby22-base

(taca)

2020-03-15 16:42:10 UTC MAIN commitmail json YAML

2020-03-15 16:40:27 UTC MAIN commitmail json YAML

lang/ruby22: remove ruby22 package

Start remove of Ruby 2.2 packages, first remove ruby22 package.

(taca)

2020-03-15 16:39:57 UTC MAIN commitmail json YAML

lang/Makefile: delete ruby22

(taca)

2020-03-15 16:29:04 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-redmine-gitmike-theme to 1.2.0

(taca)

2020-03-15 16:28:26 UTC MAIN commitmail json YAML

devel/ruby-redmine-gitmike-theme: update to 1.2.0

Update devel/ruby-redmine-gitmike-theme to 1.2.0.

1.2.0 (2019-10-08)

* Support Redmine4.0

(taca)

2020-03-15 16:24:30 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-redmine-flatly-light-theme to 0.2.4

(taca)

2020-03-15 16:23:57 UTC MAIN commitmail json YAML

devel/ruby-redmine-flatly-light-theme: update to 0.2.4

Update ruby-redmine-flatly-light-theme to 0.2.4.

0.2 (2017-12-10)

* Fix pagination (current page after next page link)

0.2.1 (2018-01-27)

* Fix projects list for redmine 3.4.3 #61
* Disable redmine responsive #59

0.2.2 (2018-09-11)

* Fix projects list page styles #64
* Fix opening left menu when enabled authentication required #63

0.2.3 (2019-10-26)

* #65 Fix DMSF plugin table header text color

0.2.4 (2019-11-18)

* #66 Fit project names in drop-down

(taca)

2020-03-15 16:15:35 UTC MAIN commitmail json YAML

doc: Updated wm/swc to 0.0.0.20200228

(nia)

2020-03-15 16:15:24 UTC MAIN commitmail json YAML

swc: Update to 0.0.0.20200228

Fixes the server-side decoration protocol implementation, and upstreams
a fix for Qt5.

Applications supporting the protocol (e.g. Qt apps) will no longer display
client-side decorations.

(nia)

2020-03-15 16:09:28 UTC MAIN commitmail json YAML

doc: Remove duplicate line

(nia)

2020-03-15 16:06:14 UTC MAIN commitmail json YAML

doc: Updated devel/wayland-protocols to 1.20

(nia)

2020-03-15 16:06:03 UTC MAIN commitmail json YAML

doc: Updated devel/wayland-protocols to 1.20

(nia)

2020-03-15 16:05:53 UTC MAIN commitmail json YAML

wayland-protocols: Update to 1.20

Based on a patch from wiz@, thanks!

Changes:

Jonas ��dahl (2):
      Makefile.am: Also distribute README.md, GOVERNANCE.md and MEMBERS.md
      configure.ac: Bump version to 1.20

Ivan Molodetskikh (2):
      presentation-time: add missing bitfield marker
      xdg-shell: add missing enum attribute to resize

Johan Klokkhammer Helsing (1):
      Update point-of-contact for Qt

Jonas ��dahl (4):
      xdg-shell: Remove left-over paragraph from pre positioner versions
      xdg-shell: Add support for implicit popup repositioning
      xdg-shell: Add support for explicit popup repositioning
      configure.ac: Bump version to 1.19

Simon Ser (5):
      Add governance document
      Add .editorconfig
      readme: changes should be submitted via GitLab
      Add .gitlab-ci.yml
      Convert plaintext documents to Markdown

(nia)

2020-03-15 16:03:44 UTC MAIN commitmail json YAML

doc: Updated devel/wayland to 1.18.0

(nia)

2020-03-15 16:03:27 UTC MAIN commitmail json YAML

wayland: Update to 1.18.0

Based on a patch from wiz@, thanks! The main change I made was tricking
autoconf into thinking NetBSD doesn't have posix_fallocate.

The main new features in this release are:

- Add support for the Meson build system (autotools is still supported
  but will be removed in a future release)
- Add API to tag proxy objects to allow applications and toolkits to
  share the same Wayland connection
- Track wayland-server timers in user-space to prevent creating too
  many FDs
- Add wl_global_remove, a new function to mitigate race conditions with
  globals

(nia)

2020-03-15 16:01:20 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-redmine to 4.0.6

(taca)

2020-03-15 16:00:55 UTC MAIN commitmail json YAML

2020-03-15 15:56:24 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-octokit to 4.17.0

(taca)

2020-03-15 15:55:53 UTC MAIN commitmail json YAML

devel/ruby-octokit: update to 4.17.0

Update ruby-octokit to 4.17.0.

4.17.0 (2020-03-10)

Documentation

* #1200 Fix an API link in the Search client @NickLaMuro

Preview Header Support

* #1183 Enable issue events API to return project events @gammons
* #1203 Update deprecated application API to new preview @oreoshake

Bug Fixes

* #1201 Fix random test failures @MSP-Greg

(taca)

2020-03-15 15:52:34 UTC MAIN commitmail json YAML

doc: Updated archivers/ruby-zip to 2.3.0

(taca)

2020-03-15 15:52:07 UTC MAIN commitmail json YAML

archivers/ruby-zip: update to 2.3.0

Update ruby-zip to 2.3.0.

pkgsrc change: Add "USE_LANGUAGES= # none".

2.0.0 (2019-09-25)

Security

* Default the validate_entry_sizes option to true, so that callers can
  trust an entry's reported size when using extract #403

  o This option defaulted to false in 1.3.0 for backward compatibility,
    but it now defaults to true.  If you are using an older version of
    ruby and can't yet upgrade to 2.x, you can still use 1.3.0 and set the
    option to true.

Tooling / Documentation

* Remove test files from the gem to avoid problems with antivirus
  detections on the test files #405 / #384
* Drop support for unsupported ruby versions #406

2.1.0 (2020-01-25)

* Fix (at least partially) the restore_times and restore_permissions
  options to Zip::File.new #413

  o Previously, neither option did anything, regardless of what it was set
    to.  We have therefore defaulted them to false to preserve the current
    behavior, for the time being.  If you have explicitly set either to
    true, it will now have an effect.
  o Fix handling of UniversalTime (mtime, atime, ctime) fields. #421
  o Previously, Zip::File did not pass the options to Zip::Entry in some
    cases.  #423
  o Note that restore_times in this release does nothing on Windows and
    only restores mtime, not atime or ctime.

* Allow Zip::File.open to take an options hash like Zip::File.new #418

* Always print warnings with warn, instead of a mix of puts and warn #416

* Create temporary files in the system temporary directory instead of the
  directory of the zip file #411

* Drop unused tmpdir requirement #411

Tooling

* Move CI to xenial and include jruby on JDK11 #419

2.2.0 (2020-02-01)

* Add support for decompression plugin gems #427

2.3.0 (2020-03-14)

* Fix frozen string literal error #431
* Set OutputStream.write_buffer's buffer to binmode #439
* Upgrade rubocop and fix various linting complaints #437 #440

Tooling:

* Add a bin/console script for development #420
* Update rake requirement (development dependency only) to fix a security
  alert.

(taca)

2020-03-15 15:39:04 UTC MAIN commitmail json YAML

doc: Added sysutils/ruby-chef-utils version 15.8.23

(taca)

2020-03-15 15:38:34 UTC MAIN commitmail json YAML

sysutils/Makefile: add and enable ruby-chef-utils

(taca)

2020-03-15 15:37:00 UTC MAIN commitmail json YAML

sysutils/ruby-chef-utils: add package version 15.8.23

Add ruby-chef-utils package version 15.8.23.

Chef Utils

Basic utility functions for Core Chef development.

(taca)

2020-03-15 15:32:37 UTC MAIN commitmail json YAML

x11/ruby-tk-gem: allow build with ruby27-base

Allow build package with ruby27-base.

(taca)

2020-03-15 15:31:37 UTC MAIN commitmail json YAML

lang/Makefile: add and enable ruby27

(taca)

2020-03-15 15:31:01 UTC MAIN commitmail json YAML

doc: Added lang/ruby27 version 2.7.0

(taca)

2020-03-15 15:30:30 UTC MAIN commitmail json YAML

lang/ruby27: add ruby27 package version 2.7.0

Add ruby27 package version 2.7.0.

(taca)

2020-03-15 15:29:11 UTC MAIN commitmail json YAML

2020-03-15 15:27:43 UTC MAIN commitmail json YAML

doc: Added lang/ruby27-base version 2.7.0

(taca)

2020-03-15 15:27:13 UTC MAIN commitmail json YAML

lang/Makefile: add and enable ruby27-base

(taca)

2020-03-15 15:26:22 UTC MAIN commitmail json YAML

lang/ruby27-base: add ruby-base version 2.7.0

Add ruby27-base 2.7.0 package.  This package is Ruby 2.7 release
minimum base package.

Ruby is the interpreted scripting language for quick and
easy object-oriented programming.  It has many features to
process text files and to do system management tasks (as in
Perl).  It is simple, straight-forward, and extensible.

Features of Ruby are shown below.

  + Simple Syntax
  + *Normal* Object-Oriented features (ex. class, method calls)
  + *Advanced* Object-Oriented features (ex. Mix-in, Singleton-method)
  + Operator Overloading
  + Exception Handling
  + Iterators and Closures
  + Garbage Collection
  + Dynamic Loading of Object files (on some architecture)
  + Highly Portable (works on many UNIX machines, and on DOS, Windows,
    Mac, etc.)

Ruby 2.7 introduces a number of new features and performance
improvements, most notably:

  * Pattern Matching (Experimental)
  * REPL improvement
  * Compaction GC
  * Separation of positional and keyword arguments

(taca)

2020-03-15 15:19:55 UTC MAIN commitmail json YAML

lang/ruby: add support for Ruby 2.7

Add support for Ruby 2.7.

(taca)

2020-03-15 14:28:36 UTC MAIN commitmail json YAML

lang/python: add show-all-pyversion target

When devel/py-flake8 is built with PYTHON_VERSION_DEFAULT=27, it
nevertheless depends on py37-test-runner-5.2. This is surprising, and to
help researching this issue, all Python-related variables can be listed
using "bmake show-all-pyversion".

(rillig)

2020-03-15 14:14:16 UTC MAIN commitmail json YAML

doc: Added sysutils/u-boot-a20-olinuxino-micro-emmc version 2018.11

(uwe)

2020-03-15 14:09:48 UTC MAIN commitmail json YAML

Add sysutils/u-boot-a20-olinuxino-micro-emmc

(uwe)

2020-03-15 14:03:44 UTC MAIN commitmail json YAML

(chat/toxcore) Update buildlink3.mk for lib/libtoxcore.so.2.10.0 bump

(mef)

2020-03-15 13:45:07 UTC MAIN commitmail json YAML

devel/py-flake8: fix TEST_DEPENDS for py27

The dependency py-test-[0-9]* resolves to devel/py-test5, but that
version does not support Python 2.7 anymore.

(rillig)

2020-03-15 13:45:06 UTC MAIN commitmail json YAML

doc: Updated chat/toxcore to 0.2.10

(mef)

2020-03-15 13:44:04 UTC MAIN commitmail json YAML

(chat/toxcore) Updated 0.2.7 to 0.2.10

## v0.2.10

### Merged PRs:

- add undef guard in tox_many_tcp_test
- Fix bazel build version at 0.22.0 for CI.
- Disable failing TCP server test
- Do not send the same packet to the same node twice
- add configurable limit on number of stored frozen peers
- Expose api functions for enabling and disabling AV in AV groups
- Specify that buffer size for tox_conference_peer_get_name is given by $size

### Closed issues:

- CirrusCI is failing and blocking PRs
- Onion client review
- Persistent conference's offline peer list always grows and never decreases
- Loaded persistent groups fail to send audio
- How to make libtox4j-c.so for android?
- Bump so version
- Message length is too large log spam

## v0.2.9

### Merged PRs:

-  Add some const qualifiers
-  Implement all min/max functions for (un)signed int types.
-  Fix misaligned 4-byte access in trace logging.
-  Use correct path to test log to cat on error.
-  Display build log for autotools build on failure.
-  Enable auto tests under STRICT_ABI if static libs are available.
-  Add MIN_LOGGER_LEVEL to the Circle CI builds.
-  Avoid sending group messages to a peer before we have its group number
-  Use new WineHQ Debian package repository key
-  Release 0.2.9
-  Merge irungentoo/master back into toktok/master.
-  Allow unauthenticated wine packages in the Windows build.
-  Add cmake option for building additional tests
-  Define tox_conference_id_size and tox_conference_uid_size
-  Avoid format truncation in save compatibility test
-  Upgrade bazel to 0.19.0 to fix the bazel build.
-  Return TOX_ERR_CONFERENCE_SEND_MESSAGE_NO_CONNECTION if we are not
  connected to any peers
-  Fix indices calculation for congestion control.
-  Improve handling of peers entering and leaving conferences
-  Expose offline conference peers in API
-  Fix critical stack overflow arising from VLA usage
-  Add some hopefully helpful documentation to the functions in mono_time.h
-  Change method of PK production for FAKE friend in DHT
-  Increase NOFILE limit for tox-bootstrapd
-  Use `bool` for IPv6 flag in test programs and `DHT_bootstrap`.
-  Add `LOGGER_ASSERT` for checking fatal error conditions.
-  Include `CTest` in CMakeLists.txt to get valgrind support.
-  Consistently use camel case enum names.
-  Add AUTOTEST option to CMakeLists.txt
-  Make tox-bootstrapd free memory on SIGINT and SIGTERM
-  Support DragonFlyBSD and prune unused variables.
-  Ensure save data unchanged after save and load
-  Make saving and loading the responsibility of Tox rather than Messenger
-  Some improvements to tox-bootstrapd's Dockerfile
-  Remove Alpine Linux bootstrap daemon dockerfile.
-  Improve Windows compatibility of toxav code.
-  Add LAN_discovery to the list of apidsl-generated files.
-  conferences saving

### Closed issues:

-  Persistent group titles get mixed up
-  How to run test case?
-  Save file corruption
-  tox_conference_id_size() symbol missing
-  Fails to build with STRICT_ABI option
-  PK should not be generated with random_bytes
-  Test #1081
-  friendlist access (add, delete, ...) causes crashes sometimes
-  Proposal: TFCL [Tox Friend Capabilities Level]
-  packet ranges not very clearly explained
-  Proposal: reduce Video corruption even more by negotating the
  reference frame between sender and receiver
-  Proposal: Tox MessageV2
-  libvpx vulnerability
-  please add documentation to: bwcontroller.c
-  function names misleading in ToxAV
-  WIP: ToxIdenticon - howto
-  PACKET_LOSSY_AV_RESERVED 8 # why?
-  payload_type hardcoded
-  running a normal tox node as tcp relay is not possible
-  [INFO]: network graphs 0.1.9 vs 0.1.10
-  toxcore removes message receipts and filetransfers from memory, when client has short network outage
-  Invalid bit rate prevents call

## v0.2.8

### Merged PRs:

-  Release 0.2.8
-  Avoid use of IPv6 in tests if not supported (e.g. on Travis).
-  Fix memory leak in tcp server by wiping priority queues on deletion.
-  Fix logger level defaulting to TRACE in CMake
-  Remove a function-like macro and replace it with a function.
-  Use a working DHT node for bootstrap tests.
-  Revert "Improve cmake build for MSVC."
-  Reset onion search rate for a friend when we see evidence that they are
  online
-  Run tests on Appveyor (Windows native build).
-  Add Cirrus CI configuration.
-  Use new `@pthread` library from toktok-stack for Windows compat.
-  Run UBSAN (undefined behaviour sanitizer) on Circle CI.
-  Fix using uninitialized mutex on call end
-  Send rejoin packets on conference disconnection
-  Improve cmake build for MSVC
-  Fix yamllint test (it's gone from bazel, add a new one).
-  Fix typos in comments and log and test assertion messages.
-  Fixed a silly boolean practice using uint8_t
-  Format yaml files according to yamllint's requirements and remove branch
  filter for appveyor.
-  Use most recent version of Bazel (0.17.1).
-  Use C++ style casts in C++ code.
-  Use run_auto_test fixture in typing_test.c
-  Standardise header guards.
-  Assert that we don't kill tox before killing toxav.
-  Always use the passed logger (from Messenger) in msi_kill.
-  Fix typo: tcp_replays -> tcp_relays.
-  Use `(void)` for empty parameter lists in C.
-  Ignore "unused-result" warning in super_donators code.
-  Fix login issue on Travis-CI FreeBSD build
-  Include necessary opencv2 header on OSX.
-  Clean up `add_to_list` function a bit.
-  Avoid recursion in `ip_is_lan` and `ip_is_local`.
-  Add tool to find directly recursive calls in toxcore.
-  Remove the use of `CLOCK_MONOTONIC_RAW`.
-  Avoid use of global mutable state in mono_time on win32.
-  Use `code font` for tool names and flags in INSTALL.md.
-  Simplify configure.ac for faster autotools build.
-  Use test clock in run_auto_test tests and dht test
-  Add mechanism for recovering from disconnections in conferences
-  Finish the messenger state plugin system
-  Feature bootstrap trace/debug log output

### Closed issues:

-  Massive red shutdown of nodes
-  Windows cross-compilation is broken
-  Persistent groups don't work properly when using toxync bot
-  How to get groupchat identifier?

(mef)

2020-03-15 13:34:37 UTC MAIN commitmail json YAML

devel/R-Rcpp: remove nonexistent dependency R-rbenchmark

(rillig)

2020-03-15 13:30:07 UTC MAIN commitmail json YAML

doc: Updated mail/thunderbird-l10n to 68.6.0

(ryoon)

2020-03-15 13:29:45 UTC MAIN commitmail json YAML

thunderbird-l10n: Update to 68.6.0

* Sync with mail/thunderbird-68.6.0

(ryoon)

2020-03-15 13:29:30 UTC MAIN commitmail json YAML

Updated mail/thunderbird to 68.6.0

(ryoon)

2020-03-15 13:28:51 UTC MAIN commitmail json YAML

thunderbird: Update to 68.6.0

CVhangelog:
68.6.0
new
Thunderbird now displays a popup window when starting up on a new
profile

changed
Thunderbird now provides partial updates resulting in smaller
downloads

fixed
Searching in message bodies led to false negatives under some
circumstances in quoted-printable encoded HTML bodies

"Get New Messages for All Accounts" not working for OAuth2-authenticated
IMAP accounts

Various security fixes
#CVE-2020-6805: Use-after-free when removing data about origins
#CVE-2020-6806: BodyStream::OnInputStreamReady was missing protections against state confusion
#CVE-2020-6807: Use-after-free in cubeb during stream destruction
#CVE-2020-6811: Devtools' 'Copy as cURL' feature did not fully escape website-controlled data, potentially leading to command injection
#CVE-2019-20503: Out of bounds reads in sctp_load_addresses_from_init
#CVE-2020-6812: The names of AirPods with personally identifiable information were exposed to websites with camera or microphone permission
#CVE-2020-6814: Memory safety bugs fixed in Thunderbird 68.6

68.0.5
new
Support for Client Identity IMAP/SMTP Service Extension

Support for OAuth 2.0 authentication for POP3 accounts

fixed
Status area goes blank during account setup

Calendar: Could not remove color for default categories

Calendar: Prevent calendar component loading multiple times

Calendar: Today pane did not retain width between sessions

Various security fixes
#CVE-2020-6793: Out-of-bounds read when processing certain email messages
#CVE-2020-6794: Setting a master password post-Thunderbird 52 does not delete unencrypted previously stored passwords
#CVE-2020-6795: Crash processing S/MIME messages with multiple signatures
#CVE-2020-6797: Extensions granted downloads.open permission could open arbitrary applications on Mac OSX
#CVE-2020-6798: Incorrect parsing of template tag could result in JavaScript injection
#CVE-2020-6792: Message ID calculcation was based on uninitialized data
#CVE-2020-6800: Memory safety bugs fixed in Thunderbird 68.5

(ryoon)

2020-03-15 12:52:26 UTC MAIN commitmail json YAML

doc: Updated lang/openjdk-bin to 13.0.2

(ryoon)

2020-03-15 12:47:31 UTC MAIN commitmail json YAML

openjdk-bin: Update to 13.0.2

Changelog:
Fix security bugs.
New festures: JEP 350, JEP-351, JEP-353, JEP-354, JEP-355

(ryoon)

2020-03-15 11:59:05 UTC MAIN commitmail json YAML

doc: Updated chat/skypeweb-purple to 1.5

(mef)

2020-03-15 11:58:54 UTC MAIN commitmail json YAML

(chat/skypeweb-purple) Updated 1.3 to 1.5

Change Log
----------
  * 1.5 - Adds 'alternative auth' support, adds support for suggested
    contacts, fixes 'deny' friend requests

  * 1.4 - libpurple3.0 support, newer HTTP library which uses less
    CPU, fix for adding/removing/blocking contacts

(mef)

2020-03-15 11:54:22 UTC MAIN commitmail json YAML

doc: Updated net/tigervnc to 1.10.1nb2

(wiz)

2020-03-15 11:54:12 UTC MAIN commitmail json YAML

tigervnc: switch back to xserver-1.17

With 1.19, Xvnc immediately dumps core on startup for me.

Bump PKGREVISION.

(wiz)

2020-03-15 11:53:22 UTC MAIN commitmail json YAML

(chat/skypeweb-purple) Githubify

(mef)

2020-03-15 11:37:34 UTC MAIN commitmail json YAML

doc: Updated net/gallery-dl to 1.13.2

(leot)

2020-03-15 11:37:17 UTC MAIN commitmail json YAML

gallery-dl: Update to 1.13.2

Changes:
1.13.2
------
### Additions
- [furaffinity] extract more metadata
- [instagram] add `post_shortcode` metadata field (#525)
- [kabeuchi] add extractor (#561)
- [newgrounds] add extractor for favorited posts (#394)
- [pixiv] implement `avatar` option (#595, #623)
- [twitter] add extractor for bookmarked Tweets (#625)

### Fixes
- [bcy] reduce number of HTTP requests during data extraction
- [e621] update to new interface (#635)
- [exhentai] handle incomplete MIME types (#632)
- [hitomi] improve metadata extraction
- [mangoxo] fix login
- [newgrounds] improve error handling when extracting post data

(leot)

2020-03-15 11:31:36 UTC MAIN commitmail json YAML

doc: Updated pkgtools/pkglint to 19.4.11

(rillig)

2020-03-15 11:31:24 UTC MAIN commitmail json YAML

2020-03-15 11:16:05 UTC MAIN commitmail json YAML

doc: Updated chat/matterircd to 0.19.4

(mef)

2020-03-15 11:15:55 UTC MAIN commitmail json YAML

(chat/matterircd) Updated 0.18.4 to 0.19.4

# v0.19.4

## Bugfix

- slack: fix regression with slack library (#264)
- slack: fix an unexpected panic (#263)

# v0.19.3

## Enhancement

* general: Add UPDATELASTVIEWED command, and make DisableAutoView work consistently (#255)
* slack: Handle message edits and deletion (#260)
* slack: Add handling of reactions, stars and pins (#229)

## Bugfix

* mattermost: Fix a panic #247
* mattermost: Fixes incorrect users because of paging. #244
* mattermost: Fix outdated channel issue
* mattermost: Add paging so we can see > 200 users in a channel #248
* mattermost: Fix expired session panic #259
* general: Fix datarace #246
* general: Fix empty JoinInclude
* general: Fix panic #257

This release couldn't exist without the following contributors:
@Aketzu, @bucko909, @42wim

# v0.19.2
## Enhancement
* general: Add a default value matterirc.toml for the '-conf' flag (#240)
* slack: library updated
* mattermost: library updated
* mattermost: Add support for channel created/deleted events

## Bugfix
* mattermost: Remove ourselves from the channel when removed in mattermost. Fixes #233
* mattermost: Add/remove ourselves to the channel if we join using the GUI. #239
* mattermost: Update topics in mattermost. Closes #241
* mattermost: Fix pastes and attachments in direct message. Closes #228
* mattermost: Update channels if not known on join yet

# v0.19.1
## New features
* mattermost: Added support for disabling of automatic view flag updates (#226). See DisableAutoView in matterircd.toml.example
* slack: Add message showing enhancements and add slackbot to all channels (#230)

## Bugfix
* general: Fix tight loop (100% CPU). Closes #231

# v0.19.0
## New features
* irc: Add support for spoofing query messages. #195
* You can now see your own messages you've typed on slack/mattermost web in irc
* irc: Add PasteBufferTimeout option (send ascii-art!)
  * See matterircd.toml.example for an example.
  * PasteBufferTimeout specifies the amount of time in milliseconds that messages get kept in matterircd internal buffer before being sent to
  mattermost or slack.  Messages that will be received in this time will be concatenated together
  So this can be used to paste stuff like ascii-art or code.
  Default 0 (is disabled)
  Depending on how fast you type 2500 is a good number

## Bugfix
* slack: Correctly handle different nick and username #203
* slack: Ignore channel join messages #198

(mef)