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 (28m)  pkgsrc-2024Q1 (15d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (75d)  pkgsrc-2023Q3 (154d) 

2024-05-13 11:28:15 UTC Now

2020-06-01 16:28:11 UTC MAIN commitmail json YAML

Updated devel/py-aiounittest, devel/py-pip

(adam)

2020-06-01 16:27:17 UTC MAIN commitmail json YAML

py-pip: updated to 20.1.1

20.1.1
======

Deprecations and Removals
-------------------------
- Revert building of local directories in place, restoring the pre-20.1
  behaviour of copying to a temporary directory.
- Drop parallelization from ``pip list --outdated``.

Bug Fixes
---------
- Fix metadata permission issues when umask has the executable bit set.
- Avoid unnecessary message about the wheel package not being installed
  when a wheel would not have been built. Additionally, clarify the message.

20.1
====

Process
-------
- Document that pip 21.0 will drop support for Python 2.7.

Features
--------
- Add ``pip cache dir`` to show the cache directory.

Bug Fixes
---------
- Abort pip cache commands early when cache is disabled.
- Correctly set permissions on metadata files during wheel installation,
  to permit non-privileged users to read from system site-packages.

20.1b1
======

Deprecations and Removals
-------------------------
- Remove emails from AUTHORS.txt to prevent usage for spamming, and only populate names in AUTHORS.txt at time of release
- Remove deprecated ``--skip-requirements-regex`` option.
- Building of local directories is now done in place, instead of a temporary
  location containing a copy of the directory tree.
- Remove unused ``tests/scripts/test_all_pip.py`` test script and the ``tests/scripts`` folder.

Features
--------
- pip now implements PEP 610, so ``pip freeze`` has better fidelity
  in presence of distributions installed from Direct URL requirements.
- Add ``pip cache`` command for inspecting/managing pip's wheel cache.
- Raise error if ``--user`` and ``--target`` are used together in ``pip install``
- Significantly improve performance when ``--find-links`` points to a very large HTML page.
- Indicate when wheel building is skipped, due to lack of the ``wheel`` package.
- Change default behaviour to always cache responses from trusted-host source.
- An alpha version of a new resolver is available via ``--unstable-feature=resolver``.

Bug Fixes
---------
- Correctly freeze a VCS editable package when it is nested inside another VCS repository.
- Correctly handle ``%2F`` in URL parameters to avoid accidentally unescape them
  into ``/``.
- Reject VCS URLs with an empty revision.
- Warn when an invalid URL is passed with ``--index-url``
- Use better mechanism for handling temporary files, when recording metadata
  about installed files (RECORD) and the installer (INSTALLER).
- Correctly detect global site-packages availability of virtual environments
  created by PyPA窶冱 virtualenv>=20.0.
- Remove current directory from ``sys.path`` when invoked as ``python -m pip <command>``
- Stop failing uninstallation, when trying to remove non-existent files.
- Prevent an infinite recursion with ``pip wheel`` when ``$TMPDIR`` is within the source directory.
- Significantly speedup ``pip list --outdated`` by parallelizing index interaction.
- Improve Windows compatibility when detecting writability in folder.

Vendored Libraries
------------------
- Update semi-supported debundling script to reflect that appdirs is vendored.
- Add ResolveLib as a vendored dependency.
- Upgrade certifi to 2020.04.05.1
- Upgrade contextlib2 to 0.6.0.post1
- Upgrade distro to 1.5.0.
- Upgrade idna to 2.9.
- Upgrade msgpack to 1.0.0.
- Upgrade packaging to 20.3.
- Upgrade pep517 to 0.8.2.
- Upgrade pyparsing to 2.4.7.
- Remove pytoml as a vendored dependency.
- Upgrade requests to 2.23.0.
- Add toml as a vendored dependency.
- Upgrade urllib3 to 1.25.8.

Improved Documentation
----------------------
- Emphasize that VCS URLs using git, git+git and git+http are insecure due to
  lack of authentication and encryption
- Clarify the usage of --no-binary command.
- Clarify the usage of freeze command in the example of Using pip in your program
- Add a "Copyright" page.
- Added example of defining multiple values for options which support them

20.0.2
======

Bug Fixes
---------
- Fix a regression in generation of compatibility tags.

Vendored Libraries
------------------
- Upgrade packaging to 20.1

20.0.1
======

Bug Fixes
---------
- Rename an internal module, to avoid ImportErrors due to improper uninstallation.

20.0
====

Process
-------
- Switch to a dedicated CLI tool for vendoring dependencies.

Deprecations and Removals
-------------------------
- Remove wheel tag calculation from pip and use ``packaging.tags``. This
  should provide more tags ordered better than in prior releases.
- Deprecate setup.py-based builds that do not generate an ``.egg-info`` directory.
- The pip>=20 wheel cache is not retro-compatible with previous versions. Until
  pip 21.0, pip will continue to take advantage of existing legacy cache
  entries.
- Deprecate undocumented ``--skip-requirements-regex`` option.
- Deprecate passing install-location-related options via ``--install-option``.
- Use literal "abi3" for wheel tag on CPython 3.x, to align with PEP 384
  which only defines it for this platform.
- Remove interpreter-specific major version tag e.g. ``cp3-none-any``
  from consideration. This behavior was not documented strictly, and this
  tag in particular is `not useful <https://snarky.ca/the-challenges-in-designing-a-library-for-pep-425/>`_.
  Anyone with a use case can create an issue with pypa/packaging.
- Wheel processing no longer permits wheels containing more than one top-level
  .dist-info directory.
- Support for the ``git+git@`` form of VCS requirement is being deprecated and
  will be removed in pip 21.0. Switch to ``git+https://`` or
  ``git+ssh://``. ``git+git://`` also works but its use is discouraged as it is
  insecure.

Features
--------
- Default to doing a user install (as if ``--user`` was passed) when the main
  site-packages directory is not writeable and user site-packages are enabled.
- Warn if a path in PATH starts with tilde during ``pip install``.
- Cache wheels built from Git requirements that are considered immutable,
  because they point to a commit hash.
- Add option ``--no-python-version-warning`` to silence warnings
  related to deprecation of Python versions.
- Cache wheels that ``pip wheel`` built locally, matching what
  ``pip install`` does. This particularly helps performance in workflows where
  ``pip wheel`` is used for `building before installing
  <https://pip.pypa.io/en/stable/user_guide/#installing-from-local-packages>`_.
  Users desiring the original behavior can use ``pip wheel --no-cache-dir``.
- Display CA information in ``pip debug``.
- Show only the filename (instead of full URL), when downloading from PyPI.
- Suggest a more robust command to upgrade pip itself to avoid confusion when the
  current pip command is not available as ``pip``.
- Define all old pip console script entrypoints to prevent import issues in
  stale wrapper scripts.
- The build step of ``pip wheel`` now builds all wheels to a cache first,
  then copies them to the wheel directory all at once.
  Before, it built them to a temporary directory and moved
  them to the wheel directory one by one.
- Expand ``~`` prefix to user directory in path options, configs, and
  environment variables. Values that may be either URL or path are not
  currently supported, to avoid ambiguity:

  * ``--find-links``
  * ``--constraint``, ``-c``
  * ``--requirement``, ``-r``
  * ``--editable``, ``-e``

Bug Fixes
---------
- Correctly handle system site-packages, in virtual environments created with venv (PEP 405).
- Fix case sensitive comparison of pip freeze when used with -r option.
- Enforce PEP 508 requirement format in ``pyproject.toml``
  ``build-system.requires``.
- Make ``ensure_dir()`` also ignore ``ENOTEMPTY`` as seen on Windows.
- Fix building packages which specify ``backend-path`` in pyproject.toml.
- Do not attempt to run ``setup.py clean`` after a ``pep517`` build error,
  since a ``setup.py`` may not exist in that case.
- Fix passwords being visible in the index-url in
  "Downloading <url>" message.
- Change method from shutil.remove to shutil.rmtree in noxfile.py.
- Skip running tests which require subversion, when svn isn't installed
- Fix not sending client certificates when using ``--trusted-host``.
- Make sure ``pip wheel`` never outputs pure python wheels with a
  python implementation tag.
- Include ``subdirectory`` URL fragments in cache keys.
- Fix typo in warning message when any of ``--build-option``, ``--global-option``
  and ``--install-option`` is used in requirements.txt
- Fix the logging of cached HTTP response shown as downloading.
- Effectively disable the wheel cache when it is not writable, as is the
  case with the http cache.
- Correctly handle relative cache directory provided via --cache-dir.

Vendored Libraries
------------------
- Upgrade CacheControl to 0.12.5
- Upgrade certifi to 2019.9.11
- Upgrade colorama to 0.4.1
- Upgrade distlib to 0.2.9.post0
- Upgrade ipaddress to 1.0.22
- Update packaging to 20.0.
- Upgrade pkg_resources (via setuptools) to 44.0.0
- Upgrade pyparsing to 2.4.2
- Upgrade six to 1.12.0
- Upgrade urllib3 to 1.25.6

Improved Documentation
----------------------
- Document that "coding: utf-8" is supported in requirements.txt
- Explain how to get pip's source code in `Getting Started <https://pip.pypa.io/en/stable/development/getting-started/>`_
- Describe how basic authentication credentials in URLs work.
- Add more clear installation instructions
- Fix documentation links for index options
- Better document the requirements file format

(adam)

2020-06-01 16:25:15 UTC MAIN commitmail json YAML

doc: Updated parallel/paexec to 1.1.4

(cheusov)

2020-06-01 16:18:16 UTC MAIN commitmail json YAML

Update to version 1.1.4

  Remove local function pr_open and use it from libmaa library.
  So, now paexec requires libmaa.

  "mkcmake help" shows configuring variables and descriptions for
  targets.

  Use mkc's feature "getdelim" instead of local implementation.
  So, we need at least mk-configure 0.33.0

  Optimization flags defaults to "-O2 -g"

(cheusov)

2020-06-01 16:13:42 UTC MAIN commitmail json YAML

2020-06-01 16:07:09 UTC MAIN commitmail json YAML

Updated textproc/py-xlsxwriter, textproc/py-xmlschema, devel/py-semantic_version, textproc/py-relatorio

(adam)

2020-06-01 16:06:18 UTC MAIN commitmail json YAML

py-relatorio: updated to 0.9.1

0.9.1:
* Do not guess type of cell if directive is not alone
* Add support for Python 3.8
* Support file-magic as fallback to python-magic

(adam)

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

py-semantic_version: updated to 2.8.5

2.8.5:
Properly handle wildcards in ``SimpleSpec`` (e.g. ``==1.2.*``).

(adam)

2020-06-01 16:01:01 UTC MAIN commitmail json YAML

py-xmlschema: updated to 1.2.0

v1.2.0:
* Add ColumnarConverter class
* Add command-line interface utility for document API
* Fix a stable public API for XSD types, elements and attributes
* Add security modes for accessing URLs

(adam)

2020-06-01 15:48:57 UTC MAIN commitmail json YAML

doc: Updated sysutils/pciutils to 3.7.0.

(msaitoh)

2020-06-01 15:48:20 UTC MAIN commitmail json YAML

2020-06-01 15:47:54 UTC MAIN commitmail json YAML

py-xlsxwriter: updated to 1.2.9

1.2.9:
* Added support for ``stacked`` and ``percent_stacked`` Line charts.

(adam)

2020-06-01 15:47:53 UTC MAIN commitmail json YAML

Update pciutils to 3.7.0.

2020-05-31  Martin Mares <mj@ucw.cz>

* Released as 3.7.0.

* Added or improved the following capabilities: Designated
  Vendor-Specific, Compute eXpress Link, Resizable BARs,
  VF Resizable BARs, Link Capabilities 2, Link Status 2.

* On Linux, lspci can show IOMMU groups.

* setpci can be asked to skip bus scan and operate on a device
  completely specified by its domain/bus/dev/func address. This
  involved major internal cleanup.

* The above feature of setpci uses the pci_get_dev() function,
  which obtains a struct pci_dev without doing a bus scan. This was
  always possible, but apparently little used, because back-ends
  frequently choked when operating on such devices. Fixed a lot
  of minor bugs related to this.

* Also, back-ends which do not support domains now correctly fail when
  trying to access devices outside domain 0.

* Semantics of pci_fill_info() and pci_dev->known_fields was
  underspecified, which lead to inconsistencies between back-ends.
  Improved documentation to give a more precise definition and updated
  all back-ends to conform to it. Most importantly,
  pci_dev->known_fields shows all fields requested over the lifetime
  of the pci_dev, but never those which are not supported by the
  back-end.

* As usually, updated pci.ids to the current snapshot of the database.

(msaitoh)

2020-06-01 15:45:35 UTC MAIN commitmail json YAML

Updated devel/py-aiofiles, devel/py-deprecation

(adam)

2020-06-01 15:43:55 UTC MAIN commitmail json YAML

py-deprecation: updated to 2.1.0

2.1.0:
Unknown changes

(adam)

2020-06-01 15:37:40 UTC MAIN commitmail json YAML

py-aiofiles: updated to 0.5.0

0.5.0:
Python 3.8 support. Code base modernization (using async/await instead of asyncio.coroutine/yield from).
Added aiofiles.os.remove, aiofiles.os.rename, aiofiles.os.mkdir, aiofiles.os.rmdir.

(adam)

2020-06-01 15:36:21 UTC MAIN commitmail json YAML

doc: Updated sysutils/intel-microcode-netbsd to 20200520.

(msaitoh)

2020-06-01 15:34:40 UTC MAIN commitmail json YAML

Update intel-microcode-netbsd to 20200520.

== 20200520 Release ==
-- Updates upon 20200508 release --
Processor            Identifier    Version      Products
Model        Stepping F-MO-S/PI      Old->New
---- new platforms ----------------------------------------

---- updated platforms ------------------------------------
SNB-E/EN/EP  C1/M0    6-2d-6/6d 0000061f->00000621 Xeon E3/E5, Core X
SNB-E/EN/EP  C2/M1    6-2d-7/6d 00000718->0000071a Xeon E3/E5, Core X

---- removed platforms ------------------------------------

(msaitoh)

2020-06-01 15:08:38 UTC MAIN commitmail json YAML

archivers/lxqt-archiver: declare graphics/hicolo-icon-theme

(pin)

2020-06-01 15:06:15 UTC MAIN commitmail json YAML

sysutils/pcmanfm-qt: Regenerate patchsum

(pin)

2020-06-01 15:04:57 UTC MAIN commitmail json YAML

x11/lxqt-session: Regenerate patchsum

(pin)

2020-06-01 15:03:00 UTC MAIN commitmail json YAML

x11/lxqt-globalkeys: Remove unneeded patch

(pin)

2020-06-01 15:00:59 UTC MAIN commitmail json YAML

2020-06-01 14:58:40 UTC MAIN commitmail json YAML

x11/liblxqt: Remove unneeded patch

(pin)

2020-06-01 14:56:36 UTC MAIN commitmail json YAML

graphics/lximage-qt: Remove wip reference

(pin)

2020-06-01 14:29:00 UTC MAIN commitmail json YAML

x11/lxqt-config: Remove references to wip

(pin)

2020-06-01 12:48:49 UTC MAIN commitmail json YAML

doc: Updated meta-pkgs/lxqt to 0.15.0

(pin)

2020-06-01 12:48:29 UTC MAIN commitmail json YAML

2020-06-01 12:39:35 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-admin to 0.15.0

(pin)

2020-06-01 12:39:14 UTC MAIN commitmail json YAML

x11/lxqt-admin: update to 0.15.0

lxqt-admin-0.15.0 / 2020-04-23
==============================
  * Bumped version to 0.15.0.
  * Removed (duplicated) string casts definitions.
  * Avoid `==` shell test usage.
  * Allow build admin-user on NBSD.
  * Use QString Use multi-arg.
  * Replace deprecated QLatin1Literal.
  * Use the static QFileInfo method `exists()`.
  * Avoided C++11 possible range-loop Qt container detach.

(pin)

2020-06-01 12:34:28 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-session to 0.15.0

(pin)

2020-06-01 12:34:06 UTC MAIN commitmail json YAML

x11/lxqt-session: update to 0.15.0

lxqt-session-0.15.0 / 2020-04-22
================================
  * Bumped version to 0.15.0.
  * C++11 code updates.
  * Removed redundant variable SAL_USE_VCLPLUGIN from startlxqt.
  * Fixed lxqt-session memory leak (triggered by wine and specific games).
  * Remove deprecated QDesktopWidget.
  * Corrected dialog location with muti-screen setups.

(pin)

2020-06-01 12:31:23 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-runner to 0.15.0

(pin)

2020-06-01 12:31:01 UTC MAIN commitmail json YAML

x11/lxqt-runner: update to 0.15.0

lxqt-runner-0.15.0 / 2020-04-23
===============================
  * cmake: Enhance lxqt-globalkeys minimum required version.
  * Smoother search.
  * Removed deprecated QDesktopWidget.

(pin)

2020-06-01 12:24:41 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-panel to 0.15.1

(pin)

2020-06-01 12:24:07 UTC MAIN commitmail json YAML

x11/lxqt-panel: update to 0.15.1

lxqt-panel-0.15.1 / 2020-05-20
==============================
  * Bumped version to 0.15.1.
  * Fixed a problem in keyboard indicator flag, that might cause a huge amount of error messages.
  * Let the panel be at virtual screen edges but not between screens.

lxqt-panel-0.15.0 / 2020-04-22
==============================
  * Bumped version to 0.15.0.
  * Fixed cut text in World Clock text.
  * Silenced some compiler warnings.
  * Show (the old) system tray icons in a predictable order and add a spacing between them.
  * Made showing of the week number optional in World Clock.
  * Fixed icons of applications like Skype, Doscord, etc. in Status Notifier.
  * Fixed possible abort on assert in WindowNotifier.
  * Don't include headers of plugins that aren't being built.
  * Fetch window icons in an appropriate size to avoid scaling in task bar.
  * Don't (possibly) block on initializing statusnotifier.
  * Avoid char raw strings literals memory allocations.
  * Don't use automatic string conversions.
  * Override the menu icon size only if a custom font size is selected.
  * Enhance service name registration in statusnotifier.
  * Fixed a crash in LXQtTaskButton under kwin_wayland.
  * Only show group popup on left clicking a grouping task button.
  * Added the option "Show only active desktop" to Desktop Switcher.
  * Better text eliding and painting of task buttons.
  * Smoother menu search.
  * Added an option to toggle volume notifications with keyboard.
  * Made quicklaunch respect Panel's lock state.
  * Added hints for Ctrl+DND to Quick Launch.
  * Cleanup and fixes for the taksbar code.
  * Release mouse after task button DND (to prevent them from remaining pressed after being dragged).
  * Reset panel style sheet before updating it (to update plugin handles with Qt  5.13 when panel orientation changes).
  * Removed press-and-hold popup menu from launchers in Quick Launch.
  * Check if panel is under mouse on auto-hiding.
  * Removed QDesktopWidget from panel.
  * Put panel only at an edge of virtual screen (to prevent it from being positioned at the middle of virtual screen).
  * Set the geometry of panel before showing it (because, otherwise. some WMs might not position the panel correctly).
  * Removed deprecated QImage method `byteCount()` and used `sizeInBytes()` instead.
  * Remove deprecated `trUtf8()` and used `tr()` instead.
  * Fixd eventFilter() logic in kbindicator.
  * Set alignment for layout button in kbindicator.
  * Add basic support for country flags to Keyboard status indicator.
  * Fixed high CPU usage of Desktop Switcher.
  * Added an option to Task Manager for moving window with mouse wheel.
  * Added a plugin to change display backlight.

(pin)

2020-06-01 12:19:16 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-config to 0.15.0

(pin)

2020-06-01 12:18:53 UTC MAIN commitmail json YAML

x11/lxqt-config: Remove wip ref

(pin)

2020-06-01 12:17:53 UTC MAIN commitmail json YAML

x11/lxqt-config: update to 0.15.0

lxqt-config-0.15.0 / 2020-04-22
===============================
  * Fixed changing of shortcut for switching keyboard layout.
  * Inserted default GTK3 themes in lxqt-config-appearance.
  * Set cursor style in GTK2, GTK3 and xsettingsd.
  * Don't use automatic string conversions.
  * C++11 code updates.
  * A better method to drag and drop monitors in lxqt-config-monitor.
  * Removed old mouse accel/sensitivity options.
  * Fixed warnings on applying settings in lxqt-config-monitor.
  * Fixed forgetting of lxqt-config-monitor's config.
  * Removed old mouse accel/sensitivity options.

(pin)

2020-06-01 12:15:36 UTC MAIN commitmail json YAML

doc: Updated security/lxqt-openssh-askpass to 0.15.0

(pin)

2020-06-01 12:15:15 UTC MAIN commitmail json YAML

security/lxqt-openssh-askpass: update to 0.15.0

lxqt-openssh-askpass-0.15.0 / 2020-04-23
========================================
  * Bumped version to 0.15.0.
  * Removed (duplicated) string casts definitions.

(pin)

2020-06-01 12:13:01 UTC MAIN commitmail json YAML

doc: Updated sysutils/lxqt-powermanagement to 0.15.0

(pin)

2020-06-01 12:12:38 UTC MAIN commitmail json YAML

sysutils/lxqt-powermanagement

lxqt-powermanagement-0.15.0 / 2020-04-22
========================================
  * Bumped version to 0.15.0.
  * C++11 code updates.
  * Remove (duplicated) string casts definitions.
  * Added an option to change the display backlight when the computer is idle.

(pin)

2020-06-01 12:10:17 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-notificationd to 0.15.0

(pin)

2020-06-01 12:09:51 UTC MAIN commitmail json YAML

x11/lxqt-notificationd: update to 0.15.0

lxqt-notificationd-0.15.0 / 2020-04-22
======================================
  * Bumped version to 0.15.0.
  * Used nullptr.
  * Removed (duplicated) string casts definitions.
  * Use async calls to query server status information.

(pin)

2020-06-01 12:02:39 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-globalkeys to 0.15.0

(pin)

2020-06-01 12:01:42 UTC MAIN commitmail json YAML

x11/lxqt-globalkeys: update to 0.15.0

lxqt-globalkeys-0.15.0 / 2020-04-22
===================================
  * Removed (duplicated) string casts definitions.
  * Removed obsolete `qBinaryFind`.
  * Added some translation context to `main_window.ui`.
  * Don't mix const and non-const iterators.

(pin)

2020-06-01 11:53:44 UTC MAIN commitmail json YAML

doc: Updated security/lxqt-sudo to 0.15.0

(pin)

2020-06-01 11:53:18 UTC MAIN commitmail json YAML

security/lxqt-sudo: Remove patch merged upstream

(pin)

2020-06-01 11:51:25 UTC MAIN commitmail json YAML

security/lxqt-sudo: update to 0.15.0

lxqt-sudo-0.15.0 / 2020-04-23
=============================
  * sudo: Fix (re)setting HOME with sudo backend.
  * sudo: Add TERM to allowed/preserved env vars.
  * Build on NetBSD.

(pin)

2020-06-01 11:49:12 UTC MAIN commitmail json YAML

doc: Updated security/lxqt-policykit to 0.15.0

(pin)

2020-06-01 11:48:49 UTC MAIN commitmail json YAML

security/lxqt-policykit: update to 0.15.0

lxqt-policykit-0.15.0 / 2020-04-22
==================================
  * Bumped version to 0.15.0.
  * Delete Password from line-edit.
  * Made the infobox non-modal.
  * Removed (duplicated) string casts definitions.

(pin)

2020-06-01 11:45:38 UTC MAIN commitmail json YAML

Mention PR kern/55279, requested by Greg Troxel

(bouyer)

2020-06-01 11:43:38 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-about to 0.15.0

(pin)

2020-06-01 11:43:15 UTC MAIN commitmail json YAML

x11/lxqt-about: update to 0.15.0

lxqt-about-0.15.0 / 2020-04-24
==============================

  * Bumped version to 0.15.0.
  * Avoid char raw strings literals memory allocations.
  * Don't use automatic string conversions.
  * Removed implicit casts definitions.
  * Fixed Razor-qt link.

(pin)

2020-06-01 11:37:09 UTC MAIN commitmail json YAML

doc: Updated graphics/lxqt-themes to 0.15.0

(pin)

2020-06-01 11:36:49 UTC MAIN commitmail json YAML

graphics/lxqt-themes: update to 0.15.0

lxqt-themes-0.15.0 / 2020-04-21
===============================
  * Bumped version to 0.15.0.

(pin)

2020-06-01 11:34:45 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-qtplugin to 0.15.1

(pin)

2020-06-01 11:34:20 UTC MAIN commitmail json YAML

x11/lxqt-qtplugin: update to 0.15.1

lxqt-qtplugin-0.15.1 / 2020-05-31
=================================
  * Fixed Fusion's window color with Qt 5.15.
  * Made the window color configurable.

lxqt-qtplugin-0.15.0 / 2020-04-22
=================================
  * Bumped version to 0.15.0.
  * Made libfm-qt a dependency and loaded versioned libfm-qt (for versioned ".so" handling).
  * C++11 code updates.
  * Use return braced init list.
  * Removed (duplicated) string casts definitions.
  * Removed deprecated QImage method "byteCount()" and used "sizeInBytes()" instead.
  * Fixed "#include" for libdbusmenu-qt.
  * Added support for flatpak to StatusNotifierItem.
  * Added Category property to StatusNotifierItem to fix working on some DEs.
  * Added support for working without context menu to StatusNotifierItem.

(pin)

2020-06-01 11:23:54 UTC MAIN commitmail json YAML

doc: Updated audio/pavucontrol-qt to 0.15.0

(pin)

2020-06-01 11:23:01 UTC MAIN commitmail json YAML

audio/pavucontrol-qt: update to 0.15.0

pavucontrol-qt-0.15.0 / 2020-04-23
==================================
  * Bumped version to 0.15.0.
  * Avoid char raw strings literals memory allocations.
  * Don't use automatic string conversions.
  * Removed (duplicated) string casts definitions.

(pin)

2020-06-01 11:20:40 UTC MAIN commitmail json YAML

doc: Updated wm/obconf-qt to 0.15.0

(pin)

2020-06-01 11:20:07 UTC MAIN commitmail json YAML

wm/obconf-qt: update to 0.15.0

obconf-qt-0.15.0 / 2020-04-24
=============================

  * Bumped version to 0.15.0.
  * Avoid char raw strings literals memory allocations.
  * Don't use automatic string conversions.
  * Removed (duplicated) string casts definitions.
  * Fixed the instllation message in archive_install().

(pin)

2020-06-01 11:12:28 UTC MAIN commitmail json YAML

doc: Added archivers/lxqt-archiver version 0.2.0

(pin)

2020-06-01 11:11:56 UTC MAIN commitmail json YAML

Import lxqt-archiver

(pin)

2020-06-01 11:10:44 UTC MAIN commitmail json YAML

Import lxqt-archiver

A simple & lightweight Qt file archiver.
The core I/O functions are ported from Engrampa (a Gnome File Roller fork).
This is only a front-end (a graphical interface) to archiving programs
like tar and zip.

This is part of LXQt-0.15.0 desktop

(pin)

2020-06-01 11:04:21 UTC MAIN commitmail json YAML

doc: Added graphics/screengrab version 2.0.1

(pin)

2020-06-01 11:03:46 UTC MAIN commitmail json YAML

Import screengrab

(pin)

2020-06-01 11:02:20 UTC MAIN commitmail json YAML

graphics/screengrab: Import new package

A program for fast creating screenshots, and easily publishing them
on internet image hosting services. It works on Linux and
Windows operating systems.
ScreenGrab uses the Qt framework and thus, it is independent from
any desktop environment.

Screenshot tools from the LXQt desktop

(pin)

2020-06-01 10:56:37 UTC MAIN commitmail json YAML

doc: Updated x11/qterminal to 0.15.0

(pin)

2020-06-01 10:56:14 UTC MAIN commitmail json YAML

x11/qterminal: update to 0.15.0

qterminal-0.15.0 / 2020-04-24
=============================

  * Bumped version to 0.15.0.
  * CMakeLists: Do not use Qt5X11Extras on macOS.
  * Replace deprecated/removed Q_WS_MAC macro with Q_OS_MACOS.
  * Fixed the default font on macOS.
  * Fixed the missing PASTE_SELECTION_SHORTCUT on macOS.
  * Fixed inconsistent-missing-override warnings.
  * Scrollable and compact Settings dialog.
  * C++11 code updates.
  * Fix View  Toggle Bookmarks.
  * Consider settings dialog frame on fitting it into screen.
  * Fixed the duplicated setHistorySize() call.
  * Create actions for switching to tab by index.
  * Allow to disable drawing line chars.
  * Made the initial terminal size consistent with qterminal.ui.
  * Fixed building qterminal.app on macOS.
  * No more incorrectly setting icon via OSC 1.
  * Allow fixed custom size for QTerminal.
  * Made menubar accelerators optional.
  * Added "Hide Window Borders" to context menu.
  * Remember the size of preferences dialog.
  * Fixed the version comparison.
  * Removed some debug outputs.
  * Removed the deprecated QFileDialog method `setConfirmOverwrite()`.
  * config: add a tooltip about box-drawing chars.
  * Implemented an action that allows you to send the history to your editor.
  * Added an option for borderless state and remembered it.

(pin)

2020-06-01 10:53:34 UTC MAIN commitmail json YAML

doc: Updated x11/qtermwidget to 0.15.0

(pin)

2020-06-01 10:53:09 UTC MAIN commitmail json YAML

x11/qtermwidget: update to 0.15.0

qtermwidget-0.15.0 / 2020-04-24
===============================

  * Bumped version to 0.15.0.
  * Replaced Q_WS_MAC with Q_OS_MACOS for Qt5 compatibility.
  * KPty: Don't conditionalize chownpty existence on HAVE_OPENPTY.
  * cmake: set CMAKE_BUILD_WITH_INSTALL_NAME_DIR ON for macOS.
  * Fixed the default font on macOS.
  * pyqt: Fixes deprecation warning (CMP0002).
  * Fixed the PyQt5 binding with Qt  5.11.
  * Swap Qt's ControlModifier and MetaModifier on macOS.
  * C++11 code updates.
  * Use braced initializer list in returns.
  * Fixed the memory access violation in TerminalDisplay's method `getCharacterPosition`.
  * Completed the support for transient scrollbars.
  * Added `saveHistory` to QTermWidget.
  * Use vanilla Qt instead of patched one.
  * Don't set the selection clipboard if it's unsupported.
  * Announce truecolor support via COLORTERM.
  * Fixed numpad handling and added entries for numpad 5.
  * Allow to disable drawing line chars.
  * Use QRectF for cursor drawing and fix artifacts in hidpi.
  * Fixed compilation on NetBSD.
  * Added sendKeyEvent() API.
  * Fixed flickering on font change.
  * Select all text when opening search bar.
  * Removed some debug outputs.
  * Removed (duplicated) string casts definitions.
  * Removed obsolete qCopy.
  * Fix SearchBar light text over white background with dark themes.
  * pyqt: also check for sip 5.x path.
  * Prevented a c++11 range-loop might detach Qt container.
  * Dropped the deprecated QString method `sprintf()`.
  * Avoid buffer overflows exploits.
  * Fixed build with LLVM/clang.
  * Explicitly mark exported classes.
  * Fixed QCharRef's deprecated behavior.
  * Correctly initialize sigsets.

(pin)

2020-06-01 10:48:18 UTC MAIN commitmail json YAML

doc: Updated sysutils/pcmanfm-qt to 0.15.1

(pin)

2020-06-01 10:47:54 UTC MAIN commitmail json YAML

sysutils/pcmanfm-qt: update to 0.15.1

pcmanfm-qt-0.15.1 / 2020-05-16
==============================
  * Fixed remounting of remote folders with its bookmark under special circumstances.
  * Prevented a total freeze on mounting encrypted volumes when auto-mounting is also enabled.
  * Added an option to disable file tooltips.
  * Changed the About link to pcmanfm-qt's GitHub page.
  * Safeguard against null images with multi-screen wallpapers.

pcmanfm-qt-0.15.0 / 2020-04-21
==============================
  * Keep original extensions in bulk renaming.
  * Open selected files by pressing Enter.
  * Update desktop on setting wallpaper with commandline.
  * Removed WM menu from desktop.
  * Remove unneeded Qt version check.
  * Clear filter text on pressing Esc.
  * Enhanced wallpaper browsing dialog.
  * Restore sorting on removing folder customization.
  * Take all standard config paths into account.
  * Added deletion time to Trash.
  * Added option to transform jpeg wallpapers based on EXIF info.
  * Set text and icon of delete action of Edit menu on startup.
  * Respect full file name setting on desktop too.
  * Added Alt+Enter in addition to Alt+Return for properties.
  * Added menu item to toggle showing of thumbnails on the fly.
  * More compact and tidy Desktop preferences dialog.
  * Always show display names on Desktop.
  * Respect view setting when showing selected file name on status bar.
  * Follow DE click setting if single-click is not chosen.
  * More stable position for sticky Desktop Trash.
  * Added context menu item to create launchers on Desktop.
  * An option to show folder context menu with Ctrl + right click.
  * Do not show trash path in trashed file names.
  * Use file launcher to open a folder in new tab to guarantee it is always opened correctly.
  * Added "Hidden Last" to Sorting submenu.
  * Multimonitor wallpaper support.
  * Choose an appropriate name for root bookmarks (like SMB).
  * Use "edit name" in bulk renaming.
  * Use QString multi-arg.
  * Disable Create New in File menu when not possible.
  * Focus side-pane with `Ctrl+Esc`.
  * Added Hidden Shortcuts dialog.
  * Try to have a "current item" inside view as far as possible. This guarantees a correct behavior for keys like `End`, `PgDn` and `Right`.
  * Select first item on filtering if nothing is selected.
  * Added an option for single window mode.

(pin)

2020-06-01 10:43:36 UTC MAIN commitmail json YAML

doc: Updated graphics/lximage-qt to 0.15.0

(pin)

2020-06-01 10:42:24 UTC MAIN commitmail json YAML

graphics/lximage-qt: update to 0.15.0

lximage-qt-0.15.0 / 2020-04-21
==============================
  * Hide annotations toolbar by default (it's buggy) but add an option to show/hide it on startup.
  * No auto-selection in thumbnail view.
  * Fixed showing the first image on loading a directory.
  * String optimizations.
  * Optionally show image outline.
  * More complete transformation based on EXIF.
  * Prevent blurry images with HDPI.
  * Jump forward when the image is deleted/renamed.
  * Added command-line option `-d` to take a screenshot and save it to the directory  without showing the GUI.
  * Remove X11 screenshot under Wayland.
  * Made maximum number of recent files configurable.
  * Support uploading of unsaved images.
  * No multiple Preferences dialogs.
  * Keep zooming state on switching image.
  * Removed deprecated `QDesktopWidget`.
  * Added "Open With.." to File menu.
  * Added shortcut editor to Preferences.
  * Fixed maximization at startup with SVG and GIF images.

(pin)

2020-06-01 10:39:23 UTC MAIN commitmail json YAML

doc: Updated x11/libfm-qt to 0.15.1

(pin)

2020-06-01 10:38:55 UTC MAIN commitmail json YAML

x11/libfm-qt: update to 0.15.1

libfm-qt-0.15.1 / 2020-05-16
============================
  * Bumped API version to 0.15.1.
  * Changed "logout" to "session" in password dialog (because a keyring session may not be the same as a desktop session).

libfm-qt-0.15.0 / 2020-04-21
============================
  * Bumped API version to 0.15.0.
  * Bumped ABI version to 7.0.0.
  * Respect original order on launching multiple files.
  * Prevented a rare random crash in file dialog.
  * Activate a selected item with Enter/Return.
  * Never hide name column of detailed list view.
  * Fixed SMB recursive copy.
  * Workarounds for lack of file monitoring.
  * Removed unneeded headers from Fm namespace.
  * Show more info on item tooltip.
  * Replaced char raw strings literals.
  * Don't use implicit string conversions.
  * Removed duplicated string casts definitions.
  * Clarified the license usage in libfm-qt and fixed the license header of code we took from libfm.
  * The final fix of showing nonexistent files.
  * Workaround for GLib's recursive moving error.
  * Disabled selection corners in single-selection mode.
  * Row-by-row scrolling inside view when Shift is pressed.
  * Smarter extension handling on saving in file dialog.
  * Fixed a small miscalculation in detailed list rubber-band.
  * Fixes for smooth scrolling.
  * Added deletion time to Trash.
  * Completed the thumbnail transformations based on EXIF.
  * Replaced methods deprecated by Qt 5.13.
  * Don't start item DND until the cursor is really moved.
  * Support DND to Places panel.
  * Fix crash when window is closed before finishing mount operation.
  * Fixed DND with MTP.
  * Easier and richer auto-completion.
  * Fixed comparison of GiB-sized files.
  * Corrected lxqt-archiver's mimetypes and added arqiver to archivers list.
  * Don't show "untrust" emblem where it isn't needed.
  * Only select first columns on selecting all items of a list view.
  * Fixed problems in graying-out of cut files.
  * Fixed a crash in renaming bookmark with dot in its name.
  * Improved bookmark DND.
  * Fixed creating bookmark items with NULL path.
  * Always show real file names in Properties dialog.
  * Follow view setting when showing file names on tooltips.
  * Fixed lack of overwrite prompt in some cases with file dialog.
  * Fixed a potential cause of crash in showing errors.
  * An option to show folder context menu with Ctrl + right click.
  * Select the current folder on showing the directory tree.
  * Support DND to directory tree (in side pane).
  * Enforce eject button width (on side pane).
  * Added an option to show hidden file after others.
  * Set info query cancellation error to mild in dir list job.
  * Added frame to side pane combo and changed its text.
  * Fixed horizontal wheel scrolling in compact mode with Qt  5.14.0.
  * Keep Device Usage label, progressbar and text together. in properties dialog.
  * Use GIO's display/copy name when renaming/transferring files.
  * Consider locale when sorting custom actions.
  * Better DND from remote folders to external apps.
  * Made template options work (in pcmanfm-qt).
  * Activate side-pane's focused item on pressing Enter/Return.
  * Fixed selection with arrow keys after pressing selection corner.
  * Disable Create New in context menu when not possible.
  * Never consider icons selected in icon/thumbnail view.
  * Also open remote links in desktop entries.
  * Allow saving mount passwords if gnome-keyring is present.
  * Fixed disabled file DND in rare cases.
  * Sharp view icons with scale factors > 1.

(pin)

2020-06-01 10:33:23 UTC MAIN commitmail json YAML

x11/libqtxdg: Remove wip reference in buildlink3.mk

(pin)

2020-06-01 10:31:04 UTC MAIN commitmail json YAML

doc: Updated x11/liblxqt to 0.15.1

(pin)

2020-06-01 10:30:37 UTC MAIN commitmail json YAML

x11/liblxqt: update to 0.15.1

liblxqt-0.15.1 / 2020-05-28
===========================
  * Bumped version to 0.15.1.
  * Removed dead codes.
  * Removed Xdg Dirs Fallback workaround.
  * Let Qt handle dialog position.
  * Prevent crash when closing screen saver error message.

liblxqt-0.15.0 / 2020-04-22
===========================
  * Bumped version to 0.15.0.
  * Fixed licenses.
  * Removed message handler from lxqtapplication.
  * Set default button to Yes in leave dialogs.
  * C++11 code updates.
  * Used braced initializer list in returns.
  * Allow spacing to be added between items in GridLayout.
  * Set size hint of selection widget correctly.
  * Make macOS build possible.
  * Fixed compilation error on the Hurd.
  * Fixed error messages for screensavers.
  * Fixed the wrong arguments in dbusCall.
  * Allow custom lock command in lxqtscreensaver.
  * Improved error messages in lxqtscreensaver.
  * Fixed LinuxBackend backlightChanged signal.
  * Remove deprecated QDesktopWidget.
  * Remove (duplicated) string casts definitions.
  * Don't use Qt keywords "emit", "signal" and "slot" (they may collide with glib).
  * Fixed memory leak in backlight brightness driver.
  * lxqtnotification: async API for querying serverInfo.

(pin)

2020-06-01 10:30:03 UTC MAIN commitmail json YAML

2020-06-01 10:26:20 UTC MAIN commitmail json YAML

doc: Updated x11/libqtxdg to 3.5.0

(pin)

2020-06-01 10:25:53 UTC MAIN commitmail json YAML

x11/libqtxdg: update to 3.5.0

libqtxdg-3.5.0 / 2020-04-22
===========================
  * Removed dead Qt4 Mac code from XdgIconLoader.
  * Removed obsolete qSwap.
  * Silenced clazy warnings
  * Sharp SVG icons with scale factors > 1.

(pin)

2020-06-01 10:21:16 UTC MAIN commitmail json YAML

doc: Updated devel/lxqt-build-tools to 0.7.0

(pin)

2020-06-01 10:20:48 UTC MAIN commitmail json YAML

devel/lxqt-build-tools: update to 0.7.0

lxqt-build-tools-0.7.0 / 2020-04-21
===================================
  * Bump version to 0.7.0.
  * Initial support for Xcode (AppleClang and ld64).
  * Added a section for settings related to CMake build.
  * Set C++ extensions to be disabled.
  * Forbid string casts in LXQtCompilerSettings.
  * Added a FindClazy CMake module.
  * Enabled Clazy option when building with clang.
  * Adds CMake find modules for some xdg-utils tools.
  * The minimum Qt version is bumped to 5.10.0.

(pin)

2020-06-01 10:13:40 UTC MAIN commitmail json YAML

2020-06-01 10:12:10 UTC MAIN commitmail json YAML

Disable amanda-dump-snap by default on all NetBSD versions. FFS snapshots
can cause panics or deadlocks.

(bouyer)

2020-06-01 07:05:27 UTC MAIN commitmail json YAML

py-test-testmon: Remove .orig file.

(jperkin)

2020-06-01 07:01:20 UTC MAIN commitmail json YAML

ncurses: Simplify handling of TOOLS_TBL.

Don't try to handle obscure cases where certain parts of curses are builtin,
historically it has been shown to lead to failures and a growing list of
special cases.  Just disable completely if native tbl(1) is not available.

Fixes latest issue seen by sjmulder on OpenIndiana.

(jperkin)

2020-06-01 06:28:49 UTC MAIN commitmail json YAML

print/tex-context: remove nonexistent file from REPLACE_TEXLUA

(rillig)

2020-06-01 06:25:31 UTC MAIN commitmail json YAML

sysutils/webmin: fix shell portability

(rillig)

2020-06-01 06:22:00 UTC MAIN commitmail json YAML

Updated www/nginx, www/nginx-devel, devel/cmake, devel/cmake-gui

(adam)

2020-06-01 06:21:27 UTC MAIN commitmail json YAML

cmake: updated to 3.17.3

CMake 3.17.3
* PCH: Fix REUSE_FROM in multi-config generators
* ExternalProject: expose _ep_cache_args_script to the caller
* FindBoost: Add 1.73 to known versions
* bootstrap: Use 'tr' more portably
* FindBoost: Update MinGW compiler tag for Boost 1.73
* CheckLanguage: Fix forwarding of CMAKE_CUDA_HOST_COMPILER
* Help: Add 3.17 release note for FindPkgConfig '-isystem' fix
* FindGTK2: Add harfbuzz target for dependency from pango
* VS: Fix using PCH from source with COMPILE_OPTIONS
* XL: Install our Fortran 'cpp' helper script with execute permission
* MSVC: Use 'pragma system_header' in PCH only on cl 19.13 and above
* Help: Document OBJC and OBJCXX env vars for Objective C/C++ compilers
* Objective C/C++: Honor CC and CXX env vars to select compiler
* Help: Add 3.17.3 release note for Objective C/C++ compiler selection
* cmGeneratorTarget: Clear AllConfigSources in ClearSourcesCache
* VS: Restore .sln support for VS Version Selector
* cm_cxx_features: Filter out libhugetlbfs warnings
* cm_cxx_features: Filter out 'icpc: command line warning 10121'
* CPack-deb: don't add a line with a dot to pkg desc
* Ninja Multi-Config: Make "install" targets depend on default configs
* FindPython: fix error on FPHSA call
* FindPython: ensure any specified version is correctly handled
* FindPython: use CMAKE specific variables to look-up debug library
* Help: clarify add_definitions() and add_compile_definitions() behavior
* Help: Correct CMAKE_CUDA_RUNTIME_LIBRARY applicability
* CUDA: Propagate CMAKE_CUDA_RUNTIME_LIBRARY state to try_compile
* CUDA: Compute CMAKE_CUDA_RUNTIME_LIBRARY default from toolchain
* Tests: Add coverage of ctest_test RETURN_VALUE and REPEAT
* CTest: Make sure NOT_RUN tests show up in the failed test log
* FindPkgConfig: also handle "-isystem" prefixes for include directories
* FindOpenSSL: Detect OpenSSL 3.0.0

(adam)

2020-06-01 06:21:22 UTC MAIN commitmail json YAML

cross/gcc-mips-current: disable check for unknown configure options

(rillig)

2020-06-01 06:19:42 UTC MAIN commitmail json YAML

nginx-devel: updated to 1.19.0

Changes with nginx 1.19.0
*) Feature: client certificate validation with OCSP.
*) Bugfix: "upstream sent frame for closed stream" errors might occur
  when working with gRPC backends.
