ok during freeze jperkin@
Alongside the Tcl/Tk 8.6.9 releases just announced, you will find one
additional file, tk8.6.9.1-src.tar.gz . This is an errata release
fixing a critical error on the Mac OSX 10.14 Mojave platform only.
If you are building Tk for any other platform, there is no need to
upgrade to the errata release. If you do upgrade to it anyway, you will
see no difference, so it will be harmless through wasted effort, as the
details below will explain.
When unpacked, the errata archive differs from the tk8.6.9-src.tar.gz
contents in only three lines of the file
tk8.6.9/macosx/tkMacOSXWindowEvent.c
which is a file compiled only for Mac OSX builds of Tk. The lines are
written to have effect only on Mojave. Every other byte of the source
code distribution is unchanged.
Previously, an IPv6 split tunnel with a /128 request would result in a
default tunnel, rather than a specific route. Correctly set the default
route if we request a /0.
If `which ip` returns something on a non-Linux OS, it's an unrelated
tool that won't work for routing configuration; don't try to set IPROUTE
on another OS. This should fix the macOS issue discovered at:
<https://github.com/dlenski/openconnect/issues/132#issuecomment-470475009>
Changes since 0.3:
* Fix recursion.
* Add both c and c++ to USE_LANGUAGES.
* Add maintainer email handling (-M).
* Use buildlink3.mk files for dependencies when available.
It’s time for the delayed release of MAME 0.210, marking the end
of May. This month, we’ve got lots of fixes for issues with supported
systems, as well as some interesting additions. Newly added hand-held
and tabletop games include Tronica’s Shuttle Voyage and Space
Rescue, Mattel’s Computer Chess, and Parker Brothers’ Talking
Baseball and Talking Football. On the arcade side, we’ve added
high-level emulation of Gradius on Bubble System hardware and a
prototype of the Neo Geo game Viewpoint. For this release, Jack Li
has contributed an auto-fire plugin, providing additional functionality
over the built-in auto-fire feature.
A number of systems have had been promoted to working, or had
critical issues fixed, including the Heathkit H8, Lola 8A, COSMAC
Microkit, the Soviet PC clone EC-1840, Zorba, and COMX 35. MMU
issues affecting Apollo and Mac operating systems have been addressed.
Other notable improvements include star field emulation in Tutankham,
further progress on SGI emulation, Sega Saturn video improvements,
write support for the CoCo OS-9 disk image format, and preliminary
emulation for MP3 audio on Konami System 573 games.
There are lots of software list additions this month. Possibly most
notable is the first dump of a Hanimex Pencil II cartridge, thanks
to the silicium.org team. Another batch of cleanly cracked and
original Apple II software has been added, along with more ZX
Spectrum +3 software, and a number of Colour Genie cassette titles.
oshu! is a clone of osu!
osu! is that PC clone of the osu! Tatakae! Ouendan DS rhythm game,
occidentalized as Elite Beat Agents.
This project was born out of frustration from not being able to
play osu! on a little Linux box with no graphics card whatsoever.
It's aimed at minimalistic people and probably will never contain
a hundredth of the official client's features.
Make per-OS PLISTs because for some reason it makes one file include
per-OS names. It would be easier to just not do that... but that's what
it already does.
the linux case is actually "else". I think the linux logic can be used
for all OSes after this.
Similar motivation to removing it as faad2. To quote FreeBSD's commit:
"There is no evidence that faac may not be redistributed on sold media like
CDs/DVDs. Other well-established open source organisations arrive at the
same conclusion, e.g. [Debian, Ubuntu, and Arch Linux]"
Sigil-0.9.14
Bug Fixes
- flush all changes to disk before creating a Report so that files sizes are correct
- stop writing python bytecode to Program Files on Windows
- remember cover semantics if cover image replaced by Add Existing...
- fix issues with the Plugin Framework documentation epub
- more memory leaks plugged
- minor code cleanups
New Features
- updated to Qt 5.12.3 with Annulen Webkit 5.212 with extra QtCursor memory leak fixes
- updated to Python 3.7.2
- updated build docs for macOS, Linux and Windows
- build system now uses GNUInstallDirs to determine the best installation libdir on Linux
- updated desktop integration for Linux
- reduce PCRE cache size to help lower memory footprint
- improve mapping of hunspell dictionary names to actual language names (thanks BeckyDTP)
- add warning during import if unmanifested files exist in the epub zip archive
- no longer requires use of non-breaking space entities (or any entities at all!)
- special spaces are now visisble via syntax highlighting in CodeView
- dropping epubs on Sigil.app no longer opens an extra empty epub on macOS
- reload Preview only when needed to help prevent screen flicker and lower memory use
- enabled Windows automated builds using Apppveyor
- Windows releases now compiled with Visual Studio 2017
- characters in HTML files report now uses gumbo for speed
- allow user's custom plugin icons to survive a plugin update
Packaged for wip by leo@
UnitTest++ is a lightweight unit testing framework for C++. It was
designed to do test-driven development on a wide variety of platforms.
Simplicity, portability, speed, and small footprint are all very
important aspects of UnitTest++. UnitTest++ is mostly standard C++
and makes minimal use of advanced library and language features,
which means it should be easily portable to just about any platform.
It's unmaintained by upstream for most of this decade (even then, this
is an old version), and broken in bulk builds since at least last year.
Discussed on pkgsrc-users@.
Add comment to patch.
Changes in 2.2.5 (since 2.2.4):
* Notable improvements
** Greatly improved performance of bidirectional pipes.
The performance of bidirectional pipes, as created using 'open-pipe' or
'open-pipe*' in OPEN_BOTH mode, has been greatly improved. When reading
large blocks of binary data from a bidirectional pipe, the maximum
bandwidth has been increased by a factor of ~10^3 in some cases.
** New 'get-bytevector-some!' I/O primitive.
This new I/O primitive is similar to 'get-bytevector-some' from the
R6RS, except that it writes its data to a user-specified range of
indices in an existing bytevector. As a corollary, it is also now
possible to specify a maximum number of bytes to read. Note that
'get-bytevector-some', and now 'get-bytevector-some!', are unique among
Guile's I/O primitives in their support of efficient binary reads of
potentially large blocks while also allowing for short reads, to avoid
undesired blocking. Now these operations can be performed while also
avoiding heap-allocation.
'get-bytevector-some!' is needed to efficiently implement the new
bidirectional pipes, which are built upon R6RS custom binary
input/output ports.
** get-bytevector-{n!,some,some!} now support suspendable I/O.
Scheme implementations of 'get-bytevector-n!', 'get-bytevector-some',
and 'get-bytevector-some!' have been added to (ice-9 suspendable-ports).
As a result, these I/O operations now support suspendable I/O.
* Compiler improvements
** guild compile: Add -Wshadowed-toplevel.
Top-level definitions that shadow previous top-level definitions from
the same compilation unit will now trigger a compile-time warning, if
-Wshadowed-toplevel is enabled. It is enabled by default.
** guild compile: Add '-x' flag.
Passing "-x EXT" to 'guild compile' will now cause EXT to be recognized
as a valid source file name extension. For example, to compile R6RS
code, you might want to pass "-x .sls" so that files ending in ".sls"
can be found.
* Miscellaneous improvements
** Bootstrap optimization
eval.go and psyntax-pp.go are now built before the rest of the .go files
so that they are processed by a fast macro expander. This saves time
when using parallel builds.
** put-u8 now always writes a single byte, regardless of the port encoding.
Previously, (put-u8 PORT OCTET) worked as expected only when writing to
binary ports, i.e. those with port encoding "ISO-8859-1" a.k.a. Latin-1.
Strictly speaking, this meets the requirements of the R6RS 'put-u8',
which need only support binary ports. However, Guile in fact allows
binary I/O to be performed on any port, and yet 'put-u8' behaved in a
surprising way with other port encodings: it would perform a _textual_
I/O operation, writing the character with Unicode scalar value OCTET.
Now, 'put-u8' always writes a single byte with value OCTET, regardless
of the port encoding.
** Optimize fixnum exact integer square roots.
'exact-integer-sqrt' now avoids heap allocation when applied to a
fixnum. 'sqrt' now avoids heap allocation when applied to a fixnum
that's a perfect square. Fewer heap allocations are now required when
applying 'sqrt' to a square of an exact rational whose numerator or
denominator are fixnums.
** scm_mkstrport: Optimize the POS -> BYTE_POS conversion.
scm_mkstrport now avoids an unnecessary heap allocation and conversion
to UTF-8, when STR is provided and POS is non-zero.
** SRFI-19: Support ~N in string->date.
Support for the ~N escape, which allows fractions of a second to be
parsed, is now supported in SRFI-19 'string->date'.
** SRFI-19: Update the leap second table.
The leap on 1 January 2017 was added to SRFI-19's leap second table.
** stexi->shtml: Add support for @i, @math, @tie and @dots.
stexi->shtml is now able to convert @i, @math, @tie and @dots to HTML.
** Define AT_SYMLINK_NOFOLLOW, AT_NO_AUTOMOUNT, and AT_EMPTY_PATH.
AT_SYMLINK_FOLLOW, AT_NO_AUTOMOUNT, and AT_EMPTY_PATH are now available
from Scheme, if supported on the platform.
** Improvements to the 'time' macro from (ice-9 time).
The 'time' macro now supports expressions that return multiple values.
It has also been rewritten as a hygienic 'syntax-rules' macro.
Previously, it was built using 'define-macro', and was therefore
unhygienic. This is not merely an internal implementation detail, but
is potentially relevant to any user of the 'time' macro, since it could
lead to unintended variable capture and other problems.
** Clarify the documentation for 'nil?'.
See commit b44f505f1571fc9c42e58982f161a9cfc81fb7f4.
** Clarify the manual's "Processes" section.
See commit 8cdd3a0773930ca872a13aada7a1344f03bb382b.
** Avoid 'with-latin1-locale' in binary I/O tests.
See commit 162a031e5f2c64cd23fcf069fb7b5071196f9527.
** Update user-visible copyright years.
* Bug fixes
** Avoid regexp ranges in HTTP inter-protocol exploitation check.
The regular expression used to check for HTTP inter-protocol
exploitation attacks previously used a character range '0-9', whose
meaning depends on the current locale. This has now been fixed.
** Fixes to the SRFI-19 time/date library.
*** TAI-to-UTC conversion leaps at the wrong time.
<https://bugs.gnu.org/21911>
*** time-utc->date shows bogus zone-dependent leap second.
<https://bugs.gnu.org/22034>
*** Manual incorrectly describes Julian Date.
<https://bugs.gnu.org/21902>
*** date->string duff ISO 8601 negative years.
<https://bugs.gnu.org/21903>
*** date->string duff ISO 8601 format for non-4-digit years.
<https://bugs.gnu.org/21904>
*** julian-day->date negative input breakage.
<https://bugs.gnu.org/21906>
*** time-duration screws up negative durations.
<https://bugs.gnu.org/26162>
*** time-difference doesn't detect error of differing time types.
<https://bugs.gnu.org/26163>
** Improve overflow checks in bytevector, string, and I/O operations.
Several numerical computations, performed using primitive C arithmetic
in Guile's core bytevector, string, and I/O operations, have been
rewritten to avoid overflows.
** Fix type inferencing for 'nil?' and 'null?' predicates.
Previously, the compiler would sometimes miscompile certain combinations
of 'nil?' and 'null?' predicates present within the same top-level form.
See <https://bugs.gnu.org/33036>.
** Fix 'atomic-box-compare-and-swap!'.
Previously, 'atomic-box-compare-and-swap!' would sometimes spuriously
fail on architectures based on Load-Linked/Store-Conditional (LL/SC)
synchronication primitives (e.g. ARM, PowerPC, and MIPS) in a way that
was undetectable by the caller. See <https://bugs.gnu.org/32786>.
** Make URI handling locale independent.
Previously, procedures in (web uri) would misbehave in some locales
including sv_SE. See <https://bugs.gnu.org/35785>.
** Strings, i18n: Limit the use of alloca to approximately 8 kilobytes.
Previously, 'string-locale-ci=?', 'string-locale-ci<?',
'string-locale<?', 'string-locale-{downcase,upcase,titlecase}' and
'string-normalize-{nfd,nfc,nfkd,nfkc}' would overflow the C stack when
applied to very large strings.
** Fix documentation of R6RS 'binary-port?' to reflect reality.
Previously, the documentation incorrectly stated that 'binary-port?'
always returns #t. In fact, it returns #t if and only if the port
encoding is "ISO-8859-1". The documentation for 'binary-port?' and
'textual-port?' has been rewritten to reflect the current reality, and
also to leave open the possibility of changing the behavior of these
predicates in a future version of Guile.
** Avoid passing NULL to 'memcpy' and 'memcmp'.
Previously, NULL was sometimes passed to 'memcpy' or 'memcmp' when the
size argument was 0.
** Save and restore errno in the signal handler.
Previously, Guile's synchronous C signal handler failed to save and
restore 'errno', although it might change its value. This could
potentially lead to spurious corruptions of 'errno' within threads
interrupted by signals.
** scm_to_stringn: Avoid passing NULL to c_strcasecmp.
<https://lists.gnu.org/archive/html/guile-user/2019-05/msg00070.html>
** r6rs-ports: Accept 'port-position' values greater than 2^32.
<https://bugs.gnu.org/32161>
** r6rs-ports: 'put-bytevector' accepts 64-bit integers.
Fixed in commit 741c45458da0831a12a4f8d729814bf9f2cb6571.
** Fix R6RS call-with-{input,output}-file to open textual ports.
<https://bugs.gnu.org/32329>
** Update (ice-9 match) to include selected bug fixes from upstream.
*** ice-9/match named match-let is not working
<https://bugs.gnu.org/22925>
** open-process: Fix dup(2) and execvp(2) error handling.
Fixed in commit 521f1ab4709217407496004019c00005d2a82f78.
** bytevectors: Support large indices in integer accessors.
Fixed in commit b9cf3517efd4643670d970d2692bc7bede9a85e8.
** bytevectors: Fix list validation of *list->bytevector procedures.
<https://bugs.gnu.org/32938>
** Gracefully handle huge shift counts in 'ash' and 'round-ash'.
<https://bugs.gnu.org/32644>
** In 'ash' and 'round-ash', handle right shift count of LONG_MIN.
<https://bugs.gnu.org/21901>
** Use 'scm_from_utf8_{string,symbol,keyword}' for C string literals.
<https://bugs.gnu.org/33044>
** web: Add support for HTTP header continuation lines.
Fixed in commit 73cde5ed7218a090ecee888870908af5445796f0.
** scm_seed_to_random_state: Support wide string arguments.
<https://bugs.gnu.org/33044>
** Do not warn the user when 'madvise' returns ENOSYS.
Fixed in commit 45e4ace6603e00b297e6542362273041aebe7305.
** Add 'texinfo' as a dependency in the README.
Fixed in commit 1bbce71501198c3c7abdf07941f5cdc1434858c2.
** Don't mutate read-only string in ports test.
Fixed in commit 552f007e91a97f136aad1b22918688b61d03a4a3.
** Remove redefinition of when & unless in snarf-check-and-output-texi.
Fixed in commit 1ba5d6f47a54dceee4452a1e7726d2635e5b3449.
** Fix strftime when Guile is built without threading support.
Fixed in commit 139c702fc8b61fdeb813c3428fef3701ea8677f9.
** Avoid leaking a file descriptor in test-unwind.
Fixed in commit 1437b76777e576b3d000e2f80c5ecdb33a74ac33.
** Fix binary output on files created by mkstemp!.
Fixed in commit 78468baa118d316050a27e43250966e52ffd3d54.
** Fix crypt-on-glibc test error.
Fixed in commit 27ffbfb0235de466016ea5a6421508f6548971b6.
** Fix race when expanding syntax-parameterize and define-syntax-parameter.
<https://bugs.gnu.org/27476#102>
** Add a fallback value for the locale-monetary-decimal-point.
Fixed in commit 9ba449643d4c2ac1d2174befca7d765af222bcc0.
** Handle newlib C library's langinfo constant names.
Fixed in commit 92105d13ad1363b511214589b7d62d95304beb17.
** Make locale monetary conversion tests be less strict on terminal whitespace.
Fixed in commit 2a3ccfb66714efc1c081ea6e921336f80b756d3c.
** Disable test for current value of setitimer on Cygwin.
Fixed in commit 3a64c504caaf83e9faf2ec9b7d0e031e1a6a09b9.
** Fix gc.test "after-gc-hook gets called" failures.
<https://bugs.gnu.org/31776#17>
** Update iconv.m4 from gnulib, to fix an iconv leak during configure.
<https://lists.gnu.org/archive/html/guile-devel/2019-05/msg00011.html>
** guild compile: Add missing newline in "unrecognized option" error message.
Fixed in commit 85c5bae4fd94f8686d26fd792b7c0f588c23bd94.
** 'basename' now correctly handles "/" and "//".
Fixed in commit 36ad1d24b3d2c174a64c445502a36f19605dbd65.
** Make srfi-71 visible through 'cond-expand'.
Fixed in commit 59a06d8392234fbec8b3605cec266a7a0a7b7a56.
0.32 (2019/06/11)
* add command "listneighbors"
* reduce network transfer for "search"
* fall back to "Composer" or "AlbumArtist" tag in the default format
* support abstract socket in --host option
PostgreSQL 11.4, 10.9, 9.6.14, 9.5.18, 9.4.23, and 12 Beta 2 Released!
The PostgreSQL Global Development Group has released an update to all supported versions of our database system, including 11.4, 10.9, 9.6.14, 9.5.18, and 9.4.23, as well as the second beta of PostgreSQL 12. This release fixes one security issue and over 25 bugs since the previous cumulative update in May.
Security Issues
This release closes one security vulnerability:
CVE-2019-10164: Stack-based buffer overflow via setting a password
Versions affected: 10, 11, 12 beta.
Bug Fixes and Improvements
Fix assorted errors in run-time partition pruning that could lead to wrong answers in queries on partitioned tables
pg_dump now recreates table partitions using CREATE TABLE and ALTER TABLE .. ATTACH PARTITION rather than including PARTITION OF in the creation command
Improve how initdb determines which system time zone to select if there are equivalent names for the time zone. Also explicitly prefer UTC over UCT
Fix possible crash while trying to copy trigger definitions to a new partition
Fix failure of ALTER TABLE .. ALTER COLUMN TYPE when the table has a partial exclusion constraint
Fix failure of COMMENT command for comments on domains
Several fixes related to aggregation
Fix faulty generation of merge-append plans that could lead to "could not find pathkey item to sort" errors
Fix failures on dump/restore where views contained queries with duplicate join names
Fix conversion of JSON string literals to JSON-type output columns in json_to_record() and json_populate_record()
Fix incorrect optimization of {1,1} quantifiers in regular expressions
Fix issue for B-tree indexes during edge case failure involving columns covered with the INCLUDE clause, which manifests itself with errors during VACUUM. If you are affected by this issue, you will need to reindex the specific index
Fix race condition in check to see whether a pre-existing shared memory segment is still in use by a conflicting postmaster
Fix for the walreceiver process that avoids a crash or deadlock on shutdown
Avoid possible hang in libpq if using SSL and OpenSSL's pending-data buffer contains an exact multiple of 256 bytes
Fix ordering of GRANT commands emitted by pg_dump and pg_dumpall for databases and tablespaces
Fix misleading error reports from reindexdb
Ensure that vacuumdb returns correct status if an error occurs while using parallel jobs
Fix contrib/auto_explain to not cause problems in parallel queries, which resulted in failures like "could not find key N in shm TOC"
Account for possible data modifications by local BEFORE ROW UPDATE triggers in contrib/postgres_fdw
On Windows, avoid failure when the database encoding is set to SQL_ASCII and we attempt to log a non-ASCII string