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

2024-05-13 13:34:09 UTC Now

2021-04-21 13:25:34 UTC MAIN commitmail json YAML

2021-04-21 13:18:23 UTC MAIN commitmail json YAML

2021-04-21 12:59:48 UTC MAIN commitmail json YAML

2021-04-21 12:23:21 UTC MAIN commitmail json YAML

2021-04-21 12:11:35 UTC MAIN commitmail json YAML

2021-04-21 12:09:50 UTC MAIN commitmail json YAML

boost: updated to 1.76.0

Updated Libraries

Asio:
Added ip::scope_id_type type alias.
Added ip::port_type type alias.
Added std::hash specialisations for IP addresses.
Added std::hash specialisations for ip::basic_endpoint<>.
Refactored SFINAE usage to improve compile times.
Added friendship support to customisation points, and made most customisations private.
Changed any_io_executor to a "strong typedef"-style class.
Fixed experimental::as_single to work with handler hook deprecation.
Ensured pthread condition variable attributes are cleaned up on all platforms.
Clarified thread safety notes on sockets and descriptors.
Ensured errno is not overwritten if socket() fails on macOS/FreeBSD.
Fixed work tracking for io_context and thread_pool executors when move-assigned.
Ensured internal call_stack objects are accessed only from implementation files.
Fixed I/O object move-assignment to ensure the executor is left in a valid state.
Fixed detection of compiler support for defaulted template argument on functions with MSVC.
Prevented the blocking.always property from being used with strand<>, as it did not produce the correct semantics.
Removed deprecated file asio/impl/src.cpp.
Atomic:
Fixed compilation with MSVC for ARM.

Beast:
This update brings minor bug fixes and revamped CI reporting.
We'd love to know how you or your company use Beast, consider adding an entry to the Companies and Individuals Using Beast list.
See the full Release Notes for a complete list of changes.

Bind:
Add support for using the standard C++11 placeholders with boost::bind.
Update boost::apply to use variadic templates and perfect forwarding.
Container:
Added [[no-discard]] attribute in all containers to catch bugs related to unused return values.
Replaced default standard exception classes with Boost.Container own classes, reducing considerably the included files overhead. Example: in MSVC 19 boost/container/vector.hpp preprocessed file size reduces from 1,5MB to 930KB. If you still want to use standard exception classes, you can define BOOST_CONTAINER_USE_STD_EXCEPTIONS before using any Boost.Container class.
Fixed bugs/issues:
GitHub 102: "flat_map::insert ambiguous with initializer list & pairs that need to convert".
GitHub 139: "flat_map merge and iterators".
GitHub 141: "small_vector does not propagate no throw properties of move operation of contained type".
GitHub 164: "Compile error when using pmr::map with a std::pair; works when using a std::tuple".
GitHub 171: "deque::clear() uses undefined behaviour".

Core:
Add implicit conversion between compatible reference wrappers.
Add boost/core/cmath.hpp, a portable implementation of the floating point classification functions from <cmath>.
Add boost/core/bit.hpp, a portable implementation of the C++20 standard header <bit>.
Fix BOOST_TEST_EQ, BOOST_TEST_NE for character types under C++20.
Revise allocator access utilities (now support VS2013, and no workarounds use allocator_traits.)

DLL:
BREAKING CHANGE: boost::dll::import was renamed to boost::dll::import_symbol to avoid collision with C++20 import keyword.
Updated docs, including FAQ section.

Filesystem:
Updated compatibility with WASI platform.
Fixed an exception being thrown by path::remove_filename if the path is "////".
Fixed create_directories disregarding errors from file status query operations issued internally. This could result in incorrect error codes returned by create_directories.
GIL:
BREAKING: In next release, we are going to drop support for GCC 5. We will also change the required minimum C++ version from C++11 to C++14.

Intrusive:
Reduced compile-time dependencies:
linear_slist_algorithms use a simple node_ptr instead of std::pair on return.
list/slist use operator </operator == instead of std::equal_to/std::less.
Fixed GitHub 54: set.rbegin() looks like O(log(N))

Interprocess:
Added wchar_t API support for named resources in operating systems that offer native wide character API (e.g. Windows). The following classes were updated with wchar_t name support:
file_mapping
managed_mapped_file
managed_shared_memory
managed_windows_shared_memory
shared_memory_object
windows_shared_memory_object
file_lock
named_condition
named_condition_any
named_mutex
named_recursive_mutex
named_semaphore
named_sharable_mutex
named_upgradable_mutex
message_queue
Added BOOST_INTERPROCESS_FORCE_NATIVE_EMULATION macro option to disable the use of generic emulation code for process shared synchronization primitives instead of native POSIX or Winapi functions.
Fixed bugs:
GitHub 76 ("Cygwin compilation errors").
GitHub 83 ("Add BOOST_INTERPROCESS_FORCE_NATIVE_EMULATION option").
GitHub 92 ("bufferstream: Correct MSVC compilation warning").
GitHub 106 ("Use fallocate on truncate_file").
GitHub 120 ("segment_manager customization").
GitHub 122 ("Mark constructors/assignment/swap noexcept where possible").
GitHub 126 ("_ReadWriteBarrier is deprecated warning when compiling with clang-cl.exe").

JSON:
Security Report from Bishop Fox.
Refactored value_from implementation; user customizations are now always preferred over library-provided overloads.
Fix imprecise parsing for some floating point numbers.
Fix link errors in standalone mode, when used alongside Boost.
Fix Boost.Build builds on GCC 4.8.

LexicalCast:
Dropped dependency on Boost.Math
Fixes for the CI and coverage
Log:
Bug fixes:
Corrected a formal race condition in the thread-safe log record queue implementation used in the unbounded_fifo_queue policy of the asynchronous_sink frontend. The race could be detected by TSAN, but it was not a real problem on most current CPU architectures and compilers.
When copying a logger with a channel attribute (e.g. channel_logger), the channel attribute is now deep-copied from the original logger. This means that modifying the channel in the new logger will no longer affect the original logger.
Replaced the use of std::allocator<void> in template parameters with a new tag type boost::log::use_std_allocator to silence libc++ warnings about the former being deprecated in C++17 and later. The tag indicates that the instantiated template should be using a specialization of std::allocator internally to allocate dynamic memory, so the change has no functional effect.
Boost.Log no longer defines __MSVCRT_VERSION__ macro on MinGW and MinGW-w64. Defining this macro caused incompatibility with UCRT, which is available as an option in recent MinGW-w64.
See changelog for more details.

Math:
Breaking Change: C++03 support is now removed, a C++11 or later conformant compiler is now required to use this library.
Added Z-test.
Added execution policy support to univariate and bivariate statistics: enables parallel execution (requires C++17 and <execution>).
Big update/improvement on CI testing.
Bivariate statistics now have integer support.
T-Test now has integer support.
Linear regression now has integer support.
Correct PDF of the beta distribution at the endpoints.
Correct use of Stirling's approximation in certain multiprecision cases.
Eliminate -Wimplicit-int-float-conversion on clang.
Fix some constexpr issues in quaternion/octonion.
Minor performance fix to tanh_sinh integration.
Update hypergeometric functions internal scaling to allow for 64-bit (long long) exponents with multiprecision types.

Move:
Git Issue 35: "New nothrow move traits are incomplete".

Multiprecision:
BREAKING CHANGE: Massive refactoring and code simplification makes C++11 an absolute requirement.
Use BOOST_TRY/CATCH in headers so code can be used in exception-free environments.
Correct corner case in pow.
Correct exception type thrown to match docs in lsb/msb.
Allow moves and operators between related but different types (ie types with the same allocator).

Nowide:
Fix discarding of characters for text file streams when seek or sync functions are used and newlines were converted (e.g. on Windows)
Fix potential use-after-free bug when reusing (via open) a file stream that has been closed
Fix potential invalid memory access when using a file stream that has been moved or swapped to where the source had a put-back character or was set to unbuffered mode
Fix compatibility with ucrt runtime by not defining __MSVCRT_VERSION__
Known issues: Read performance for text files is degraded. Binary files and writing is unaffected.

Optional:
Fixed MSVC warning C4702.

Outcome:
Announcements:
BREAKING CHANGE: After a year and three major Boost releases announcing this upcoming change, this is the FIRST RELEASE of the v2.2 branch. This branch has a number of major breaking changes to the Outcome v2.1 which shipped in Boost 1.75 and earlier, see the documentation for details.
Enhancements:
VS2019.8 changed how to enable Coroutines, which caused Outcome to not compile on that compiler.
If on C++ 20, we now use C++ 20 [[likely]] instead of compiler-specific markup to indicate when TRY has likely success or failure.
BREAKING CHANGE: Previously the value of spare_storage(const basic_result|basic_outcome *) noexcept was not propagated over BOOST_OUTCOME_TRY, which causes things like stack backtraces captured at the point of construction of an errored result to get dropped at every TRY point. This has been fixed by adding an optional spare_storage to success_type<T> and failure_type<T>, as well as to auto success(T &&, ...) and auto failure(T &&, ...).
Bug fixes:
Boost.Outcome should now compile with BOOST_NO_EXCEPTIONS defined. Thanks to Emil, maintainer of Boost.Exception, making a change for me, Boost.Outcome should now compile with C++ exceptions globally disabled. You won't be able to use boost::exception_ptr as it can't be included if C++ exceptions are globally disabled.
BREAKING CHANGE 244 It came as a shock to learn that BOOST_OUTCOME_TRY had been broken since the inception of this library for certain corner case code, which required a breaking change in how TRY works. See the changelog in the documentation for more detail.

