performance and highly flexible algorithms. It can be used as a suppliment
to GLib (to add additional functions (dictionaries, hashes), or replace
some of the slow GLib list manipulation functions), or stand alone. It
also provides a powerful hook system and convenient logging for your code,
as well as a high performance block allocator.
by Makefile.common and Makefile. Add empty declarations of missing
variables in Makefile and remove inclusion of Makefile.common there.
This package should now build properly.
some sensible default values for the server configuration file via
the SUBST framework. Use REPLACE_PYTHON. New variable CODEVILLE_DATADIR,
which defaults to ${VARBASE}/db/cdv.
New in version 0.8.0:
* Remember commit message and autofill it on next attempt if commit
fails
* fixed: catch requests for non-existent diffs
* fixed: error handling cleanup in networking code
* fixed: Windows-specific networking fixes
* fixed: binary file corruption on Windows with 'construct'
* fixed: glob expansion with 'describe -d'
* fixed: renaming corner case involving directories, renaming and
deleting
* fixed: files renamed out of a deleted directory on another branch were
marked as a name conflict
* fixed: use case-insensitive regexps for post-commit hooks because the
config parser lowercases everything
* fixed: filesystem timestamp precision problems
* fixed: Python 2.5 fixes
These fixes have been collecting for a while. Now you all get to enjoy
them too.
The version number has been changed to reflect that the currect code is
stable, yet is still missing some features which would be necessary for a
1.0 release
readline emulation, the GNU readline library which this module depends
on would not be picked up, causing "perl -d -e '1;'" to fail to start
the perl debugger because it could not find the rl_initialize function.
Instead, point includes and libs into ${PREFIX}, so that we have a chance
of picking up the proper GNU readline library.
Version 5.49 DEVELOPMENT
Corrected typo in %G and %L format descriptions. Troy A. Bollinger
<troy@austin.ibm.com>
Added "ereyesterday". Ed Avis <eda@waniasset.com>
Added timezones. Damyan Ivanov <dam@modsoftsys.com>
Added timezone. Ernesto Hernandez-Novich <emhnemhn@gmail.com>
Added timezone. Gregor Herrmann <gregor+debian@comodo.priv.at>
Added timezone. Nicholas Riley <njriley@uiuc.edu>
Added timezone. Enrique Verdes <everdes@uygroup.com.uy>
Added timezone. Alexander Litvinov <lan@academsoft.ru>
Added Build.PL and several other things to meet requirements on
http://cpants.perl.org/
Version 5.50 2008-05-05
Released
Version 5.51 DEVELOPMENT
Additional changes to meet requirements on http://cpants.perl.org/
Fixed bug where the wrong version was in Build.PL
Version 5.52 2008-05-08
Released
Version 5.53 DEVELOPMENT
Final changes to meet requirements on http://cpants.perl.org/
Bug fix so it won't fail with "Too early to specify a build action"
Version 5.54 2008-05-09
Released
Added devel/p5-Cache-FastMmap version 1.26
Added devel/p5-parent version 0.221
Added textproc/p5-Lingua-EN-Inflect-Number version 1.1
Added textproc/p5-Text-SimpleTable version 0.03
Added textproc/p5-YAML-Tiny version 1.32
A shared memory cache through an mmap'ed file. Its core is written
in C for performance. It uses fcntl locking to ensure multiple
processes can safely access the cache at the same time. It uses
a basic LRU algorithm to keep the most used entries in the cache.
This module gives direct access to some of the internal Perl routines
that let you store things in arrays and hashes. The following
functions are available:
av_store(@array, $index, $value)
Stores $value in @array at the specified $index. After executing
this call, $array[$index] and $value denote the same thing.
av_push(@array, $value)
Pushes $value onto the @array. After executing this call,
$array[-1] and $value denote the same thing.
hv_store(%hash, $key, $value);
Stores $value in the %hash with the given $key. After executing
this call, $hash{$key} and $value denote the same thing.
Allows you to both load one or more modules, while setting up
inheritance from those modules at the same time. Mostly similar in
effect to:
package Baz;
BEGIN {
require Foo;
require Bar;
push @ISA, qw(Foo Bar);
}
* [r28] lib/Array/Compare.pm: Increment version number
* [r27] Build.PL: Fix prerequisites
* [r26] lib/Array/Compare.pm: Require Perl 5.6 so we can use
warnings and our.
Handles the installing and uninstalling of perl modules, scripts,
man pages, etc...
Both install() and uninstall() are specific to the way ExtUtils::MakeMaker
handles the installation and deinstallation of perl modules. They
are not designed as general purpose tools.
2.011 17 May 2008
* IO::Uncompress::Unzip
- Print an error message if the zip file contains a
member compressed with bzip2 and IO::Uncompress::Bunzip2 is
not available.
- Could not cope with mixed compression zip files. For example a
zip file that contains both STORED and DEFLATED content.
[RT #35573]
2.010 5 May 2008
* Fixed problem that meant Perl 5.10 could not upgrade this module.
[RT #35343]
2.009 20 April 2008
* IO::Compress::Zip
- Added exUnix2 option to allow storing of UID & GID.
- When running on a Unix derivative the ExtAttr option now defaults
to the equivalent of 0666. For all other systems the default
remains 0.
2.011 17 May 2008
* No Changes
2.010 5 May 2008
* Fixed problem that meant Perl 5.10 could not upgrade this module.
[RT #35341]
2.009 20 April 2008
* Minor documentation issue with flush.
[rt.cpan.org #31446]
2.011 17 May 2008
* No Changes
2.010 5 May 2008
* Fixed problem that meant Perl 5.10 could not upgrade this module.
[RT #35341]
2.009 20 April 2008
* Minor documentation issue with flush.
[rt.cpan.org #31446]
2.011 5 May 2008
* A C++-style comment sneaked in with the last update. Fixed.
[core patch #33828]
2.010 5 May 2008
* No Changes
2.009 20 April 2008
* No Changes
#========================================================================
# Version 1.66 Date: 2007/07/06 (Andy Wardley)
#========================================================================
* Removed File::HomeDir from the test scripts.
Version 6.00 17.02.2008
+ Oops. Fixed version number. '5.10' is less than '5.9'. I thought
CPAN would handle this but apparently not..
Version 5.10 10.01.2008
+ Removed the circular dependency on Object::Deadly. It was only
used for testing and would only succeed if you already had O::D
installed.