*) Bugfix: OCSP stapling might not work if the "resolver" directive was
  not specified.
*) Bugfix: connections with incorrect HTTP/2 preface were not logged.

(adam)

2020-06-01 06:18:51 UTC MAIN commitmail json YAML

nginx: updated to 1.18.0

Changes with nginx 1.18.0
*) 1.18.x stable branch.

Changes with nginx 1.17.10
*) Feature: the "auth_delay" directive.

(adam)

2020-06-01 06:14:03 UTC MAIN commitmail json YAML

audio/tremor-tools: remove unknown configure options

(rillig)

2020-06-01 06:13:03 UTC MAIN commitmail json YAML

graphics/wxsvg: remove unknown configure option

(rillig)

2020-06-01 06:11:54 UTC MAIN commitmail json YAML

chat/xaric: remove unknown configure option

(rillig)

2020-06-01 06:11:01 UTC MAIN commitmail json YAML

math/xyconvert: remove unknown configure option

(rillig)

2020-06-01 06:09:42 UTC MAIN commitmail json YAML

ham/xlog: remove unknown configure option

(rillig)

2020-06-01 06:08:21 UTC MAIN commitmail json YAML

time/xfce4-orage: remove unknown configure option

(rillig)

2020-06-01 06:06:48 UTC MAIN commitmail json YAML