Parameter:
Added a workaround for MSVC 2015 code miscompilation when an rvalue was used as a default value of a named parameter of a function.

PFR:
Fixed reflection of types with missing const in SFINAE expressions in template constructor. Now reflection of aggregates with std::optional<std::chrono::duration<???>> fields works on any Standard Library implementation, even if LWG3050 is not fixed.
Comparison functions are now constexpr
Fixed numerous typos in docs

PolyCollection:
Worked around GCC bug affecting GCC versions 9.3-10.2.

Predef:
Version 1.13
Add ARCH_PPC_64 predef.
Fix ARCH_WORD_BITS* redefinition warnings/errors.
Add ARCH_E2K, Elbrus 2000, architecture from Konstantin Ivlev.
Fix not handling recent C++ version that go above 10.x version.
Version 1.12
Switch to using the endian.h header on OpenBSD. (Brad Smith)
Fix not handling recent versions of stdcxx that go above version 9.
Fix including sub-BSD OS headers directly causing redef warnings.
Add CI testing of direct inclusion of all headers.
Add CI testing on FreeBSD for clang and gcc.
Add WORD_BITS set of predefs to detect the architecture word size. Initial implementation inspired by submission from Mikhail Komarov.
Add CI testing for Cygwin 32 and 64.

PropertyTree:
Property Tree has a new maintainer.
Fix usage of deprecated Boost.Bind features.
Link to Wikipedia fixed.
Use BOOST_OVERRIDE to fix GCC warnings.
Add extensive CI testing.

Regex:
Regex is now header only except in C++03 mode.
Support for C++03 is now deprecated.
The library can now be used "standalone" without the rest of Boost being present.

Stacktrace:
Better support for pre-C++11 builds on clang.
Bigger warning for do not use boost::stacktrace::stacktrace in signal handlers.

TypeTraits:
Fix for Visual Studio managed code projects.

Variant2:
Improved generated code for the double buffered case.

Updated Tools
Build:
Includes release of B2 version 4.4.1.

(adam)

2021-04-21 11:43:04 UTC MAIN commitmail json YAML

2021-04-21 11:14:11 UTC MAIN commitmail json YAML

templates: disable search bar until the results are better

(nia)

2021-04-21 11:01:52 UTC MAIN commitmail json YAML

2021-04-21 10:17:16 UTC MAIN commitmail json YAML

templates: add DuckDuckGo search box

(nia)

2021-04-21 09:35:33 UTC MAIN commitmail json YAML

doc: Removed mail/opensmtpd

(nia)

2021-04-21 09:34:58 UTC MAIN commitmail json YAML

2021-04-21 09:34:00 UTC MAIN commitmail json YAML

doc: Updated audio/strawberry to 0.9.3

(nia)

2021-04-21 09:33:45 UTC MAIN commitmail json YAML

strawberry: update to 0.9.3

0.9.3:

  Bugfixes:
    * Fix "Show in file browser" to work with thunar.
    * Check that the clicked rating position is to the right or left of the rectangle.
    * Fix rescan when collection directory is removed and readded.
    * Create GLib main event loop on non-glib systems to fix stream discoverer.
    * (macOS) Fix intermittent abort on startup.
    * (macOS) Fix Tidal and Qobuz search field not showing.
    * (macOS) Add tidal URL scheme to Info.plist.
    * (macOS) Fix Tidal OAuth authentication.

  Enhancements:
    * Allow editing playlist metadata for radio streams.
    * Make CollectionQuery subclass QSqlQuery, avoid copying QSqlQuery.
    * Only enable FTS3 when schema needs upgrading, since FTS5 is used for search.
    * Add setting for configuring the color for the currently playing song.
    * Add setting to turn on OSD Pretty fading.
    * Add commandline option to resize window.
    * (macOS) Make macdeployqt work with Qt 5 too.
    * (macOS) Show keep running option in behaviour settings.

0.9.2:

  Bugfixes:
    * Fix marking songs available.
    * Fix crash when transcoding music, or copying music to devices with transcoding.
    * Fix copying album covers to iPod.
    * Fix playlist tabbar close and save right click actions.
    * Fix slow opening of cover manager.
    * (macOS) Fix crash when opening cover manager.
    * (macOS) Fix broken Qt plugins resulting in album covers not showing.

0.9.1:

  Bugfixes:
    * Fix duplicating songs in the DB when organizing songs between 2 different collection directories.
    * Fix overwriting existing newer last played when importing last played from last.fm.
    * Fix memory leak on song change when moodbar is disabled.
    * Fix playlist filter search for text with spaces with Qt 6.
    * Fix 'Except between tracks on the same album' backend fade option always grayed out.
    * Fix read and save vorbis comment grouping tag.
    * Fix QAtomicInteger compile error on armv.
    * Fix compile error with protobuf 3.15.0 and newer.
    * Fix possible tagreader (messagereply) crashes.
    * Fix save album cover when album directory and no overwrite is used for saving covers.
    * Fix right click save cover action when album has embedded cover.
    * Fix temporary art saved to /tmp.
    * Fix playlist bitrate sometimes stuck when changing track to previous.
    * (macOS) Fix minor compile errors with Qt 6.
    * (macOS) Fix exclusively grabbing global media shortcuts.

  Enhancements:
    * Improve Musixmatch cover and lyrics search.
    * Decode any HTML entities in some rare cases they appear in the retrieved lyrics from the API's.
    * Use mimetype instead of description from stream metadata by default when updating song filetype.
    * Set limits for collection pixmap cache based on size units.
    * Convert all signal/slot connections to new Qt 5/6 syntax.
    * Improve album cover management.
    * Add right click actions to clear set cover, and option delete covers.
    * Show artist and album underneath the albums in the cover manager when all Artists is selected.
    * Disable unavailable right click cover actions.
    * Remove 3rdparty TagLib now that TagLib 1.12 is available.
    * (macOS) Update and improve build deployment/bundling for Qt 6.

  New features:
    * Add option and support for saving embedded covers for FLAC, Ogg Vorbis, MP3 and MP4/AAC.

(nia)

2021-04-21 09:29:39 UTC MAIN commitmail json YAML

doc: Updated www/snownews to 1.7

(nia)

2021-04-21 09:28:28 UTC MAIN commitmail json YAML

snownews: update to 1.7

changes:
    Resuming active maintenance.
    Use curl to load feeds.
    Store feed list as OPML.
    Move configuration and cache to XDG dirs.
    Support Atom feeds.
    Support content:encoded tag in RSS feeds.
    Display UTF8 text.
    Redirect stderr to logfile.
    Fix newsitem text scrolling.
    Fix various build failures.
    Add DESTDIR support.
    Remove obsolete scripts.

(nia)

2021-04-21 09:22:00 UTC MAIN commitmail json YAML

freeze: remove dead download location

(wiz)

2021-04-21 09:21:25 UTC MAIN commitmail json YAML

macutil: remove dead download location

(wiz)

2021-04-21 09:19:08 UTC MAIN commitmail json YAML

2021-04-21 09:18:10 UTC MAIN commitmail json YAML

maplay: remove dead download location

(wiz)

2021-04-21 09:17:50 UTC MAIN commitmail json YAML

*: remove dead download location

(wiz)

2021-04-21 09:17:08 UTC MAIN commitmail json YAML

2021-04-21 09:16:32 UTC MAIN commitmail json YAML

netperf: remove dead download location

(wiz)

2021-04-21 09:15:58 UTC MAIN commitmail json YAML

nettest: remove dead download location

(wiz)

2021-04-21 09:15:35 UTC MAIN commitmail json YAML

2021-04-21 09:15:08 UTC MAIN commitmail json YAML

2021-04-21 09:12:23 UTC MAIN commitmail json YAML

2021-04-21 09:11:13 UTC MAIN commitmail json YAML

2021-04-21 09:07:09 UTC MAIN commitmail json YAML

spice: remove dead download location

(wiz)

2021-04-21 09:06:15 UTC MAIN commitmail json YAML

2021-04-21 09:04:33 UTC MAIN commitmail json YAML

birda: remove dead download location

(wiz)

2021-04-21 09:03:46 UTC MAIN commitmail json YAML

gkermit: remove dead download location

(wiz)

2021-04-21 09:03:05 UTC MAIN commitmail json YAML

doc: Updated security/stunnel to 5.59

(nia)

2021-04-21 09:02:45 UTC MAIN commitmail json YAML

modemd: remove dead download location

(wiz)

2021-04-21 09:02:32 UTC MAIN commitmail json YAML

stunnel: update to 5.59

### Version 5.59, 2021.04.05, urgency: HIGH
* Security bugfixes
  - OpenSSL DLLs updated to version 1.1.1k.
* New features
  - Client-side "protocol = ldap" support (thx to Bart
    Dopheide and Seth Grover).
* Bugfixes
  - The test suite fixed not to require external connectivity.
  - Fixed paths in generated manuals (thx to Tatsuki Makino).
  - Fixed configuration reload when compression is used.
  - Fixed compilation with early releases of OpenSSL 1.1.1.

