(The python world seems to think that xml parsing functions are part
of core Python and need not be mentioned. Perhaps pkgsrc's way of
having py-expat is unusual and a bit of DESCR spiffage is in order,
but I'm not sure what's right.)
Ruby 1.8's gem (misc/rubygems) contains a patch to allow such a wrong
syntax of gemspec. (I don't think this patch is a good idea now.)
Noted by joerg@ via private mail.
Unfortunately, with recent gcc, the x86 version of mpn fails to build on
Solaris. Add it to Darwin on the list of platforms for which we build a
generic mpn instead.
* Noteworthy changes in release 2.68 (2010-09-22) [stable]
Released by Eric Blake, based on git versions 2.67.*.
** AC_MSG_ERROR (and AS_ERROR) can once again be followed immediately by
`dnl'. Regression introduced in 2.66.
** AC_INIT again allows URLs with '?' for its BUG-REPORT argument.
Regression introduced in 2.66.
** AC_REPLACE_FUNCS again allows a non-literal argument, such as a shell
variable that expands to a list of functions to check. Regression
introduced in 2.66.
** AT_BANNER() with empty argument will cause visual separation from previous
test category.
** The macros AC_PREPROC_IFELSE, AC_COMPILE_IFELSE, AC_LINK_IFELSE, and
AC_RUN_IFELSE now warn if the first argument failed to use
AC_LANG_SOURCE or AC_LANG_PROGRAM to generate the conftest file
contents. A new macro AC_LANG_DEFINES_PROVIDED exists if you have
a compelling reason why you cannot use AC_LANG_SOURCE but must
avoid the warning.
** The macro m4_define_default is now documented.
** Symlinked config.cache files are supported; configure now tries to
update non-symlinked cache files atomically, so that concurrent configure
runs do not leave behind broken cache files. It is still unspecified
which subset or union of results is cached though.
** Autotest testsuites should not contain long text lines any more, and be
portable even when very many test groups are used.
** AT_CHECK semantics with respect to the Autotest variable $at_status and
shell execution environment of the arguments are documented now.
** AC_FC_LIBRARY_LDFLAGS now tolerates output from newer gfortran.
** Newly obsolete macros
The following macros have been marked obsolete. New programs
should use the corresponding Gnulib modules. Gnulib not only
detects a larger set of portability problems with these functions,
but also provides complete workarounds.
AC_FUNC_ERROR_AT_LINE AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK
AC_FUNC_MKTIME AC_FUNC_STRTOD
Upstream changes:
1.14 Tue, Sep 21, 2010
[BUG FIXES]
* Work around what looks like a bug in List::MoreUtils::any. This bug caused
a weird error when defining the same union type twice, but only when using
MooseX::Types. Reported by Curtis Jewell. RT #61001. (Dave Rolsky)
1.13 Mon, Sep 13, 2010
[API CHANGES]
* The deprecation warnings for alias and excludes are back, use -alias and
-excludes instead. (Dave Rolsky)
[ENHANCEMENTS]
* When composing one role into another and there is an attribute conflict,
the error message now includes the attribute name. Reported by Sam
Graham. RT #59985. (Dave Rolsky)
* When a class is made immutable, the does_role method is overridden with a
much faster version that simply looks role names up in a hash. Code which
uses lots of role-based type constraints should be faster. (Dave Rolsky)
Upstream changes:
2.03 Wed Sep 22 01:15:40 CEST 2010
- The 'hidecore' option will hide core modules in the output
(initial patch by David Leadbeater)
- moved author tests to xt/
pkgsrc changes:
* set LICENSE=gnu-lgpl-v2.1
* drop dependency on vala, not used.
* add TEST_TARGET.
NEWS from upstream:
libgee 0.5.3
============
* Fix memory leaks in TimSort and LinkedList.
* Bug fixes in TreeMap and TreeSet.
libgee 0.5.2
============
* Build system enhancements to conform Gnome's style.
* Bug fixes in TreeSet, TreeMap and Collection.to_array.
* Deprecated Map methods marked with [Deprecated].
libgee 0.5.1
============
* Bug fixes in HashMultiSet, TimSort, TreeMap, TreeMultiSet, and TreeSet.
* Fix build with Vala 0.8.0 and later.
* Fix build on Windows.
* Fix subprocess handling in test infrastructure.
libgee 0.5.0
============
* API changes
* Introduce Functions hash, equal and compare function factory
* Introduce Comparable<G> interface
* Implementations provides sane defaults when constructed without functions
* ReadOnly* made internal in favor of a `read_only_view` properties
* Iterator<G> is now mutable and resettable
* Introduction of BidirIterator<G> bidirectional iterators
* List<G>.list_iterator () returns a specialized ListIterator<G>
* Various API contracts clarifications and enhancements
* Introduce List<G>.sort () with TimSort implementation
* Complete Map API rework
* Introduce Queue and Deque interfaces
* Introduce MultiSet and MultiMap interfaces (Ali Sabil)
* Introduce SortedSet interface (Maciej Pietchotka)
* New implementations
* HashMultiSet and HashMultiMap (Ali Sabil)
* TreeMultiSet and TreeMultiMap.
* PriorityQueue
* LinkedList now implements Deque
* TreeSet now implements SortedSet (Maciej Pietchotka)
* Infrastructure
* New test framework and complete tests refactoring (Julien Peters)
* New doc/ documentation directory (--enable-doc)
* Test coverage analysis using lcov (--enable-coverage)
* Basic benchmark framework and sort benchmark (--enable-benchmark)
* Use silent rules by default for users of automake 1.11
* Code Quality
* Many bug fixes
* Many optimizations
* Lots of additional documentation
* Better overall encapsulation, dangerous public setters have been removed
* Better test coverage (more than 90%)
libgee 0.4.0
============
* Bug fixes.
libgee 0.3.0
============
* Introduce AbstractCollection, AbstractList and AbstractMap base classes.
* Add new properties and methods to Collection, List and Map. (Tomaž Vajngerl)
* Add LinkedList implementation. (Mark Lee)
* Add TreeSet and TreeMap implementations. (Maciej Piechotka)
* Iterable.element_type is now a property.
* Map.remove now takes an optional parameter to retrieve the removed value.
* Bump library version info to reflect API/ABI breakage
libgee 0.2.0
============
* Generate GIR file.
libgee 0.1.6
============
* Fix build for Vala 0.7.
* Bug fixes.
The getopt library provides two different command line option parsers.
They are meant as easier and more convenient replacements for the
command line parsers that ship as part of the Ruby standard library.
Please see the README for additional comments.
== DESCRIPTION:
Ruby-FFI is a ruby extension for programmatically loading dynamic
libraries, binding functions within them, and calling those functions
from Ruby code. Moreover, a Ruby-FFI extension works without changes
on Ruby and JRuby.
Discover why should you write your next extension using Ruby-FFI
here[http://wiki.github.com/ffi/ffi/why-use-ffi].
== FEATURES/PROBLEMS:
* It has a very intuitive DSL
* It supports all C native types
* It supports C structs (also nested), enums and global variables
* It supports callbacks
* It has smart methods to handle memory management of pointers and structs
* 0.24 included a too strict whitespace/shell metacharacter filter
leading to some legal characters like = and : being escaped in the
output. This has been fixed.
* when building with newer and external libpopt, it would be confused
over being asked to split an empty string, leading to errors with
packages that included empty fields in their .pc files.
* Make the COPYING file explicitly GPLv2. The COPYING file in 0.24
was inadvertently GPLv3 rather than the correct GPLv2.
* Minor changes to documentation
Changes 0.24:
* Fix up bug in PKG_CONFIG_SYSROOT handling which mangled non-I and
non-L arguments
* Put /usr/lib/pkgconfig and /usr/share/pkgconfig into the default
search path when no prefix is passed to configure.
* Portability fixes for Windows and NetBSD
* Various man page updates
* Add logging support to log how pkg-config is being called.
* Skip Requires.private unless we need them for Cflags
* Add a variable, pc_path to the compiled-in pkg-config package that
you can query for the compiled-in PKG_CONFIG_PC_PATH.
* Various updates to pkg.m4.
* Update rpmvercmp with bugfixes from upstream.
* Add introductory guide to pkg-config, thanks to Dan Nicholson for
the patch.
* Add listing of variables in a package
* Make it possible to use external popt.
* Add --print-provides and --print-requires(-private) options
* Add support for paths containing whitespace and shell metacharacters
devel/p5-LEOCHARRE-CLI2 as dependency of scheduled update of
www/p5-WordPress-XMLRPC to 1.23
Some quick help for writing cli scripts. Forces by default that -h
triggers help, that -d triggers debug. Automates help, debug, etc.
When LEOCHARRE::CLI2 is used, the OPTIONS are altered automatically.
Also it automatically generates HELP.
pkgsrc changes:
- add license
- add/adjust dependencies
Upstream changes:
0.19 10 Aug 2009
* tweek N::L::C::G::AD per https://rt.cpan.org/Ticket/Display.html?id=48562
* add isa_user() and isa_group() methods to base class per same RT ticket.
0.20 26 Aug 2009
* add Iterator, SimpleIterator and MultiIterator classes and supporting methods.
Thanks to Peter Newman for dialogue on the development of the iterator feature.
See https://rt.cpan.org/Ticket/Display.html?id=48562
* fix overloading for boolean checks when stringify() evaluates false (emptry string, e.g.)
0.21 26 Aug 2009
* change fetch_secondary_users() in both Group::AD and Group::POSIX to just wrap around
secondary_users_iterator().
0.22 14 Sep 2009
* add pswd_will_expire_localtime to User::AD
* remove init_user_class and init_group_class overrides in subclasses,
to prevent masking the fact that you must create your own subclass.
0.23 24 Nov 2009
* add explicit unbind() calls in tests per RT #52037
0.24 29 Nov 2009
* flag some AD tests as TODO until the pack/unpack issue with SIDs can be ironed out.
It only seems to affect Net::LDAP::Server::Test, not actual AD servers.
0.25 17 Feb 2010
* rewrite of internal _sid2string() and _string2sid() pack/unpack magic. Many thanks
to David Lowe for the help.
pkgsrc changes:
- add license
- adjust download directory
Upstream changes (since 0.08_01 - upstream version of packaged 0.8.0.01):
0.10 15 June 2010
* ditch the pseudo-sleep() delay in forking child, instead using
a pipe() check. Patch from David Leadbeater via
https://rt.cpan.org/Public/Bug/Display.html?id=56987
* quiet line noise when primaryGroupID not used. Patch from Ted
Katseres via https://rt.cpan.org/Public/Bug/Display.html?id=58337
0.09 17 Feb 2010
* wrap print to $socket handle in {} braces for perl 5.6.x
* rewrite _sid2string() and _string2sid() with better pack/unpack
magic. Thanks to David Lowe.
0.08 26 Aug 2009
* make debugging messages optional with LDAP_DEBUG env var
* add support for Net::LDAP::Control (specifically,
Net::LDAP::Control::Paged)
Upstream changes:
Changes in Devel::NYTProf 4.05 (svn 1359) 15th Sept 2010
Fixed tests to work with a new optimization in perl 5.13.4.
Fixed handling of negative values for subroutine line ranges
(that may be added to %DB::sub by buggy software).
Fixed handling of negative times from unstable clocks
that caused spikes in statement times.
Fixed risk of bad line numbers hanging report generation.
LuaFileSystem is a Lua library developed to complement the set of functions
related to file systems offered by the standard Lua distribution.
LuaFileSystem offers a portable way to access the underlying directory
structure and file attributes.
pkgsrc changes:
- bump version of dependency to devel/p5-Sub-Exporter
Upstream changes:
0.086 2010-09-19
fix minimum required version of Sub::Exporter
minor tweak to avoid warnings when run with -w
Upstream changes:
0.08 2010-09-18
- oops, accidentally included some experimental changes in that last
release, that break things
0.07 2010-09-18
- non-dev release
0.06-TRIAL 2010-08-26
- re-enable the caching of the stash, since I can't reproduce the bug
at all
pkgsrc changes:
- adjust license
Upstream changes since 3.31:
3.33 - Mon Sep 20 18:00:00 2010
- No functional changes since the previous release.
- Fixes POD links
(part of core change2a6dc37471bea77f0c24fd1fe90c598a270c9968,
Florian Ragwitz)
3.32 - Sun Sep 19 18:00:00 2010
- Promote to stable release.
3.31_03 - Fri Sep 17 20:00:00 2010
- Colon delimiter and escaped delimiters for File::Spec::VMS
This is core change 61196b433b2b (Craig A. Berry)
3.31_02 - Fri Jul 23 20:00:00 2010
- Add TODO test for File::Spec->rel2abs() when under a symlink.
- Make catpath return an empty directory rather than the current
directory if the directory name is empty. This allows catpath
to play nice with non-rooted logical names, as in
catpath('sys$login:', '', 'login.com');
(Craig A. Berry)
- Fix abs2rel bug in handling a Unix-style input.
(Craig A. Berry)
- Assorted clarification and simplification of the documentation.
(Craig A. Berry)
pkgsrc changes:
- removing dependency to devel/p5-AutoXS-Header
Upstream changes:
1.08 Fri Sep 17 20:30 2010
- Promote latest development release to a stable release.
1.07_04 Sun Sep 12 10:30 2010
- Since WIN32 doesn't have the PERL_CORE optimization,
it gets the PERL_NO_GET_CONTEXT optimization back.
- Add threading test that would previously crash on win32
and perls compiled with track-mempool.
- Use the system's malloc/etc for the shared memory, not perl's.
1.07_03 Thu Sep 9 20:30 2010
- Minor constructor optimization/cleanup.
- Various built-time warning fixes.
- PERL_CORE optimization now disabled on WIN32.
- Class::Accessor::Fast compatibility code added (not
for public consumption!)
- Clear requirement of Perl 5.8 everywhere.
- Fix minor (constant as in O(1)) memory leak.
1.07_02 Mon Aug 23 20:30 2010
- Various warning fixes and small cleanups over previous
dev. version.
1.07_01 Wed Aug 18 20:30 2010
- Experimental support for lvalue accessors:
$obj->foo = 12
Upstream changes:
Version 1.6.12
(21 Jun 2010, from /branches/1.6.x)
http://svn.apache.org/repos/asf/subversion/tags/1.6.12
User-visible changes:
* further improvements for issue #3242
* allow deletion of uris which need character escaping (issue #3636)
* fix errors with 'svn mkdir --parents' (issue #3649)
* update address to which crash reports are sent (r901304)
* check for server certificate revocation on Windows (r898048)
* disable custom file mutexes on Windows (r879902, -16)
* fix handling of peg revision'd copy targets (issue #3651)
* more improvements to 'svn merge --reintegrate' (r935631)
* allow copying of broken symlinks (issue #3303)
* improve rep-sharing performance on high-concurrency repos (issue #3506)
* fixed: added subtrees with mergeinfo break reintegrate (issue #3654)
* fixed: assertion triggered by tree-conflicted externals (issue #3469)
Developer-visible changes:
* give windows devs more flexibility with sqlite versions (r944635)
* allow the pack tests to work with low file descriptor limits (r937610)
* improve exception handling on Windows Vista and 7 (r878447, -910, -916)
Version 1.6.11
(19 Apr 2010, from /branches/1.6.x)
http://svn.apache.org/repos/asf/subversion/tags/1.6.11
User-visible changes:
* fix for repositories mounted via NFS (issue #3501)
* enable TCP keep-alives in svnserve (r880552)
* tighten restrictions on revprops for 'svnadmin verify' (r904594)
* make ra_serf give better out-of-date information (issue #3561)
* improve error message upon connection failure with svn+ssh:// (r922516)
* allow 'svn log' on an uncommitted copy/move destination (r901752)
* make 'svnadmin hotcopy' copy the fsfs config file (r905303)
* mergeinfo improvements with non-inheritable mergeinfo (issue #3573)
* make mergeinfo queries not require access to the repo root (issue #3242)
* update URLs to refer the the new apache.org repository (r904301, -94)
* update relative externals during a switch (issue #3390)
* fix 'merge --reintegrate' with self-referential mergeinfo (r892050, -85)
* improve wc-ng working copy detection (r929382)
* improve handling of mergeinfo when using serf (r880461)
* fixed: 'svnlook plist --revprop' with '-t TXN_NAME' (r917640, -8211)
* fixed: file external from URL cannot overwrite existing item (issue #3552)
* fixed: potential memory error in 'svn status' (r923674, -9)
* fixed: merge records mergeinfo from natural history gaps (issue #3432)
* fixed: theoretical possibility of DB corruption (r926151, -67)
Developer-visible changes:
* disable checks for wc-ng working copies when running the test suite
* on Windows, don't ignore move operation error codes (r896915)
* more precise reporting of errors occuring with sqlite init (r927323, -8)
* ensure rangelist APIs are commutative (r923389, -91)
Version 1.6.10
(Not released, see changes for 1.6.11.)