June 06, 2020. KDE today announces the release of KDE Frameworks 5.71.0.
KDE Frameworks are over 70 addon libraries to Qt which provide a wide variety
of commonly needed functionality in mature, peer reviewed and well tested
libraries with friendly licensing terms. For an introduction see the KDE
Frameworks web page.
This release is part of a series of planned monthly releases making
improvements available to developers in a quick and predictable manner.
Announcement:
https://kde.org/announcements/kde-frameworks-5.71.0
Exp-run by: antoine
PR: 247240
Build now explicitly requires gmake
per https://github.com/yaml/libyaml/releases/tag/0.2.5
the following changes have been made
- #105
Allow question marks in plain scalars in flow collections
- #186
Emitter: Don't output trailing space for empty scalar nodes
- #185
Emitter: Output space after an alias mapping key
- #187
Add -h and --flow (on|off|keep) to run-*-test-suite
- #182
Remove unnecessary include and malloc
- #177
Add specific files back to .gitignore
- #181
Output error position in run-parser-test-suite.c
- #191
A couple patches to improve test suite support
- #179
Flow indicators can not be part of local or shorthand tags
PR: 247043
Submitted by: daniel.engberg.lists@pyret.net
qr is a console application that prints Unicode-friendly QR codes straight in your
terminal. Very convenient to use in scripts.
PR: 247262
Submitted by: vulcan@wired.sh
Cucumber HTML Formatter is a cross-platform formatter that produces a HTML
report for Cucumber runs. It is built on top of cucumber-react and works with
any Cucumber implementation with a protobuf formatter that outputs cucumber
messages.
WWW: https://github.com/cucumber/cucumber/tree/master/html-formatter/ruby
* Use this release for a while as it's the last one that supports Python 2.7
which is still needed by textproc/scancode-toolkit.
* Backport two patches to fix the runtime of CLI scripts.
* Remove "dos2unix" and "shebangfix" macros as they're no longer required.
Changelog since 20181108:
https://github.com/pdfminer/pdfminer.six/blob/20191110/CHANGELOG.md
MFH: 2020Q2 (blanket: bugfix release)
From ChangeLog: textproc/csvq: Update to 1.13.3
* Update docs to release v1.13.3 for support Ubuntu PPA.
PR: 247158
Submitted by: vulcan@wired.sh (maintainer)
Add -Wno-error:
:/wrkdirs/usr/ports/textproc/libcss/work/libcss-0.9.0/include/libcss/fpmath.h8:: 105error:: 8implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Werror,-Wimplicit-int-float-conversion]:
xx = INT_MAX;
These changes largely fall into just two categories:
1. Need textproc/gsed for GNU extensions
2. Extraneous escapes that can go away
For #1, there's a further subdivision into those that require autoconf magic
and those that can get away with BINARY_ALIAS=sed=${LOCALBASE}/bin/gsed.
-CURRENT will soon gain GNU extensions, but these will take longer to get to
all supported releases; we must switch them to gsed to ensure we're actually
properly building them as intended.
For #2, I've fixed these as I can and we should upstream these fixes.
PORTREVISION is bumped for all of the above, because we will almost
certainly build these differently when the replacements actually start
working.
These were all detected by the below-referenced exp-run [1]. The patch
included forbids many ordinary characters from being escaped, since we'll
later imbue those with special meanings. This has had the nice side effect
of picking up various things that we didn't handle properly, e.g. \t and \r
for tab and carriage return.
PR: 229925 [1]
Approved by: koobs (mentor)
Approved by: portmgr (blanket: trivial build fixes)
MFH: no (invasive risk)
Differential Revision: https://reviews.freebsd.org/D25185
docrepr renders Python docstrings in HTML. It is based on the sphinxify module
developed by Tim Dumol for the Sage Notebook and the utils.help module
developed for the Spyder IDE.
WWW: https://github.com/spyder-ide/docrepr/