(nia)

2021-04-21 08:57:09 UTC MAIN commitmail json YAML

2021-04-21 08:55:47 UTC MAIN commitmail json YAML

2021-04-21 08:54:35 UTC MAIN commitmail json YAML

2021-04-21 08:53:30 UTC MAIN commitmail json YAML

2021-04-21 08:51:17 UTC MAIN commitmail json YAML

py-zhCodecs: remove dead download locations

(wiz)

2021-04-21 08:50:07 UTC MAIN commitmail json YAML

2021-04-21 08:48:44 UTC MAIN commitmail json YAML

2021-04-21 08:47:44 UTC MAIN commitmail json YAML

unix2dos: remove dead download site

(wiz)

2021-04-21 08:47:16 UTC MAIN commitmail json YAML

Updated security/libgcrypt, textproc/icu

(adam)

2021-04-21 08:44:31 UTC MAIN commitmail json YAML

2021-04-21 08:42:53 UTC MAIN commitmail json YAML

openldap: remove dead master site

(wiz)

2021-04-21 08:41:57 UTC MAIN commitmail json YAML

pgtcl: remove dead master site

(wiz)

2021-04-21 08:41:06 UTC MAIN commitmail json YAML

as31: remove dead master site

(wiz)

2021-04-21 08:39:56 UTC MAIN commitmail json YAML

avltree: remove dead master site

(wiz)

2021-04-21 08:38:49 UTC MAIN commitmail json YAML

cdecl: remove dead master sites

(wiz)

2021-04-21 08:37:59 UTC MAIN commitmail json YAML

cvslock: remove dead master site

(wiz)

2021-04-21 08:37:05 UTC MAIN commitmail json YAML

cvsync: remove dead master site

(wiz)

2021-04-21 08:36:10 UTC MAIN commitmail json YAML

2021-04-21 08:35:04 UTC MAIN commitmail json YAML

libproplist: remove dead master site

(wiz)

2021-04-21 08:30:17 UTC MAIN commitmail json YAML

icu: updated to 69.1

ICU 69.1 released. It updates to CLDR 39. This release includes significant improvements for measurement unit formatting and number formatting in general.

(adam)

2021-04-21 08:30:16 UTC MAIN commitmail json YAML

doc: Updated sysutils/xplr to 0.5.4

(pin)

2021-04-21 08:29:54 UTC MAIN commitmail json YAML

sysutils/xplr: update to 0.5.4

0.5.4
=====
  - Fixed exit on permission denial.
  - Minor UI improvement.

0.5.3
=====
  - The terminal session's $PWD is now in sync with the xplr session.
  This allows for e.g. Alacritty to open the new windows in xplr's $PWD
  when you press cmd+n or win+n.

(pin)

2021-04-21 08:29:08 UTC MAIN commitmail json YAML

doc: Updated x11/qt5ct to 1.2

(pin)

2021-04-21 08:29:00 UTC MAIN commitmail json YAML

noweb: remove dead master site

(wiz)

2021-04-21 08:28:38 UTC MAIN commitmail json YAML

x11/qt5ct: update to 1.2

- added cmake support
- updated color schemes
- updated Spanish translation (Toni Est辿vez)
- updated Dutch translation (Heimen Stoffels)
- updated Chinese (Simplified) translation (Tramsifex)
- updated Danish translation (scootergrisen)
- updated Italian translation (albanobattistella)

(pin)

2021-04-21 08:28:31 UTC MAIN commitmail json YAML

libgcrypt: updated to 1.9.3

Noteworthy changes in version 1.9.3 (2021-04-19)
------------------------------------------------

* Bug fixes:
  - Fix build problems on i386 using gcc-4.7.
  - Fix checksum calculation in OCB decryption for AES on s390.
  - Fix a regression in gcry_mpi_ec_add related to certain usages of
    curve 25519.
  - Fix a symbol not found problem on Apple M1.
  - Fix for Apple iOS getentropy peculiarity.
  - Make keygrip computation work for compressed points.

* Performance:
  - Add x86_64 VAES/AVX2 accelerated implementation of Camellia.
  - Add x86_64 VAES/AVX2 accelerated implementation of AES.
  - Add VPMSUMD acceleration for GCM mode on PPC.

* Internal changes.
  - Harden MPI conditional code against EM leakage.
  - Harden Elgamal by introducing exponent blinding.
  - Fix memory leaks in the error code paths of EdDSA.

(adam)

2021-04-21 08:27:24 UTC MAIN commitmail json YAML

pvs: remove dead master site

(wiz)

2021-04-21 08:26:08 UTC MAIN commitmail json YAML

ruby-eet: remove dead master site

(wiz)

2021-04-21 08:24:51 UTC MAIN commitmail json YAML

sml-mode: remove dead master site

(wiz)

2021-04-21 08:23:37 UTC MAIN commitmail json YAML

tmake: remove dead master site

(wiz)

2021-04-21 08:22:42 UTC MAIN commitmail json YAML

elvis: remove dead master site and homepage

(wiz)

2021-04-21 08:21:44 UTC MAIN commitmail json YAML

lpe: remove dead master site

(wiz)

2021-04-21 08:20:46 UTC MAIN commitmail json YAML

mg2a: remove dead master site

(wiz)

2021-04-21 08:20:28 UTC MAIN commitmail json YAML

doc: Updated emulators/libretro-stella to 6.5.3

(nia)

2021-04-21 08:19:28 UTC MAIN commitmail json YAML

stella: update to 6.5.3

6.5.2 to 6.5.3 (April 20, 2021)

  * Added context-sensitive help.

  * Improved support of multiple monitors with different resolutions.

  * Improved analog input reading (Paddles, Keyboards...).

  * Fixed QuadTari support for controller types other than Joysticks.

  * Fixed palette and TV effects saving for Retron77.

  * Fixed immediate disassembling when switching options in debugger.

-Have fun!

(nia)

2021-04-21 08:11:17 UTC MAIN commitmail json YAML

2021-04-21 08:09:02 UTC MAIN commitmail json YAML

uemacs: remove dead master site

(wiz)

2021-04-21 08:08:07 UTC MAIN commitmail json YAML

ve: remove dead master sites, add github homepage

(wiz)

2021-04-21 08:05:56 UTC MAIN commitmail json YAML

wily: remove dead master site

(wiz)

2021-04-21 08:05:13 UTC MAIN commitmail json YAML

twin: remove dead master site and homepage

(wiz)

2021-04-21 08:04:14 UTC MAIN commitmail json YAML

2021-04-21 08:03:24 UTC MAIN commitmail json YAML

2021-04-21 07:59:47 UTC MAIN commitmail json YAML

ko-baekmuk: remove dead master site

(wiz)

2021-04-21 07:59:23 UTC MAIN commitmail json YAML

ko-hanyang: improve previous

(wiz)

2021-04-21 07:58:54 UTC MAIN commitmail json YAML

ko-hanyang: remove dead master site

(wiz)

2021-04-21 07:57:31 UTC MAIN commitmail json YAML

ko-mizi: remove dead master site

(wiz)

2021-04-21 07:44:57 UTC MAIN commitmail json YAML

doc: Updated chat/weechat to 3.1

(nia)

2021-04-21 07:44:13 UTC MAIN commitmail json YAML

weechat: update to 3.1

== Version 3.1 (2021-03-07)

