Separate python2 and python3 bindings[1], to allow each to be enabled
independently or concurrently. py27 is still the default.
As long as I'm messing with language bindings, turn the Tcl and Lua
options off by default. This does NOT in any way affect support for
editing those types of files (including indenting, completion,
highlighting, linting, etc.)---it only affects plugins written in
Tcl or Lua or interactive debugging.
Suggested by: mat [1]
This older version of perl module WebService::MusicBrainz is the last
version which is supported by audio/abcde.
Newer versions of www/p5-WebService-MusicBrainz have a new API, which
audio/abcde has not yet been updated to utilise.
- Utilize PLIST_FILES instead of pkg-plist to avoid passing ${PORTVERSION}
and ${PORTVERSION:R} via PLIST_SUB (not very elegant, but quite clear)
Found out via: repology.org [*]
Because GitHub releases (tarballs) are not fetched with correct modification
time, set TIMESTAMP to 1507854327 which corresponds to commit aefa609 tagged
as this release.
support for Ubuntu 17.10 (Artful Aardvark) [*]
- Once again, reword the comment about using getvfsbyname(3)
- TIMESTAMP (unetbootin-source-657.tar.gz) = 1508836950
Found out via: repology.org [*]
- Change default device to /dev/cd0 to match FreeBSD default from 10.0
- Fix master sites as the distfile fetch was failing
- Correct depends and USE_ flags (pet stage QA)
- Bypass build warnings which were previously present but were being
promoted to errors with this update
7.50 2017-10-30
- Deprecated error and finish events in Mojo::IOLoop::Delay. Since there is no
good way to warn our users about this deprecation, it will be in effect
until the next major release. Where we will also change the base class from
Mojo::EventEmitter to Mojo::Base.
- Improved documentation browser with links to MetaCPAN.
7.49 2017-10-28
- Deprecated Mojo::IOLoop::Delay::data and Mojo::IOLoop::Delay::remaining.
- Added Promises/A+ support. Note that Mojo::IOLoop::Delay previously
inherited a catch method from Mojo::EventEmitter that was passed the error
message as second argument instead of the first, so you might have to change
$delay->catch(sub { my ($delay, $error) = @_; ... });
to
$delay->catch(sub { my ($error) = @_; ... });
- Added all, catch, finally, race and then methods to Mojo::IOLoop::Delay.
- Updated jQuery to version 3.2.1.
Also, create PREFIX/share/GeoIP, as it's needed with the default
configuration.
Note that conf option names have changed with this release, but the
old names will continue to work.
* Replace use of strnlen() due to lack of universal availability. First
reported by Bill Cole. GitHub issue #71.
* Document the LockFile option in the GeoIP.conf man page. GitHub
issue #64.
* Remove unused base64 library. PR by Mikhail Teterin. GitHub PR #68.
* Add the new configuration option PreserveFileTimes. If set,
the downloaded files will get the same modification times as
their original on the server. Default is 0 (unset).
PR by Rainer Jung. GitHub PR #63.
* Use the correct types when calling curl_easy_setopt(). This fixes
warnings generated by libcurl's typecheck-gcc.h. PR by Michael
Kaufmann. GitHub PR #61.
* In GeoIP.conf, the UserId option was renamed to AccountID and the
ProductIds option was renamed to EditionIDs. The old options will
continue to work, but upgrading to the new names is recommended for
forward compatibility.
- Fix in CegoFactor::setFieldListArray, the _flaCached variable has
to be set to false, if _pFLA is set to a different value. Otherwise,
we might refer to invalid memory, which results in core dump
Submitted by: Bjoern Lemke <lemke@lemke-it.com>