x11/xdm: remove unknown configure option

(rillig)

2020-06-01 06:04:57 UTC MAIN commitmail json YAML

sysutils/xcdroast: remove unknown configure option

(rillig)

2020-06-01 06:03:25 UTC MAIN commitmail json YAML

editors/poedit: remove unknown configure option

(rillig)

2020-06-01 05:54:16 UTC MAIN commitmail json YAML

net/nagios*: remove unknown configure option

Neither nagios-base nor the plugins know this option.

(rillig)

2020-06-01 05:15:07 UTC MAIN commitmail json YAML

Updated devel/py-autopep8, time/py-parsedatetime

(adam)

2020-06-01 05:14:49 UTC MAIN commitmail json YAML

py-parsedatetime: updated to 2.6

v2.6 release
Polished README.rst
fix pyicu import to suppress warnings
Fixed missing comma in seconds strings

Updated Pipfile and Makefile to:
- update and move packages to the "dev" section
- use Python 3.7 for pipenv
- install tox-pipenv plugin to try and fix Tox (currently doesn't)
- simplify tox.ini to try and fix Tox (didn't)
- move ci makefile target to the circle config

(adam)

2020-06-01 05:12:22 UTC MAIN commitmail json YAML

py-autopep8: updated to 1.5.3

version 1.5.3

changes
requirement pycodestyle version 2.6.0+

fix bugs
Expected pyproject.toml configuration syntax incompatible with TOML format
Fix incompatible exit code with --jobs=0 and --exit-code
Fix hangup E122 fixed method with backslash

(adam)

2020-06-01 03:50:21 UTC MAIN commitmail json YAML

(cad/kicad)  Adapt to boost 1.73. (sorry adhoc fix, please correct me if wrong tks)

- pkglint -F
- add patch for #include <algorithm>
  It's been failing since 2020/05/07 of boost update

  ./20200507.0738/kicad-5.1.4nb5
  ...
  ./20200523.0017/kicad-5.1.4nb6
  ...
  ./20200530.0227/kicad-5.1.4nb6

(mef)

2020-06-01 00:14:21 UTC MAIN commitmail json YAML

gimp-ufraw: Recover from patches that broke NetBSD 8

Replace patches that broke NetBSD 8 (added without MAINTAINER
consultation, and for which queries went unanswered), replacing them
with something that seems likely to work in multiple situations.

The basic issue is that OPENMP is unstable, and it does not seem to be
possible to write non-ifdefed code that compiles cleanly on old and
new versions:
  https://gcc.gnu.org/gcc-9/porting_to.html#ompdatasharing

(gdt)

2020-05-31 23:48:00 UTC MAIN commitmail json YAML

options.description: add "keyring" option

(gutteridge)

2020-05-31 23:44:49 UTC MAIN commitmail json YAML

mate-power-manager: remove unused PLIST.keyring variable

(gutteridge)

2020-05-31 23:38:41 UTC MAIN commitmail json YAML

doc: Belatedly note tor-browser plugin packages

(wiz)

2020-05-31 23:35:28 UTC MAIN commitmail json YAML

doc: Updated sysutils/mate-power-manager to 1.24.1

(gutteridge)

2020-05-31 23:34:45 UTC MAIN commitmail json YAML

mate-power-manager: update to 1.24.1

Change log:

mate-power-manager 1.24.1

  * Translations update
  * glib-genmarshal: replace deprecated tokens NONE and BOOL
  * Read authors (updated) from mate-power-manager.about
  * Use gtk_show_about_dialog to show about dialog
  * Remove the CPU wakeups feature
  * Update copyright year on about dialog
  * generate missing gpm-* PNGs from new SVGs
  * add missing gpm-phone SVGs
  * add missing gpm-keboard SVGs
  * add missing gpm-mouse SVGs

(gutteridge)

2020-05-31 23:29:31 UTC MAIN commitmail json YAML

doc: Updated graphics/mate-backgrounds to 1.24.1

(gutteridge)

2020-05-31 23:28:27 UTC MAIN commitmail json YAML

mate-backgrounds: update to 1.24.1

Change log:

mate-backgrounds 1.24.1

  * Translations update
  * build: add meson config files to EXTRA_DIST

(gutteridge)

2020-05-31 23:24:49 UTC MAIN commitmail json YAML

doc: Updated devel/mate-common to 1.24.1

(gutteridge)

2020-05-31 23:24:16 UTC MAIN commitmail json YAML

mate-common: update to 1.24.1

Change log:

mate-common 1.24.1

  * silent -Wunused-parameter for maximum warning level

(gutteridge)

2020-05-31 21:41:22 UTC MAIN commitmail json YAML

lang/nodejs*: skip portability check for macOS installation scripts

(rillig)

2020-05-31 21:32:21 UTC MAIN commitmail json YAML

games/xboard: remove unknown configure option

(rillig)

2020-05-31 21:22:47 UTC MAIN commitmail json YAML

doc/Makefile-example: unquote RESTRICTED, fix post-install

(rillig)

2020-05-31 21:18:14 UTC MAIN commitmail json YAML

doc/Makefile-example: remove reference to obsolete LICENCE variable

(rillig)

2020-05-31 21:01:43 UTC MAIN commitmail json YAML

doc/CHANGES-2011: clean up duplicate entries

(rillig)

2020-05-31 20:51:14 UTC MAIN commitmail json YAML

doc/CHANGES-2020: fix inconsistent entries

Detected by pkglint -Call.

(rillig)

2020-05-31 20:50:18 UTC MAIN commitmail json YAML

2020-05-31 20:49:34 UTC MAIN commitmail json YAML

2020-05-31 20:48:22 UTC MAIN commitmail json YAML

2020-05-31 20:47:23 UTC MAIN commitmail json YAML

Drop Python 2.7 restriction that isn't active anyway.

(joerg)

2020-05-31 20:45:17 UTC MAIN commitmail json YAML

2020-05-31 20:44:31 UTC MAIN commitmail json YAML

2020-05-31 20:35:55 UTC MAIN commitmail json YAML

libretro-desmume: convert to core.mk

(nia)

2020-05-31 19:47:12 UTC MAIN commitmail json YAML

doc: Updated net/gallery-dl to 1.14.0

(leot)

2020-05-31 19:47:01 UTC MAIN commitmail json YAML

gallery-dl: Update to 1.14.0

Changes:
1.14.0
------
### Additions
- [imagechest] add new extractor for imgchest.com (#750)
- [instagram] add `post_url`, `tags`, `location`, `tagged_users`
  metadata (#743)
- [redgifs] add image extractor (#724)
- [webtoons] add new extractor for webtoons.com (#761)
- implement `--write-pages` option (#736)
- extend `path-restrict` option (#662)
- implement `path-replace` option (#662, #755)
- make `path` and `keywords` available in logging messages (#574, #575)

### Changes
- [danbooru] change default value of `ugoira` to `false`
- [downloader:ytdl] change default value of `forward-cookies` to `false`
- [downloader:ytdl] fix file extensions when merging into `.mkv` (#720)
- write OAuth tokens to cache (#616)
- use `%APPDATA%\gallery-dl` for config files and cache on Windows
- use `util.Formatter` for formatting logging messages
- reuse HTTP connections from parent extractors

### Fixes
- [deviantart] use private access tokens for Journals (#738)
- [gelbooru] simplify and fix pool extraction
- [imgur] fix extraction of animated images without `mp4` entry
- [imgur] treat `/t/unmuted/` URLs as galleries
- [instagram] fix login with username & password (#756, #771, #797, #803)
- [reddit] don't send OAuth headers for file downloads (#729)
- fix/improve Cloudflare bypass code (#728, #757)
- reset filenames on empty file extensions (#733)

(leot)

2020-05-31 19:13:11 UTC MAIN commitmail json YAML

devhelp: re-add buildlink file.

Patch by Dan Cirnat on tech-pkg@.

(bsiegert)

2020-05-31 18:51:00 UTC MAIN commitmail json YAML

libretro-ppsspp: convert to core.mk

(nia)

2020-05-31 18:36:30 UTC MAIN commitmail json YAML

libretro-dolphin: correct SOEXT

(nia)

2020-05-31 18:34:56 UTC MAIN commitmail json YAML

libretro-mame2010: convert to core.mk

(nia)

2020-05-31 18:15:28 UTC MAIN commitmail json YAML

doc: Updated emulators/libretro-beetle-saturn to 20200526

(nia)

2020-05-31 18:15:12 UTC MAIN commitmail json YAML

libretro-beetle-saturn: Update to 20200526

David Walters (33):
      Update RETRO_ENVIRONMENT_SET_CONTROLLER_INFO when 6player adaptors are added/removed.
      Version bump
      state.h macro changes + fallout from that
      SCSP (audio cpu) sync.
      MDFN_HOT macro stub, to reduce number of diffs
      Reduce number of diff lines via closer sync of non-essential whitespace, formatting, macro attributes, etc.
      m68k register set/get
      VDP1 + VDP2 sync.
      Cartridge sync
      input sync (no JP keyboard)
      SCU sync.
      minor missing sync + fixes
      more syncing
      git + input "IDIIS" + jpkeyboard sync.
      gettext_noop sync
      SCU update sync + version bump
      Fix gun crosshair X position
      Fix for DOT crosshair mode
      Fix for Linux builds. Mednafen defines SIZEOF_VOID_P in its configure script, we do something similar with a makefile.
      Fix for new 3d pad internal data format
      version bump
      Game specific hacks
      merging of misc bits
      version bump
      new document
      Game specific hack (Fighting Vipers)
      SH-2 bugfix
      Reorganized SCSP DSP emulation
      Emulated input devices' internal states were not being reset on virtual power toggle
      version bump
      merging
      Sync with v1.22.2 of Mednafen
      fix crash bug when two multitaps are connected

Yoshi Sugawara (8):
      first hack to get touchscreen lightgun input working
      add core option for lightgun input: lightgun or touchscreen; check input mode when handling input
      remove debug statements
      added back setting gun position and button state for lightgun input
      touchscreen sensitivity: manually hold the gun position for a few cycles after the touch is released to ensure the fire happens at the right position
      Setting CC and CCX for ios-arm64 platform for buildbot recipe
      fixed arch argument to arm64
      (tvOS) support building

jdgleaver (1):
      Add disk control interface v1 support

(nia)

2020-05-31 17:51:19 UTC MAIN commitmail json YAML

converters/wv: remove unknown configure options

The libiconv prefix had been an empty string anyway since the correct
identifier would have been BUILDLINK_PREFIX.iconv, not
BUILDLINK_PREFIX.libiconv.

(rillig)

2020-05-31 17:49:49 UTC MAIN commitmail json YAML

libretro-np2kai: convert to core.mk

(nia)

2020-05-31 17:44:44 UTC MAIN commitmail json YAML

x11/wmweather: remove unknown configure option

(rillig)

2020-05-31 17:39:06 UTC MAIN commitmail json YAML

x11/vte029: remove unknown configure options

(rillig)

2020-05-31 17:38:15 UTC MAIN commitmail json YAML

libretro-flycast: Update COMMENT

(nia)

2020-05-31 17:37:36 UTC MAIN commitmail json YAML

audio/vorbis-tools: remove unknown configure options

(rillig)

2020-05-31 17:35:39 UTC MAIN commitmail json YAML

www/tinyproxy: remove unknown configure options

(rillig)

2020-05-31 17:34:15 UTC MAIN commitmail json YAML

mail/teapop: remove unknown configure option

The correct option would be --enable-lock=flock.

(rillig)

2020-05-31 17:30:17 UTC MAIN commitmail json YAML

sysutils/syslog-ng: remove unknown configure option

(rillig)

2020-05-31 17:26:30 UTC MAIN commitmail json YAML

mail/sylpheed: remove unknown configure option

(rillig)

2020-05-31 17:24:45 UTC MAIN commitmail json YAML

audio/spek: remove unknown configure options

(rillig)

2020-05-31 17:23:45 UTC MAIN commitmail json YAML

chat/silc-client: remove unknown configure options

(rillig)

2020-05-31 17:22:16 UTC MAIN commitmail json YAML

chat/scrollz: remove unknown configure options

(rillig)

2020-05-31 17:19:50 UTC MAIN commitmail json YAML

graphics/sane-backends: remove unknown configure options

(rillig)

2020-05-31 17:16:39 UTC MAIN commitmail json YAML

devel/rvm: remove unknown configure option

(rillig)

2020-05-31 17:15:33 UTC MAIN commitmail json YAML

databases/ruby-qdbm: remove unknown configure option

(rillig)

2020-05-31 17:14:23 UTC MAIN commitmail json YAML

devel/remake: remove unknown configure option

(rillig)

2020-05-31 17:12:23 UTC MAIN commitmail json YAML

devel/rapidsvn: remove unknown configure option

(rillig)

2020-05-31 17:09:17 UTC MAIN commitmail json YAML

databases/qdbm-plus: remove unknown configure option

(rillig)

2020-05-31 17:07:59 UTC MAIN commitmail json YAML

databases/qdbm-cgi: remove unknown configure option

(rillig)

2020-05-31 17:02:14 UTC MAIN commitmail json YAML

emulators: +libretro-smsplus

(nia)

2020-05-31 17:01:22 UTC MAIN commitmail json YAML

doc: Added emulators/libretro-smsplus version 20200425

(nia)

2020-05-31 17:01:08 UTC MAIN commitmail json YAML

emulators: Add libretro-smsplus

Libretro is a simple but powerful development interface that allows for the
easy creation of emulators, games and multimedia applications that can plug
straight into any libretro-compatible frontend. This development interface is
open to others so that they can run these pluggable emulator and game cores
also in their own programs or devices.

SMS Plus is an open source Sega Master System and Game Gear emulator written
by Charles MacDonald.

SMS Plus GX is an enhanced version which includes improved accuracy and bug
fixes.

(nia)

2020-05-31 17:00:18 UTC MAIN commitmail json YAML

x11/py-vte: remove unknown configure option

(rillig)

2020-05-31 16:59:03 UTC MAIN commitmail json YAML

math/ppl: remove unknown configure option

(rillig)

2020-05-31 16:57:21 UTC MAIN commitmail json YAML

net/php-xmlrpc: remove unknown configure option

(rillig)

2020-05-31 16:51:29 UTC MAIN commitmail json YAML

mail/php-imap: remove unknow configure option

(rillig)

2020-05-31 16:46:38 UTC MAIN commitmail json YAML

graphics/php-exif: remove unknown configure option

(rillig)

2020-05-31 16:44:19 UTC MAIN commitmail json YAML

database/php-dba: remove unknown configure option

(rillig)

2020-05-31 16:43:05 UTC MAIN commitmail json YAML

databases/pgadmin3: remove unknown configure option

(rillig)

2020-05-31 16:38:48 UTC MAIN commitmail json YAML

databases/p5-qdbm: remove unknown configure option

(rillig)

2020-05-31 16:38:01 UTC MAIN commitmail json YAML

databases/qdbm: fix default value for GNU_CONFIGURE_PTHREAD

It had previously been yes, therefore this is the default value.

(rillig)

2020-05-31 16:33:06 UTC MAIN commitmail json YAML

libretro-2048: convert to core.mk

(nia)

2020-05-31 16:30:24 UTC MAIN commitmail json YAML

doc: Updated games/libretro-craft to 20200504

(nia)

2020-05-31 16:30:14 UTC MAIN commitmail json YAML

libretro-craft: Update to 20200504

BringerethOfLight (1):
      fixes some of the remaining memory access issues

Vladimir Serbinenko (6):
      Make sure log_cb is always set
      Don't attempt to run main loop after failure.
      Log database init error code
      Fix path to auth database
      Fix compile failure on emscripten
      Improve logging

twinaphex (1):
      Update GLSM

Ömercan Kömür (1):
      Update libretro.h

(nia)

2020-05-31 16:29:54 UTC MAIN commitmail json YAML

editors/nvi: remove unknown configure option

(rillig)

2020-05-31 16:26:36 UTC MAIN commitmail json YAML

hitch: drop unused build dependency for py-docutils

(tnn)

2020-05-31 16:22:45 UTC MAIN commitmail json YAML

doc: Updated games/libretro-nxengine to 20200109

(nia)

2020-05-31 16:22:35 UTC MAIN commitmail json YAML

libretro-nxengine: Update to 20200109

Emery Hemingway (6):
      Remove superfluous C++ include
      Tupfile for super-repositories
      Revert "Build rules for Genode platform"
      Support original keyboard mappings
      Optional LIBRETRO_COMM_DIR override
      Stop polling inputs after F3

Leonardo Montenegro (1):
      Adding diacritics support

(nia)

2020-05-31 16:12:10 UTC MAIN commitmail json YAML

editors/mule: disable check for unknown configure options

(rillig)

2020-05-31 16:06:59 UTC MAIN commitmail json YAML

devel/monotone: remove unknown configure option

(rillig)

2020-05-31 16:06:19 UTC MAIN commitmail json YAML

libretro-virtualjaguar: less awkward COMMENT

(nia)

2020-05-31 16:05:54 UTC MAIN commitmail json YAML

mingw-w64-x86_64-winpthreads: remove unknown configure options

These options are only for crt, not for winpthreads.

(rillig)

2020-05-31 16:05:37 UTC MAIN commitmail json YAML

doc: Removed emulators/libretro-mupen64plus successor emulators/libretro-parallel-n64

(nia)

2020-05-31 16:04:39 UTC MAIN commitmail json YAML

mingw-w64-i686-winpthreads: remove unknown configure options

These options are only for crt, not for winpthreads.

(rillig)

2020-05-31 16:04:30 UTC MAIN commitmail json YAML

2020-05-31 16:03:18 UTC MAIN commitmail json YAML

doc: Added emulators/libretro-parallel-n64 version 20200528

(nia)

2020-05-31 16:03:04 UTC MAIN commitmail json YAML

emulators: Add libretro-parallel-n64

Libretro is a simple but powerful development interface that allows for the
easy creation of emulators, games and multimedia applications that can plug
straight into any libretro-compatible frontend. This development interface is
open to others so that they can run these pluggable emulator and game cores
also in their own programs or devices.

Parallel N64 is an optimized/rewritten Nintendo 64 emulator made specifically
for Libretro. It was originally based on Mupen64 Plus.

(nia)

2020-05-31 15:55:17 UTC MAIN commitmail json YAML

Previous was an add, not update.

(kim)

2020-05-31 15:54:01 UTC MAIN commitmail json YAML

doc: Updated security/ca-certificates to 20190110

(kim)

2020-05-31 15:53:44 UTC MAIN commitmail json YAML

Add ca-certificates-20190110

This package provides the certificates distributed by the Mozilla
Project.

It also provides a script, update-ca-certs, which can be used to manage
a location that makes certificates usable by TLS implementations,
including installing select certificates from this package.

(kim)

2020-05-31 15:49:15 UTC MAIN commitmail json YAML

x11/mate-session-manager: remove unknown configure options

(rillig)

2020-05-31 15:47:40 UTC MAIN commitmail json YAML

security/mate-polkit: remove unknown configure option

(rillig)

2020-05-31 15:44:16 UTC MAIN commitmail json YAML

x11/lxappearance: remove unknown configure option

(rillig)

2020-05-31 15:43:17 UTC MAIN commitmail json YAML

chat/loudmouth: remove unknown configure option

(rillig)

2020-05-31 15:42:08 UTC MAIN commitmail json YAML

net/lldpd: remove unknown configure option

(rillig)

2020-05-31 15:36:12 UTC MAIN commitmail json YAML

security/libprelude: remove unknown configure option

(rillig)