New features::

  * core: add options weechat.look.hotlist_update_on_buffer_switch and weechat.look.read_marker_update_on_buffer_switch (issue #992, issue #993)
  * core: add option sec.crypt.passphrase_command to read passphrase from an external program on startup, remove option sec.crypt.passphrase_file (issue #141)
  * core: improve debug in command /eval: display more verbose debug with two "-d", add indentation and colors
  * core: add options "setvar" and "delvar" in command /buffer, rename option "localvar" to "listvar"
  * core: add buffer local variable "completion_default_template" (evaluated) to override the value of option "weechat.completion.default_template" (issue #1600)
  * core: add option "recreate" in command /filter
  * core: add raw string in evaluation of expressions with "raw:xxx" (issue #1611)
  * core: add evaluation of conditions in evaluation of expressions with "eval_cond:xxx" (issue #1582)
  * api: add info_hashtable "secured_data"
  * irc: add info "irc_is_message_ignored"
  * irc: add server option "default_chantypes", used when the server does not send them in message 005 (issue #1610)
  * trigger: add variable "${tg_trigger_name}" in command trigger evaluated strings (issue #1580)

Bug fixes::

  * core: fix quoted line in cursor mode (issue #1602)
  * core: fix wrong size of the new window after vertical split (issue #1612)
  * core: do not remove quotes in arguments of command /eval as they can be part of the evaluated expression/condition (issue #1601)
  * core: display an error when the buffer is not found with command /command -buffer
  * buflist: add option buflist.look.use_items to speed up display of buflist (issue #1613)
  * irc: add bar item "irc_nick_prefix"
  * irc: fix separator between nick and host in bar item "irc_nick_host"
  * irc: fix completion of commands /halfop and /dehalfop

Documentation::

  * do not build weechat-headless man page if headless binary is disabled (issue #1607)

(nia)

2021-04-21 07:36:40 UTC MAIN commitmail json YAML

doc: Updated net/vtun to 3.0.4

(nia)

2021-04-21 07:36:24 UTC MAIN commitmail json YAML

vtun: update to 3.0.4

3.0.4
bug53 - Race condition in socket() vs syslog (AH)
patch23 - check for fork and work around lack (AM)
patch22 - static declarations where possible (AM)
patch21 - fix up configure.in for newer autoheader (AM)

(nia)

2021-04-21 07:23:47 UTC MAIN commitmail json YAML

doc: Updated misc/vttest to 20210210

(nia)

2021-04-21 07:23:17 UTC MAIN commitmail json YAML

vttest: update to 20210210

20210210
        + improve test-screen for VT420 cursor movement, when left/right
          margins are enabled (prompted by discussion with Tom Szilagyi).

+ updated/improved configure macros, i.e., for shellcheck-warnings

20201225
+ correct highlighting for ISO Greek, Hebrew and Latin-5.

+ correct highlighting for DEC Cyrillic, Greek and Hebrew.

+ add Latin-2 character set for VT510.

+ updated/improved configure macros, i.e., for compiler-warnings

+ update config.guess, config.sub

(nia)

2021-04-21 01:27:53 UTC MAIN commitmail json YAML

firefox: drop stale BUILDLINK_API_DEPENDS local override

(gutteridge)

2021-04-20 23:56:27 UTC MAIN commitmail json YAML

py-numpy: fix typos in a comment

(gutteridge)

2021-04-20 23:38:23 UTC MAIN commitmail json YAML

qtermwidget: fix BUILDLINK_API_DEPENDS

(gutteridge)

2021-04-20 21:48:14 UTC MAIN commitmail json YAML

math/py-scikit-learn: drop explicit BLAS dependency

This adds nothing on the normal dependency to numpy.

(thor)

2021-04-20 21:39:25 UTC MAIN commitmail json YAML

math/py-scipy: drop direct BLAS dependency, used via math/py-numpy

(thor)

2021-04-20 21:06:58 UTC MAIN commitmail json YAML

2021-04-20 20:58:57 UTC MAIN commitmail json YAML

doc: Updated math/py-numpy16 to 1.16.6nb2

(thor)

2021-04-20 20:58:39 UTC MAIN commitmail json YAML

math/py-numpy16: bring BLAS usage into line with math/py-numpy

This old version for PY27 now behaves just like the modern one
regarding usage of BLAS and actually CBLAS.

(thor)

2021-04-20 20:54:07 UTC MAIN commitmail json YAML

doc: Updated math/py-numpy to 1.19.5nb4

(thor)

2021-04-20 20:53:49 UTC MAIN commitmail json YAML

math/py-numpy: updated system_info patch to upstreamed version, use cblas

The patch to system_info.py got upstreamed in a modified form which is
now backported here. On updating to 1.21, it shall be dropped.

In the process of upstreaming the patch, I learned that numpy really
needs to use cblas for proper acceleration, so it does that now and
gets a PKGREVISION bump because of that.

(thor)

2021-04-20 20:41:32 UTC MAIN commitmail json YAML

doc: Updated math/lapacke to 3.9.0

(thor)

2021-04-20 20:40:47 UTC MAIN commitmail json YAML

math/lapacke: import from wip

This is the C interface to math/lapack or any other implementation
selected via ml/blas.buildlink3.mk.

(thor)

2021-04-20 20:37:48 UTC MAIN commitmail json YAML

doc: Added math/cblas version 3.9.0

(thor)

2021-04-20 20:37:03 UTC MAIN commitmail json YAML

math/cblas: import from wip

This will be used by math/py-numpy soon for proper matrix math.

(thor)

2021-04-20 20:09:36 UTC MAIN commitmail json YAML

poppler: Don't compile the qt6 wrapper

Unnecesary(?). Disabling it fixes the build on macos

(cirnatdan)

2021-04-20 19:50:42 UTC MAIN commitmail json YAML

doc: Updated sysutils/macchina to 0.7.0

(pin)

2021-04-20 19:50:22 UTC MAIN commitmail json YAML

sysutils/macchina: update to 0.7.0

Release v0.7.0, Codename "Cobalt".

Okay, before I tell you all about the new features and bug fixes, I'd like to
thank everybody that is actively using Macchina, and especially our
contributors.

I'm very grateful that people find Macchina as interesting as I do. Our
codebase has grown from a small, glued-together set of instructions, to two
independent packages, providing users and developers the opportunity to inspect
the code and actually enjoy doing so :)

Let's take a look at the new changes:

-ASCII art now adapts to how many readouts are displayed, as suggested by
@Ramiferous.
-Updated Linux big ASCII art variant.
-The title of "Emoji" theme, now named "Boron", can now be changed, and its
separator has been modified too.
-Removed jemallocator from the dependency list, this is due to build errors
primarily with libc, we started using this a while back, because its
performance improvements were promising, but I have just come to the conclusion
that the headaches it causes aren't worth it for the most part.
-A "Beryllium" theme has appeared!
-Themes now print their own name in the box title.
-Benchmarking with hyperfine has finally been fixed.
-Update Linux and NetBSD benchmarks.
-libmacchina: Optimizations for Linux, Android and OpenWrt by implementing an
interface for sysinfo struct and using that when possible.
-libmacchina (Linux): Optimize terminal fetching by utilizing a custom
implementation instead of calling ps.
-libmacchina (Linux): Distribution should now return NAME and VERSION whenever
possible, previously it was NAME and VERSION_ID.
@123marvin123:
-Fixed an issue where the palette doesn't respect the user-provided padding
value.
@uttarayan21:
-Added command autocompletion for bash and fish.
-libmacchina: Refactored many functions, fixing a lot of clippy's warnings.
-libmacchina: Added Android support.

(pin)

2021-04-20 19:10:48 UTC MAIN commitmail json YAML

CHANGES-2021: remove double entries

(pin)

2021-04-20 18:59:12 UTC MAIN commitmail json YAML

doc: Updated meta-pkgs/lxqt to 0.17.0

(pin)

2021-04-20 18:58:54 UTC MAIN commitmail json YAML

lxqt: update to 0.17.0

Thanks to David H. Gutteridge for review

(pin)

2021-04-20 18:56:27 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-session to 0.17.1

(pin)

2021-04-20 18:56:04 UTC MAIN commitmail json YAML

x11/lxqt-session: update to 0.17.0

lxqt-session-0.17.1 / 2021-04-16
================================
  - Fixed compilation against Qt < 5.15 (especially, 5.12).

lxqt-session-0.17.0 / 2021-04-15
================================
  - Code cleanup and modernization (use const references where possible, fix
  possible use of uninitialized variables, removing deprectaed methods, etc.).
  - Remove Openbox configuration for WM agnosticism.
  - Completely moved to Qt5 signal/slot syntax.
  - Become subreaper and end children on finishing session.

(pin)

2021-04-20 18:51:19 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-panel to 0.17.1

(pin)

2021-04-20 18:50:56 UTC MAIN commitmail json YAML

x11/lxqt-panel: update to 0.17.0

lxqt-panel-0.17.1 / 2021-04-16
==============================
  - Fixed compilation against Qt < 5.15 (especially, 5.12).

lxqt-panel-0.17.0 / 2021-04-15
==============================
  - Fixed the popup of grouped task button in a special case.
  - Code cleanup (using nullptr, removing deprecated headers/methods, using
  default member initializers, etc.).
  - Fixed changing of world clock's time zone with mouse wheel.
  - Optionally auto-hide panel only when it overlaps a window.
  - Workaround for an issue with glibc 2.33 on old Docker engines.
  - Completely move to Qt5 signal/slot syntax.
  - Check pressed mouse buttons before closing grouped task popup.

(pin)

2021-04-20 18:49:50 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-runner to 0.17.0

(pin)

2021-04-20 18:49:28 UTC MAIN commitmail json YAML

x11/lxqt-runner: update to 0.17.0

lxqt-runner-0.17.0 / 2021-04-15
===============================
  - Prevent selection jumps in the dropdown list.
  - Activated `Home` and `End` in the dropdown list.
  - Copy the calculation result to clipboard.
  - Completely moved to Qt5 signal/slot syntax.
  - Select the calculation result on showing lxqt-runner.

(pin)

2021-04-20 18:49:00 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-notificationd to 0.17.0

(pin)

2021-04-20 18:45:55 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-notificationd to 0.17.0

(pin)

2021-04-20 18:45:33 UTC MAIN commitmail json YAML

x11/lxqt-notificationd: update to 0.17.0

lxqt-notificationd-0.17.0 / 2021-04-15
======================================
  - Used const references where possible.
  - Silenced compiler warning about unused parameters.
  - Handled Qt5.15's deprecations.
  - Used "= default" for trivial destructors.
  - Completely moved to Qt5 signal/slot syntax.
  - Always handle notification summary as plain-text.

(pin)

2021-04-20 18:44:03 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-globalkeys to 0.17.0

(pin)

2021-04-20 18:43:41 UTC MAIN commitmail json YAML

x11/lxqt-globalkeys: update to 0.17.0

lxqt-globalkeys-0.17.0 / 2021-04-15
===================================
  - Completely moved to Qt5 signal/slot syntax.

(pin)

2021-04-20 18:42:19 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-config to 0.17.1

(pin)

2021-04-20 18:41:57 UTC MAIN commitmail json YAML

x11/lxqt-config: update to 0.17.1

lxqt-config-0.17.1 / 2021-04-16
===============================
  - Fixed compilation against Qt 5.12.

lxqt-config-0.17.0 / 2021-04-15
===============================
  - Made lxqt-config-appearance work under Wayland.
  - Made the code cleaner and more up-to-date.

(pin)

2021-04-20 18:38:41 UTC MAIN commitmail json YAML

doc: Updated archivers/lxqt-archiver to 0.4.0

(pin)

2021-04-20 18:38:16 UTC MAIN commitmail json YAML

archivers/lxqt-archiver: update to 0.4.0

lxqt-archiver-0.4.0 / 2021-04-15
===================================
  - Support opening and extracting of disk images.
  - Also, support xz-compressed disk images.
  - Added "application/vnd.debian.binary-package" to mimetypes list.
  - Made directory view horizontally scrollable.
  - Remember window settings.

(pin)

2021-04-20 18:36:49 UTC MAIN commitmail json YAML

doc: Updated sysutils/lxqt-powermanagement to 0.17.0

(pin)

2021-04-20 18:36:25 UTC MAIN commitmail json YAML

sysutils/lxqt-powermanagement: update to 0.17.0

lxqt-powermanagement-0.17.0 / 2021-04-15
========================================
  - Handled Qt5.15's deprecations.
  - Added an option to disable idle watcher on fullscreen.
  - Completely moved to new signal/slot syntax.
  - Separate idle watchers for AC and battery.

(pin)

2021-04-20 18:35:01 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-qtplugin to 0.17.0

(pin)

2021-04-20 18:31:49 UTC MAIN commitmail json YAML

doc: remove duplicate line.

(wiz)

2021-04-20 18:31:25 UTC MAIN commitmail json YAML

x11/lxqt-qtplugin: update to 0.17.0

lxqt-qtplugin-0.17.0 / 2021-04-15
=================================
  - Handled Qt 5.15 deprecations.
  - Don't check before deleting a pointer.
  - Don't use implicit conversions.
  - Fixed a palette/highlight color related typo.

(pin)

2021-04-20 18:29:58 UTC MAIN commitmail json YAML

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

(pin)

2021-04-20 18:29:35 UTC MAIN commitmail json YAML

security/lxqt-openssh-askpass: update to 0.17.0

lxqt-openssh-askpass-0.17.0 / 2021-04-15
========================================
  * Updated README.md.

(pin)

2021-04-20 18:28:44 UTC MAIN commitmail json YAML

doc: Updated security/lxqt-sudo to 0.17.0

(pin)

2021-04-20 18:28:19 UTC MAIN commitmail json YAML

security/lxqt-sudo: update to 0.17.0

lxqt-sudo-0.17.0 / 2021-04-15
=============================
  - Handled Qt5.15's deprecations.

(pin)

2021-04-20 18:27:54 UTC MAIN commitmail json YAML

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

(wiz)

2021-04-20 18:27:45 UTC MAIN commitmail json YAML

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

2.2.0

Features

    Adds support for errors.py to also use 'errors' for error_details (#1281) (a5d2081)

2.1.0

Features

    add status_code property on http error handling (#1185) (db2a766)

Bug Fixes

    Change default of static_discovery when discoveryServiceUrl set (#1261) (3b4f2e2)
    correct api version in oauth-installed.md (#1258) (d1a255f)
    fix .close() (#1231) (a9583f7)
    Resolve issue where num_retries would have no effect (#1244) (c518472)

Documentation

    Distinguish between public/private docs in 2.0 guide (#1226) (a6f1706)
    Update README to promote cloud client libraries (#1252) (22807c9)

2.0.2

Bug Fixes

    Include discovery artifacts in published package (#1221) (ad618d0)

2.0.1

Bug Fixes

    add static discovery docs (#1216) (b5d33d6)

Documentation

    add a link to the migration guide in the changelog (#1213) (b85da5b)

2.0.0

âš  BREAKING CHANGES

    deps: require 3.6+ (#961)

Features

    Add support for using static discovery documents (#1109) (32d1c59)
    Update synth.py to copy discovery files from discovery-artifact-manager (#1104) (af918e8)

Bug Fixes

    Catch ECONNRESET and other errors more reliably (#1147) (ae9cd99)
    deps: add upper-bound google-auth dependency (#1180) (c687f42)
    handle error on service not enabled (#1117) (c691283)
    Improve support for error_details (#1126) (e6a1da3)
    MediaFileUpload error if file does not exist (#1127) (2c6d029)
    replace deprecated socket.error with OSError (#1161) (b7b9986)
    Use logging level info when file_cache is not available (#1125) (0b32e69)

Miscellaneous Chores

    deps: require 3.6+ (#961) (8325d24)

Documentation

    add networkconnectivity v1alpha1 (#1176) (91b61d3)
    Delete redundant oauth-web.md (#1142) (70bc6c9)
    fix MediaIoBaseUpload broken link (#1112) (334b6e6)
    fix regression with incorrect args order in docs (#1141) (4249a7b)
    fix typo in thread safety example code (#1100) (5ae088d)
    Reduce noisy changes in docs regen (#1135) (b1b0c83)
    update docs/dyn (#1096) (c2228be)
    update guidance on service accounts (#1120) (b2ea122)

(wiz)

2021-04-20 18:24:56 UTC MAIN commitmail json YAML

x11/lxqt-admin: update to 0.17.0

lxqt-admin-0.17.0 / 2021-04-15
==============================
  - Made lxqt-admin-time work on non-systemd GNU/Linux systems.
  - Silenced compiler warnings about unused parameters.
  - Avoided extra QString allocations.
  - Don't use hard-coded install locations.
  - Moded to Qt5 signal/slot syntax.

(pin)

2021-04-20 18:24:02 UTC MAIN commitmail json YAML

doc: Updated security/lxqt-policykit to 0.17.0

(pin)

2021-04-20 18:23:38 UTC MAIN commitmail json YAML

security/lxqt-policykit: update to 0.17.0

lxqt-policykit-0.17.0 / 2021-04-15
==================================
  - Completely moved to Qt5 signal/slot syntax.
  - A better memory handling in PolicykitAgent.
  - Code cleanup.
  - Improved code readability.

(pin)

2021-04-20 18:22:42 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-about to 0.17.0

(pin)

2021-04-20 18:22:15 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-about to 0.17.0

(pin)

2021-04-20 18:21:52 UTC MAIN commitmail json YAML

x11/lxqt-about: update to 0.17.0

lxqt-about-0.17.0 / 2021-04-15
==============================
  - Bumped version to 0.17.0.
  - Update README.md.
  - Moved to Qt5 signal/slot syntax.

(pin)

2021-04-20 18:18:42 UTC MAIN commitmail json YAML

doc: Updated graphics/lxqt-themes to 0.17.0

(pin)

2021-04-20 18:18:23 UTC MAIN commitmail json YAML

graphics/lxqt-themes: update to 0.17.0

lxqt-themes-0.17.0 / 2021-04-15
===============================
  - Added alternate background color to the calendar widget in some themes.
  - Added a visible menu separator to the Dark theme.

(pin)

2021-04-20 18:16:59 UTC MAIN commitmail json YAML

doc: Updated wm/obconf-qt to 0.16.1

(pin)

2021-04-20 18:16:33 UTC MAIN commitmail json YAML

wm/obconf-qt: update to 0.16.1

-Translations are updated.

(pin)

2021-04-20 18:15:21 UTC MAIN commitmail json YAML

doc: Updated audio/pavucontrol-qt to 0.17.0

(pin)

2021-04-20 18:14:57 UTC MAIN commitmail json YAML

audio/pavucontrol-qt: update to 0.17.0

pavucontrol-qt-0.17.0 / 2021-04-15
==================================
  - Removed the unused dbus dependency.

(pin)

2021-04-20 18:13:23 UTC MAIN commitmail json YAML

doc: Updated x11/qterminal to 0.17.0

(pin)

2021-04-20 18:12:57 UTC MAIN commitmail json YAML

x11/qterminal: update to 0.17.0

qterminal-0.17.0 / 2021-04-15
=============================
  - Some code cleanup and modernization.
  - Removed two warnings that were shown when QTerminal was started.
  - Added an option to disable bracketed paste mode.
  - Moved the paste-related codes to qtermwidget.
  - Made "Action after paste" clearer and default to "Scrolling to bottom".
  - Added a tooltip about bracketed paste mode.
  - Added modes for background image.

(pin)

2021-04-20 18:12:09 UTC MAIN commitmail json YAML

doc: Updated x11/qtermwidget to 0.17.0

(pin)

2021-04-20 18:08:04 UTC MAIN commitmail json YAML

doc: Updated graphics/screengrab to 2.2.0

(pin)

2021-04-20 18:07:39 UTC MAIN commitmail json YAML

graphics/lximage-qt: update to 0.17.0

lximage-qt-0.17.0 / 2021-04-15
==============================
  - Made fitting images on navigating optional.
  - Added options for thumbnails.
  - Fixed all compilation warnings and remove deprecated methods.

(pin)

2021-04-20 18:06:58 UTC MAIN commitmail json YAML

doc: Updated graphics/lximage-qt to 0.17.0

(pin)

2021-04-20 18:06:23 UTC MAIN commitmail json YAML

graphics/lximage-qt: update to 0.17.0

lximage-qt-0.17.0 / 2021-04-15
==============================
  - Made fitting images on navigating optional.
  - Added options for thumbnails.
  - Fixed all compilation warnings and remove deprecated methods.

(pin)

2021-04-20 18:05:13 UTC MAIN commitmail json YAML

doc: Updated sysutils/pcmanfm-qt to 0.17.0

(pin)

2021-04-20 18:04:47 UTC MAIN commitmail json YAML

sysutils/pcmanfm-qt: update to 0.17.0

pcmanfm-qt-0.17.0 / 2021-04-15
==============================
  - Close a file tooltip on key pressing or changing directory/filter/sorting.
  - Always close windows before quitting.
  - Natural keyboard navigation on Desktop.
  - Don't put a non-directory path into search dialog.
  - Used Qt5.15's Qt::SplitBehavior.
  - Changed a label and added a tooltip to Preferences.
  - Added a Tool menu-item to open current directory as admin.
  - Added nullity check for proxy model when setting desktop folder.
  - Always focus visible view on opening a new tab.
  - Workaround an issue with glibc 2.33 on old Docker engines.
  - Completed support for creation time.
  - Handle GVFS' Admin separately and appropriately.
  - Silenced most compilation warnings.
  - Added an option for max. file size with external thumbnailers.
  - Added "Create Launcher" to Tools menu.

(pin)

2021-04-20 18:01:42 UTC MAIN commitmail json YAML

doc: Updated x11/libfm-qt to 0.17.1

(pin)

2021-04-20 18:01:18 UTC MAIN commitmail json YAML

x11/libfm-qt: update to 0.17.0

libfm-qt-0-17.1 / 2021-04-16
============================
  - Fixed compilation against Qt5.12.

libfm-qt-0.17.0 / 2021-04-15
============================
  - Fixed compilation with Qt >=5.15.3.
  - Add Alacritty to terminals list.
  - Fixed template renaming before creating.
  - Fixed the localization of LXQt file dialog.
  - Used Qt5.15's Qt::SplitBehavior.
  - Enabled the Group entry of Properties dialog when file belongs to user.
  - Fixed a rare crash on emptying Trash.
  - Used Qt5 signal/slot syntax.
  - Added the missing eject button in a special case.
  - Fixed the xarchiver command to create archives.
  - Launch multiple files associated with the same app together.
  - Added an open-with menu-item to open mixed selections with default apps.
  - Don't try to auto-select hidden files when they aren't shown.
  - Added support for creation time.
  - File dialog: Allow opening of desktop files that are shortcuts.
  - Fixed the size limit for thumbnail creation.
  - Workaround for a bug in QCollator when sorting files.
  - Added a Delete action to trash file context menu.
  - Removed redundant context menu items inside Trash.
  - Silenced the compilation warning about QMatrix.
  - Don't show Unix start time for unsupported times.
  - Set a separate file size limit for external thumbnails.
  - Fixed the emblem positions in compact and detailed views.
  - Guarantee a separator before all custom actions (in context menus).
  - Fixed the sorting by deletion time.
  - Fixed blurred thumbnails with scale factors > 1.
  - Added a missing nullity check in mountoperation.
  - Updated the mimetypes lists of some archivers.
  - Fixed a memory leak in LXQt file dialog.

(pin)

2021-04-20 18:00:04 UTC MAIN commitmail json YAML

doc: Updated x11/liblxqt to 0.17.0

(pin)

2021-04-20 17:59:40 UTC MAIN commitmail json YAML

x11/liblxqt: update to 0.17.0

liblxqt-0.17.0 / 2021-04-15
===========================
  - Used Qt5.15's Qt::SplitBehavior.
  - Fixed dbus errors with invalid QVariant data sent over it.
  - Made GlobalSettings public (exported symbols) in lxqtsettings.
  - Modernized some headers.
  - Modernize the trivial destructors.
  - Used "handle quit signals" constructor in lxqtsingleapplication.
  - Replaced the deprecated constructor of QWheelEvent.

(pin)

2021-04-20 17:58:27 UTC MAIN commitmail json YAML

doc: Updated x11/libqtxdg to 3.7.1

(pin)

2021-04-20 17:58:03 UTC MAIN commitmail json YAML

x11/libqtxdg: update to 3.7.1

libqtxdg-3.7.1 / 2021-04-16
===========================
  - Fixed compilation against Qt < 5.14.
  - Added a nullity check for paint device.

libqtxdg-3.7.0 / 2021-04-15
===========================
  - Removed deprecated XdgDesktopFileCache.
  - Handled Qt 5.15 deprecations.
  - Use "= default" for trivial constructors/destructors.
  - Improved readability in container emptiness check.
  - Ported QStringRef to QStringView.
  - Moved to Qt5 signal/slot syntax.
  - Added XTerm as a runtime dependency.
  - Allow non-detached starting in xdgdesktopfile.
  - Use QSvgRenderer for SVG icons.

(pin)

2021-04-20 17:56:49 UTC MAIN commitmail json YAML

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

(pin)

2021-04-20 17:56:25 UTC MAIN commitmail json YAML

devel/lxqt-build-tools: update to 0.9.0

lxqt-build-tools-0.9.0 / 2021-04-15
===================================
  -Added a CMake FindXTerm module.

(pin)

2021-04-20 16:50:15 UTC MAIN commitmail json YAML

doc: Updated devel/py-protobuf to 3.15.8

(wiz)

2021-04-20 16:50:03 UTC MAIN commitmail json YAML

doc: Updated devel/protobuf to 3.15.8

(wiz)

2021-04-20 16:49:51 UTC MAIN commitmail json YAML

protobuf, py-protobuf: update to 3.15.8

Ruby

    Fixed memory leak of Ruby arena objects (#8461)

(wiz)

2021-04-20 16:43:14 UTC MAIN commitmail json YAML

doc: Updated devel/py-hypothesis to 6.10.0

(wiz)

2021-04-20 16:43:04 UTC MAIN commitmail json YAML

py-hypothesis: update to 6.10.0.

6.10.0 - 2021-04-17

This release teaches the Ghostwriter to read parameter types from
Sphinx, Google, or Numpy-style structured docstrings, and improves
some related heuristics about how to test scientific and numerical
programs.

6.9.2 - 2021-04-15

This release improves the Ghostwriter窶冱 handling of exceptions, by
reading :raises ...: entries in function docstrings and ensuring
that we don窶冲 suppresss the error raised by test assertions.

6.9.1 - 2021-04-12

This patch updates our autoformatting tools, improving our code
style without any API changes.

6.9.0 - 2021-04-11

This release teaches from_type() how to see through typing.Annotated.
Thanks to Vytautas Strimaitis for reporting and fixing issue #2919!

6.8.12 - 2021-04-11

If rich is installed, the hypothesis write command will use it to
syntax-highlight the Ghostwritten code.

6.8.11 - 2021-04-11

This patch improves an error message from from_type() when builds()
would be more suitable (issue #2930).

6.8.10 - 2021-04-11

This patch updates the type annotations for arrays() to reflect
that shape: SearchStrategy[int] is supported.

6.8.9 - 2021-04-07

This patch fixes from_type() with abstract types which have either
required but non-type-annotated arguments to __init__, or where
from_type() can handle some concrete subclasses but not others.

6.8.8 - 2021-04-07

This patch teaches hypothesis write to check for possible roundtrips
in several more cases, such as by looking for an inverse in the
module which defines the function to test.

6.8.7 - 2021-04-07

This patch adds a more helpful error message if you try to call
sampled_from() on an Enum which has no members, but does have
dataclass()-style annotations (issue #2923).

(wiz)

2021-04-20 16:31:44 UTC MAIN commitmail json YAML

TODO: update gstreamer1 entry

(wiz)

2021-04-20 16:28:29 UTC MAIN commitmail json YAML

doc: Updated graphics/ImageMagick to 7.0.11.8

(wiz)

2021-04-20 16:28:27 UTC MAIN commitmail json YAML

p5-PerlMagick: update to 7.0.11.8.

Same as ImageMagick.

(wiz)

2021-04-20 16:28:16 UTC MAIN commitmail json YAML

ImageMagick: update to 7.0.11.8.

2021-04-17  7.0.11-8  <quetzlzacatenango@image...>
  * Release ImageMagick version 7.0.11-8 GIT revision 18636:53a252607:20210417

2021-04-17  7.0.11-8  Dirk Lemstra <dirk@lem.....org>
  * added support for pdf:author, pdf:producer and pdf:title when writing a
    PDF file.

2021-04-09  7.0.11-7  <quetzlzacatenango@image...>
  * constrain sub-image list.
  * -layers optimize no longer produces broken output (reference
    https://github.com/ImageMagick/ImageMagick/issues/3520).

(wiz)

2021-04-20 16:23:59 UTC MAIN commitmail json YAML

doc: Updated security/tor-browser-https-everywhere to 2021.4.15

(wiz)

2021-04-20 16:23:49 UTC MAIN commitmail json YAML

tor-browser-https-everywhere: update to 2021.4.15.

2021.4.15
* Add DuckDuckGo Smarter Encryption update channel
* Bloom filter for rulesets
* Firefox Fenix option page updates for Android users
* Move to Python 3 from Python 3.6
* Fix undefined type access
* Fix empty default types

(wiz)

2021-04-20 16:19:40 UTC MAIN commitmail json YAML

doc: Updated lang/vala to 0.52.2

(wiz)

2021-04-20 16:19:31 UTC MAIN commitmail json YAML

vala: update to 0.52.2.

Vala 0.52.2
===========
* Regression and bug fixes:
  - codegen:
    + Don't free temp-var for element-access to array with boxed structs [#1174]
    + Don't free unowned heap allocated struct

* Bindings:
  - glib-2.0: Add simple_generics attribute to GenericArray.find_custom()

(wiz)

2021-04-20 16:15:50 UTC MAIN commitmail json YAML

doc: Updated devel/apache-ant to 1.10.10

(wiz)

2021-04-20 16:15:39 UTC MAIN commitmail json YAML

apache-ant: update to 1.10.10.

Changes from Ant 1.10.9 TO Ant 1.10.10
======================================

Fixed bugs:
-----------

* SCP (with sftp=true) task would fail if fetching file located in root directory
  Bugzilla Report 64742

* javac task would fail if the arguments file it (internally) created didn't quote
  the # character. This has now been fixed.
  Bugzilla Reports 64912, 64790

* made sure LegacyXmlResultFormatter encodes characters illegal in
  XML the same way JUnit5's built-in formatter would.
  Bugzilla Report 65030

* LegacyXmlResultFormatter no longer double-encodes <>& in system-err
  and system-out
  Bugzilla Report 63436

* Fixes a bug in junitlauncher task's legacy-xml formatter, where the testcase
  representing a @Parameterized JUnit4 test wasn't being reported in the XML.
  Bugzilla Report 64952

* Fixes a bug where the ant-testutil-sources.jar that gets published to Maven
  central repository didn't contain any source files.
  Bugzilla Report 65110

* The <http> condition didn't follow redirects from http to https.
  Bugzilla Report 65105

* ZipOutputStream now overrides write(int) in order to make sure
  single byte writes get the same treatment as array writes.
  Github Pull Request #145

* Fixes a potential deadlock in junitlauncher task when using legacy-xml
  reporter.
  Bugzilla Report 64733

Other changes:
--------------

* javaversion condition now has a new "atmost" attribute. See the javaversion
  manual for more details

* The "listener" nested element of the "junitlauncher" task now has a new
  "useLegacyReportingName" attribute which can be used to control the test
  identifiers names that get reported by the listener. See the junitlauncher
  manual for more details.
  Note that this change also introduces a new "setUseLegacyReportingName" method
  on the org.apache.tools.ant.taskdefs.optional.junitlauncher.TestResultFormatter
  interface. This will break backward compatibility with any of your custom
  result formatters which implemented this interface and such implementations
  are now expected to implement this new method.

* a new attribute preserveduplicates allows <resourcelist> to return
  the same resource multiple times when set to true.
  Bugzilla Report 64854

* a new attribute filterbeforeconcat in <concat> can be used to
  decide whether the filterchain should be applied to the
  concatenated content (the default) or each nested resource
  individually before concatenating them.
  Bugzilla Report 64855

* the ssh tasks now share a new nested element additionalConfig that
  can be used to set config values for the jsch Session used by the
  task.
  Bugzilla Report 65089

* added new discardOutput and discardError properties to redirector
  and the exec, apply and java tasks which can be used to completely
  discard any (error) output. This is a platform independent
  alternative to directiong output to any kind of null device.

(wiz)

2021-04-20 15:18:19 UTC MAIN commitmail json YAML

2021-04-20 14:49:16 UTC MAIN commitmail json YAML

Add forgotten migration from the wagtail 2.12.4 update.

(joerg)

2021-04-20 14:44:04 UTC MAIN commitmail json YAML

Update wagtail to 2.12.4:

* Fix: CVE-2021-29434 - fix improper validation of URLs ('Cross-site Scripting') in rich text fields (Kevin Breen, Matt Westcott)
* Fix: Reverse migration errors in images and documents (Mike Brown)
* Fix: Avoid wagtailembeds migration failure on MySQL 8.0.13+ (Matt Westcott)
* Fix: Un-pin django-treebeard following upstream fix for migration issue (Matt Westcott)
* Fix: Prevent crash when copying an alias page (Karl Hobley)
* Fix: Prevent errors on page editing after changing LANGUAGE_CODE (Matt Westcott)
* Fix: Correctly handle model inheritance and `ClusterableModel` on `copy_for_translation` (Karl Hobley)

(joerg)

2021-04-20 13:47:55 UTC MAIN commitmail json YAML

doc: Updated devel/py-approvaltests to 0.4.2

(schmonz)

2021-04-20 13:47:45 UTC MAIN commitmail json YAML

Update to 0.4.2. From the changelog:

- Easier to understand error messages (closes #97)

(schmonz)

2021-04-20 13:13:04 UTC MAIN commitmail json YAML

doc: Updated graphics/tiff to 4.3.0

(gdt)

2021-04-20 13:12:54 UTC MAIN commitmail json YAML

graphics/tiff: Update to 4.3.0

Upstream changes:

  tiff requires C99 and uses C99 types.  The previous tiff types are
  deprecated.

  new codec for LERC

  bugfixes

  pruning of things no longer in use

https://libtiff.gitlab.io/libtiff/v4.3.0.html

(gdt)

2021-04-20 13:07:39 UTC MAIN commitmail json YAML

doc: Updated devel/mob to 1.5.0

(schmonz)

2021-04-20 13:07:30 UTC MAIN commitmail json YAML

Update to 1.5.0. From the changelog:

- Less noisy output: Only show number of unpushed commits in output if
  there are more than 0.
- Add experimental command `mob squash-wip` to squash any WIP commits in
  the wip branch into a following manual commit using `git rebase
  --interactive` with `mob` as the temporary `GIT_EDITOR`.
- The order of the latest commit is now reversed, the latest one is
  shown last.
- Add experimental configuration option `MOB_WIP_BRANCH_PREFIX` to
  configure the `mob/` prefix to some other value.

(schmonz)

2021-04-20 11:54:32 UTC MAIN commitmail json YAML

Fix errors and most warnings flagged by pkglint.
Note to self: run pkglint before committing.
Thanks to jperkin@ for the note.

(he)

2021-04-20 11:23:19 UTC MAIN commitmail json YAML

doc: Updated lang/gjs to 1.68.0

(cirnatdan)

2021-04-20 10:27:09 UTC MAIN commitmail json YAML

doc: Updated www/badwolf to 1.1.0

(pin)

2021-04-20 10:26:38 UTC MAIN commitmail json YAML

www/badwolf: update to 1.1.0

Badwolf 1.1.0 release!
======================

This release and it's timing means that the 1.0-branch is now only maintained
for security bugs.

Thanks to the translators for sending updates before the release.

It's also time for a status update blog post:
https://hacktivis.me/articles/BadWolf%2C%20two%20year%20later

Some stats:
$ cat *.c *.h *.sh | wc -l -m
  lines  characters
  2011  70078

Additions
---------
- Bookmarks, they are at their early stage, for now it's only completion,
  edition can be done with third-party programs (elinks, keditbookmarks, …).
  Wayland users should also note the following issue:
  https://gitlab.gnome.org/GNOME/gtk/-/issues/699
- Content-Filters are finally integrated which means that adblock extensions
  aren't needed anymore, you only need to give a policy file
- New translation: de
- A context_id is now shown before the tab label

Changes
-------
- WebKit's Intelligent Tracking Protection is now enabled
- Default CFLAGS: Hardening flags have been added, this should improve security
on some distros

Fixes
-----
- There should be no more memory/object/processes leaks
- Crashes happening on the file save dialog should have been fixed
- Printing dialog now correctly is bound to the main window

(pin)

2021-04-20 08:38:57 UTC MAIN commitmail json YAML

gjs: Update lang/gjs to 1.68.0

Version 1.68.0
--------------

- Closed bugs and merge requests:

  * 40.rc session crashes in gjs on unlocking (sometimes) [#387, !588, Marco
    Trevisan]
  * 40.rc: installed-tests installed despite explicitly disabled [#388, !589,
    Philip Chimento]

Version 1.67.3
--------------

- Closed bugs and merge requests:

  * System.exit() doesn't work inside signal handler [#19, !565, Evan Welsh]
  * GdkEvent subtypes trigger assert in Gtk4 [#365, !566, Evan Welsh]
  * Replace g_memdup [#375, !567, Philip Chimento]
  * 1.67.2: build fails with gcc 11 [#376, !568, Philip Chimento]
  * Warnings introspecting array of boxed type as signal argument. [#377, !569,
    Carlos Garnacho]
  * Add list command to debugger [!571, Nasah Kuma]
  * Assertion failure in enqueuePromiseJob [#349, !572, Philip Chimento]
  * in interpreter Ctrl-c should exit inner shell if stuck [#98, !574, Philip
    Chimento]
  * Compiler ambiguity in enum-utils.h on operator overloading [#368, !576,
    Chun-wei Fan]
  * Fix GJS_DISABLE_JIT not fully disabling JIT [!575, Ivan Molodetskikh]
  * Error running gjs built with prefix: g_object_new_is_valid_property: object
    class 'GjsContext' has no property named 'program-path' [#381, !577, Sonny
    Piers]
  * Various maintenance [!578, !586, Philip Chimento]
  * Add some profiling labels [!579, Ivan Molodetskikh]
  * Some installed tests (introspection) segfault when GTK isn't available
    [#383, !580, Olivier Tilloy]
  * Installed tests do not install the js/modules subdir [#384, !581, Olivier
    Tilloy]
  * Installed tests fail because expected path doesn't include project name
    [#385, !582, Olivier Tilloy]
  * 1.67.2: Regress test hangs / timeouts on i686 [#379, !583, Marco Trevisan]
  * object: Do not call any function on disposed GObject pointers [!585, Marco
    Trevisan]

Version 1.67.2
--------------

- New language features: Importing ES modules is now supported, both statically
  with import statements and dynamically with the import() function. For more
  information on how to use modules, see:
  https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import
  Four built-in modules exist: cairo, gettext, gi, and system. Except for gi,
  they work similarly to the old-style modules imports.cairo, imports.gettext,
  and imports.system. Consult the documentation in doc/Modules.md on how to use
  them.

- The debugger now has a "list" command which works very similarly to its GDB
  equivalent.

- New API: GObject.ParamSpec.jsobject() works like the other GObject.ParamSpec
  types, and allows you to have a GObject property whose value is a JavaScript
  object (plain object, Date, Array, etc.)

- New API: System.programPath is the name of the JS program that GJS is running,
  or null if there isn't one (for example, in the interactive interpreter.)

- New API: System.programArgs is an array of arguments given to the JS program.
  It is the same as ARGV but is consistently always present. (ARGV was not
  defined in the interactive interpreter or when embedding GJS in a C program.)

- Closed bugs and merge requests:

  * Support Native JSObject GType for Signals and Properties [!305, Marco
    Trevisan, Philip Chimento]
  * Add 'system.programPath' API. [!443, Evan Welsh]
  * ESM: Enable static imports. (Part 3) [!450, Evan Welsh, Philip Chimento]
  * Refactor ARGV handling and add `system.programArgs` [!455, Evan Welsh,
    Philip Chimento]
  * Function make the object more C++ friendly [!514, Marco Trevisan]
  * ESM: Enable dynamic imports. [!525, Evan Welsh, Philip Chimento]
  * Remove JSClass macros from Ns, GType, and Cairo types [!549, Philip
    Chimento]
  * various documentation improvements [!551, Sonny Piers]
  * Replace remaining mentions of window with globalThis [!552, Sonny Piers]
  * add .editorconfig file [!553, Sonny Piers]
  * Display current line of source code when displaying current frame in
    debugger [!554, Nasah Kuma]
  * doc: add Clapper and Flatseal to thirty party applications written in GJS
    [!555, Sonny Piers]
  * Multiline template literals are missing newlines when entered at interactive
    prompt [#371, !556, Ales Huzik]
  * function: Remove JSClass macros [!558, Philip Chimento, Marco Trevisan]
  * Missing classes on global. [#372, !559, Philip Chimento]
  * arg: fix build failure with glib main branch [!560, Michael Catanzaro]
  * Update to Jasmine 2.9.1 [!561, Evan Welsh]
  * Various maintenance [!562, Philip Chimento]
  * Add list command to debugger [!563, Nasah Kuma]
  * Upgrade to Jasmine 3.6.0 [!564, Evan Welsh]

- Various refactors in preparation for BigInt support in gobject-introspection
  [Marco Trevisan]

Version 1.67.1
--------------

- The debugger now has a "backtrace full" command which works very similarly to
  its GDB equivalent.

- The GObject.ParamFlags.CONSTRUCT_ONLY flag is now correctly enforced, when
  using it on GObject classes defined in JavaScript. This might break code that
  was incorrectly trying to set a property that it had previously defined as
  construct-only. The workaround is to remove the CONSTRUCT_ONLY flag.

- Fixed exception when calling GObject.Type().

- Several performance improvements.

- Progress on ES Modules.

- Closed bugs and merge requests:

  * gobject: Handle CONSTRUCT_ONLY flag [!377, Florian Müllner]
  * Add native module registry to global (Part 2) [!456, Evan Welsh]
  * testGIMarshalling: Expand test coverage for flags [!479, Simon McVittie]
  * Private Objects: Use native allocators and structs [!494, Marco Trevisan]
  * Pass-by-reference GValue arguments do not work right [#74, !496, !507, Marco
    Trevisan]
  * Templated-data-only GjsAutoPointer (and use it more around) [!504, Marco
    Trevisan]
  * Error in function "_init()" in module "modules/overrides/GObject.js" [#238,
    !508, Nina Pypchenko]
  * fails to build on 32-bit [#357, !511, Michael Catanzaro]
  * Revert "arg-cache: Save space by not caching GType" [!512, Jonas Dreßler]
  * gi/wrapperutils: Move gjs_get_string_id() into resolve() implementations
    [!513, Jonas Dreßler]
  * updates on eslint configuration [!517, Nasah Kuma]
  * Update CONTRIBUTING.md about the runner system failure [!518, Nasah Kuma]
  * Switch to eslint-plugin-jsdoc and remove lint-condo [!520, #359, Evan Welsh,
    Philip Chimento]
  * gi: Check property before access [!521, Florian Müllner]
  * testGIMarshalling: Actually run the GPtrArray utf8 tests [!522, Marco
    Trevisan]
  * Add more documents for "imports" and "imports.gi" [!526, wsgalaxy]
  * overrides/Gtk: Set BuilderScope in class init [!527, Florian Müllner]
  * gi/arg-cache: Only skip array length parameter once [!528, Florian Müllner]
  * Copyright conformance with Reuse Software spec [!529, Philip Chimento, Evan
    Welsh]
  * Remove JSClass macros [!530, !533, !537, Philip Chimento]
  * Avoid pulling from DockerHub in CI [!531, Philip Chimento, Marco Trevisan]
  * Use GNOME-specific rules with cppcheck [!532, Philip Chimento]
  * Fedora 33 CI images [!535, Philip Chimento]
  * Fix IWYU bugs [!536, Philip Chimento]
  * Reduce bandwidth usage in CI, and pick a more accurate base for diff checks
    [!538, Philip Chimento]
  * debugger: Make '$$' mean the last value [!539, Philip Chimento]
  * Add codespell CI job [#362, !540, !541, !547, Björn Daase]
  * Various maintenance [!542, !548, Philip Chimento]
  * fix readline build on certain systems [!543, Jakub Kulík]
  * build: Require gobject-introspection 1.66.0 [!546, Philip Chimento]
  * Add backtrace full command to debugger [#208, !550, Nasah Kuma]

- Various refactors for type safety [Marco Trevisan]

- Various maintenance [Philip Chimento]

Version 1.66.2
--------------

- Performance improvements and crash fixes backported from the development
  branch.

- Bug fixes enabling use of GTK 4.

- Closed bugs and merge requests:

  * Error in function "_init()" in module "modules/overrides/GObject.js" [#238,
    !508, Nina Pypchenko]
  * Revert "arg-cache: Save space by not caching GType" [!512, Jonas Dreßler]
  * gi/wrapperutils: Move gjs_get_string_id() into resolve() implementations
    [!513, Jonas Dreßler]
  * overrides/Gtk: Set BuilderScope in class init [!527, Florian Müllner]
  * fix readline build on certain systems [!543, Jakub Kulík]

(cirnatdan)

2021-04-20 08:25:51 UTC MAIN commitmail json YAML

Remove a patch which no longer applies.
This appears to no longer be needed.
I could swear I had done a successful re-build before the previous commit,
so not sure how that happened.
Build fix, so no revision bump.

(he)

2021-04-20 06:30:47 UTC MAIN commitmail json YAML

Updated databases/sqlite3, databases/sqlite3-docs, databases/sqlite3-tcl, devel/lemon

(adam)

2021-04-20 06:30:07 UTC MAIN commitmail json YAML

sqlite3: updated to 3.35.5

version 3.35.5:

Fix defects in the new ALTER TABLE DROP COLUMN feature that could corrupt the database file.
Fix an obscure query optimizer problem that might cause an incorrect query result.

(adam)

2021-04-20 00:48:02 UTC MAIN commitmail json YAML

hexchat: fix Python plugin-enabled builds

Whether Python is required strictly as a build tool or also at runtime
is determined in options.mk, and PYTHON_FOR_BUILD_ONLY is set there, if
needed. (And pyversion.mk is included via tool.mk now.)

(gutteridge)

2021-04-19 20:08:02 UTC MAIN commitmail json YAML

doc: Updated www/firefox78-l10n to 78.10.0

(nia)

2021-04-19 20:07:41 UTC MAIN commitmail json YAML

2021-04-19 20:06:59 UTC MAIN commitmail json YAML

doc: Updated www/firefox78 to 78.10.0

(nia)

2021-04-19 20:01:06 UTC MAIN commitmail json YAML

2021-04-19 19:33:09 UTC MAIN commitmail json YAML

doc: Updated sysutils/xplr to 0.5.2

(pin)