Highlights include:
* Travis continuous integration
* Better lua autodetection (thanks to Nikolay Orlyuk)
* Various code consistency changes
* Fixing p2 variable scopes in xkbevents handler (thanks to Jon Canning)
* Fixing resizing of dock windows managed by mod_statusbar (thanks
to Edward J. Schwartz)
This update is a by-product of working on new package, gcc5-aux, and
applying those concepts here. Several changes were made, including:
- Version date was not updated when version changed from 4.9.0 => 4.9.2
(revbump occurred instead). Remove revbump and fix date
- Remove DragonFly-i386 from permitted platforms. This platform will be
completely unsupported when DragonFly 4.2 is released (very soon)
- Remove references to OpenBSD and MirBSD. Support was never activated
due to technical issues and likely will not happen.
- Reindent (cosmetic)
- It is seemingly impossible to work around NetBSD's binary compatibility
scheme (e.g. __socket30, __nanosleep50). These weak symbols are simply
ignored by Ada's pragma Import and no c-tricks seem to avoid conflicts.
(Why can't NetBSD use symbol versioning???) Anyway, having NetBSD-
specific copies of source files to handle a couple of symbol differences
is simply not sustainable, so move to a new scheme where these are
replaced on the fly. By the way, this problem basically means that I
cannot fix GNAT upstream, even if I found somebody to sponsor getting
the NUMEROUS non-ada patches upstream. GCC devs would laugh at me if I
describe why I want to introduce so many new but similar files to
support NetBSD. So it's very likely never going to happen.
- Disable libitm and libcilkrts by default. They are out of scope and not
worth building / fixing.
- Apparently NLS support doesn't build on NetBSD 6.1? Nobody reported
this to me, but there are linking issues. I'm just removing the option
(which was on by default) until further notice. Having NLS support on
by default was questionable anyway.
- Remove exetim mods, this was wrong (for all BSD platforms)
- Android support leaked in, but it's not used here
- The diff-ada file dropped about 150k in size, and could have been more
had the android osinte file been masked too.
This module is used by Schmorp's modules during configuration stage
to test the installed perl for compatibility with his modules.
It's not, at this stage, meant as a tool for other module authors,
although in principle nothing prevents them from subscribing to
the same ideas.
libfreehand 0.1.1
- drastical improvement of all features
* fills
* strokes
* embedded images
* embedded text
- output of visible elements only in right place on the canvas
- coverage from Freehand 3.0 to Freehand 11
1.48 2015-06-12
- Switched to a production version. (ISHIGAKI)
1.47_05 2015-05-08
- Updated to SQLite 3.8.10
1.47_04 2015-05-02
- Used MY_CXT instead of a global variable
1.47_03 2015-04-16
- Added :all to EXPORT_TAGS in ::Constants
1.47_02 2015-04-16
- Updated to SQLite 3.8.9
- Added DBD::SQLite::Constants, from which you can import any
"useful" constants into your applications.
- Removed previous Cygwin hack as SQLite 3.8.9 compiles well again
- Now create_function/aggregate accepts an extra bit
(SQLITE_DETERMINISTIC) for better performance.
1.47_01 2015-02-17
*** (EXPERIMENTAL) CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS ***
- Commented OPTIMIZE out of WriteMakefile (RT #94207).
If your perl is not compiled with -O2, your DBD::SQLite may
possibly behave differently under some circumstances.
(This release is to find notable examples from CPAN Testers).
- Set THREADSAFE to 0 under Cygwin to cope with an upstream
regression since 3.8.7 (GH #7).
- Updated to SQLite 3.8.8.2
- Resolved#35449: Fast DBH->do (ptushnik, ISHIGAKI)
1.91 2015-06-13
- This release is based on version 2015e of the Olson database. This release
includes contemporary changes for Morocco and Cayman Islands.
Changes in version 0.2.6.9 - 2015-06-11
Tor 0.2.6.9 fixes a regression in the circuit isolation code, increases the
requirements for receiving an HSDir flag, and addresses some other small
bugs in the systemd and sandbox code. Clients using circuit isolation
should upgrade; all directory authorities should upgrade.
o Major bugfixes (client-side privacy):
- Properly separate out each SOCKSPort when applying stream
isolation. The error occurred because each port's session group was
being overwritten by a default value when the listener connection
was initialized. Fixes bug 16247; bugfix on 0.2.6.3-alpha. Patch
by "jojelino".
o Minor feature (directory authorities, security):
- The HSDir flag given by authorities now requires the Stable flag.
For the current network, this results in going from 2887 to 2806
HSDirs. Also, it makes it harder for an attacker to launch a sybil
attack by raising the effort for a relay to become Stable which
takes at the very least 7 days to do so and by keeping the 96
hours uptime requirement for HSDir. Implements ticket 8243.
o Minor bugfixes (compilation):
- Build with --enable-systemd correctly when libsystemd is
installed, but systemd is not. Fixes bug 16164; bugfix on
0.2.6.3-alpha. Patch from Peter Palfrader.
o Minor bugfixes (Linux seccomp2 sandbox):
- Fix sandboxing to work when running as a relaymby renaming of
secret_id_key, and allowing the eventfd2 and futex syscalls. Fixes
bug 16244; bugfix on 0.2.6.1-alpha. Patch by Peter Palfrader.
- Allow systemd connections to work with the Linux seccomp2 sandbox
code. Fixes bug 16212; bugfix on 0.2.6.2-alpha. Patch by
Peter Palfrader.
o Minor bugfixes (tests):
- Fix a crash in the unit tests when built with MSVC2013. Fixes bug
16030; bugfix on 0.2.6.2-alpha. Patch from "NewEraCracker".
------
17.1.1
------
* Backed out unintended changes to pkg_resources, restoring removal of
deprecated imp module (`ref
<f572ec9563 (comment-1881283)>`_).
----
17.1
----
* Issue #380: Add support for range operators on environment
marker evaluation.
+ Version 2.14 (09.06.2015)
- Added CParser parameter to specify output directory for generated parsing
tables (#84).
- Removed lcc's cpp and its license from the distribution. Using lcc's cpp
is no longer recommended, now that Clang has binary builds available for
Windows.
1.1.2
=====
* ``ffi.gc()``: fixed a race condition in multithreaded programs
introduced in 1.1.1
1.1.1
=====
* Out-of-line mode: ``ffi.string()``, ``ffi.buffer()`` and
``ffi.getwinerror()`` didn't accept their arguments as keyword
arguments, unlike their in-line mode equivalent. (It worked in PyPy.)
* Out-of-line ABI mode: documented a restriction__ of ``ffi.dlopen()``
when compared to the in-line mode.
* ``ffi.gc()``: when called several times with equal pointers, it was
accidentally registering only the last destructor, or even none at
all depending on details. (It was correctly registering all of them
only in PyPy, and only with the out-of-line FFIs.)
.. __: cdef.html#dlopen-note
util-linux 2.26.2: Apr 30 2015
* see Documentation/releases/v2.26.2-ReleaseNotes or the complete changelog at
ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.26/v2.26.2-ChangeLog
util-linux 2.26.1: Mar 13 2015
* see Documentation/releases/v2.26.1-ReleaseNotes or the complete changelog at
ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.26/v2.26.1-ChangeLog
util-linux 2.26: Feb 19 2015
* see Documentation/releases/v2.26-ReleaseNotes or the complete changelog at
ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.26/v2.26-ChangeLog
util-linux 2.26-rc2: Feb 4 2015
* see Documentation/releases/v2.26-ReleaseNotes or the complete changelog at
ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.26/v2.26-rc2-ChangeLog
util-linux 2.26-rc1: Jan 14 2015
* see Documentation/releases/v2.26-ReleaseNotes or the complete changelog at
ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.26/v2.26-rc1-ChangeLog
util-linux 2.25: Jul 22 2014
* see Documentation/releases/v2.25-ReleaseNotes or the complete changelog at
ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.25/v2.25-ChangeLog
util-linux 2.25-rc2: Jul 2 2014
* see Documentation/releases/v2.25-ReleaseNotes or the complete changelog at
ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.25/v2.25-rc2-ChangeLog
util-linux 2.25-rc1: Jun 18 2014
* see Documentation/releases/v2.25-ReleaseNotes or the complete changelog at
ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.25/v2.25-rc1-ChangeLog
iso-codes 3.58
--------------
Dr. Tobias Quathamer <toddy@debian.org>
Mon, 8 Jun 2015
[ General ]
* Update autotools files
[ ISO 3166 ]
* Add "Tanzania" as common name for the state. Thanks to
Jack Bates for the suggestion.
[ ISO 3166 translations ]
* Turkish by Mert Dirik and Atila KOÇ. Closes: #769312
* Slovak by Ivan Masár
* Kazakh by Baurzhan Muftakhidinov. Closes: #782649
[ ISO 3166-2 translations ]
* Slovak by Ivan Masár
* Danish by Joe Hansen (TP)
[ ISO 639 translations ]
* Slovak by Ivan Masár
[ ISO 639-3 translations ]
* Polish by Jakub Bogusz (TP)
[ ISO 639-5 translations ]
* Polish by Jakub Bogusz (TP)
[ ISO 4217 translations ]
* Greek by Vangelis Skarmoutsos (TP)
Version 6.5 - June 10 2015
[CHANGES]
New facilities:
o global: New -N (--nearness=[start]) option.
Nearness sort method is available for the output of tag search command.
The result of nearness sort is concatenation of the followings ([1]-[n])
in this order. The default of 'start' is the current directory.
[1] Output of local search in the 'start' directory.
[2] Output of local search in the parent directory except for [1].
[3] Output of local search in the grandparent directory except for [1]-[2].
(repeat until the project root directory)
[n] Output of local search in the project root directory except for [1]-[n-1].
In each directory, they are sorted by alphabetical order.
o global: Now the --literal option also works with the tag search command,
-P command and -I command as well as the -g command.
[FIXED BUGS]
o htags: The -c and -x option of htags(1) were still available in the help
message, even though they had actually been removed. Now, these options
are removed completely.
o gtags (PHP): Against the following source code, gtags(1) aborted with a message
'short of memory'. Now it works.
[nullstring.php]
+----------------
|<?php
|define('');
|?>
+----------------
o gtags (C++): Gtags(1) didn't recognize the shift operator. Now it works.
[a.hh]
+----------------
|class const_mod<uint64_t(1) << 48>
|{
|};
+----------------
$ gtags
gtags: failed to parse template [+1 ./a.hh].
o gtags (C, C++): Gtags(1) couldn't pick up 'E2' as a definition. Now it works.
[test.c]
+----------------
|enum my_enum2
|{
| E2
|};
+----------------
Version 1.82b:
--------------
- Fixed a harmless but annoying race condition in persistent mode - signal
delivery is a bit more finicky than I thought.
- Updated the documentation to explain persistent mode a bit better.
- Tweaked AFL_PERSISTENT to force AFL_NO_VAR_CHECK.
--------------
Version 1.81b:
--------------
- Added persistent mode for in-process fuzzing. See llvm_mode/README.llvm.
Inspired by Kostya Serebryany and Christian Holler.
- Changed the in-place resume code to preserve crashes/README.txt. Suggested
by Ben Nagy.
- Included a potential fix for LLVM mode issues on MacOS X, based on the
investigation done by teor2345.
Changes:
- cups-browsed: When generating a PPD for an auto-discovered IPP
network printer, create a "ColorModel" option only if valid
choices are reported for it by the IPP printer.
- cups-browsed: Updated PPD file generator for auto-generated queues
for IPP network printers from the CUPS 2.1.x upstream code, so that
floating-point numbers are written in a locale-neutral way
(CUPS STR #4579).
- cups-browsed: When checking whether a queue name already exists
as a locally defined queue, do case-insensitive comparing as for
CUPS printer names are case-insensitive. This assures that
already existing queues do never get overwritten.
- cups-browsed: Added "IPPPrinterQueueType Auto/PPD/NoPPD" directive
to cups-browsed.conf to allow controlling how cups-browsed
creates queues fr native IPP network printers: with PPD, with
System V interface script, or selecting automatically.
- pdftopdf: Center Landscape-oriented jobs correctly on the page
if the "fitplot" or "number-up" options are used (Bug #1284).
- pstopdf: Removed "-dUseCIEColor" from the Ghostscript command line.
In modern Ghostscript versions (9.11 and newer) it is recommended to
not use it with the pdfwrite and ps2write output devices any more.
- imagetopdf: Corrections in PDF output: Let evince display the PDF
with the correct size including margins and let ghostscript not
complain about an invalid xref entry.
- cups-browsed: Do not add options to the System V interface script
which calls sys5ippprinter but set the options as defaults for the
CUPS queue in printers.conf.
- cups-browsed: When auto-generating a PPD-less print queue for an
IPP network printer, determine default page size, unprintable margins,
and color space from the printer via an IPP request.
- imagetopdf: Debug logging should be only controlled by the LogLevel
of CUPS, not by an awkward build time switch.
- cups-browsed: Determine from the TXT records of the Bonjour broadcast
of an IPP network printer whether it has color and duplex
capabilities and if yes, let auto-generated PPD-less print queues
use appropriate command line options to make use of these
capabilities.
- imagetopdf: Make this filter also work with auto-generated PPD-less
print queues for IPP network printers.
- sys5ippprinter: Renamed pdftoippprinter to reflect that it is
once a System 5 interface script and second does not accept only
PDF as input.
- pdftoippprinter: Support also PWG Raster and JPEG as input formats
so that an auto-generated, PPD-less queue for an IPP printer emulates
an IPP Everywhere printer.
prev version: emacs24-24.3.50.20140101nb10
current version: emacs25-25.0.50.2015041522
(upstream)
Upstream changes are too many to list here. Year and
3 month between them. But it includes (at least)
- the changes from emacs24 to emacs25
(This may require adding emacs25 on
EMACS_VERSIONS_ACCEPTED in some packages)
(pkgsrc)
- (Makefile.common) sequence now resembles (wip)/emacs-current/Makefile
- (Makefile)
Add missing send-pr.el setup (at /usr/share/gnats) in site-init.el
- (files/site-init.el)
Copied from editors/emacs24
- Drop patch-ae: "if [ $# == 0 ]; then" ( == -> =)
patch-configure.ac: ksh bad substitution problem
patch-src_image.c: Fix build with giflib 5.1.
- (options.mk)
* configuration now resembles (wip)/emacs-current/options.mk
* Add options xaw3d and xml (also in PKG_SUGGESTED_OPTIONS)
* Correction typo on CONFIGURE_ARGS on --without-imagemagic(k)