Age | Commit message (Collapse) | Author | Files | Lines |
|
instead of in asdot format.
|
|
|
|
|
|
|
|
Upstream changes:
0.69 Thu, February 12, 2009
* Moose
- Make some keyword errors use throw_error instead of croak
since Moose::Exporter wraps keywords now (Sartak)
* Moose::Cookbook::*
- Revised every recipe for style and clarity. Also moved some
documentation out of cookbook recipes and into Moose::Manual
pages. This work was funded as part of the Moose docs grant
from TPF. (Dave Rolsky)
* Moose::Meta::Method::Delegation
- If the attribute doing the delegation was not populated, the
error message did not specify the attribute name
properly. (doy)
|
|
|
|
This is primarily a fix-based release from 1.2b4.
* Minor memory leak
* Expire XLines when accessed, not just when matched, to prevent a large buildup of stale XLines
* Allow +l 0 (for use with things like +PlL #newchan)
* Fix poll socket engine to work correctly
* Fix undefined memory read on /stats :
* kqueue fixes
* Don't allow bad censor configurations to result in an infinite loop
* STARTTLS fixes
* Change numeric for +L to be easier to parse (and more standardised: freenode and others use this)
* Fix autoconnects triggering at the wrong time
* Numerous docs typos and updates
* Small security hole where /oper allowed /oper login <hash> to oper up
* Allow binding to all IPv4 IPs easily on an IPv6 compile
* Disallow silly messageflood parameters
* And more!
|
|
|
|
|
|
improvements made in Tomcat 5.5.x and implements the Servlet 2.5 and JSP 2.1
specifications. In addition to that, it includes the following improvements:
* Memory usage optimizations
* Advanced IO capabilities
* Refactored clustering
While we're here make a number of improvements based on the old 5.5.x pkg:
- Use MASTER_SITE_APACHE
- Default to running as an unprived user
- Use a more standard rc.d script
- Cleaner pkg_delete operation based on standard files/dirs that change
|
|
using the INSTALL_*_DIR commands or the INSTALLATION_DIRS variable.
Suggested by abs@ on tech-pkg@.
|
|
- Added a runtime dependency to Perl
- Using AUTO_MKDIRS instead of INSTALLATION_DIRS saves a few lines
- Sorted PLIST
- Removed a needless mkdir command from the PLIST
|
|
|
|
Pkgsrc changes:
- Depend on net/p5-IO-Socket-INET6 instead of the identical and soon
to be removed net/p5-INET6
Upstream changes:
perl-ldap 0.39 -- Mon Oct 27 15:02:37 CDT 2008
==============================================
Bug Fixes
* Several fixes to the handling of IntermediateMessage and LDAP Content synchronisation
* Fix dsmt test to not fail on win32
* Fix Net::LDAP::Util to not cause Undefined subroutine &Net::LDAP::Util::ldap_error_desc
|
|
|
|
Added www/p5-Catalyst-View-Mason version 0.16
Updated net/mrstat to 1.20
Updated sysutils/libirman to 0.4.1c
Added time/p5-DateTime-Format-DateParse version 0.04
Added time/p5-MooseX-Types-DateTime version 0.03
Added devel/p5-boolean version 0.20
Added devel/p5-MooseX-Types-Common version 0.001000
Added time/p5-Date-Calc version 5.4
Added time/p5-DateTime-Format-Natural version 0.74
Added time/p5-DateTime-Format-Flexible version 0.05
Added time/p5-DateTime-Format-DateManip version 0.04
Added devel/p5-Test-Most version 0.20
Added time/p5-DateTimeX-Easy version 0.085
Added time/p5-MooseX-Types-DateTime version 0.03
|
|
This module packages several Moose::Util::TypeConstraints with
coercions, designed to work with the DateTime suite of objects.
|
|
|
|
DateTimeX::Easy makes DateTime object creation quick and easy. It
uses a variety of DateTime::Format packages to do the bulk of the
parsing, with some custom tweaks to smooth out the rough edges
(mainly concerning timezone detection and selection).
|
|
|
|
This module provides you with the most commonly used testing
functions and gives you a bit more fine-grained control over your
test suite.
use Test::Most tests => 4, 'die';
ok 1, 'Normal calls to ok() should succeed';
is 2, 2, '... as should all passing tests';
eq_or_diff [3], [4], '... but failing tests should die';
ok 4, '... will never get to here';
As you can see, the eq_or_diff test will fail. Because 'die' is in
the import list, the test program will halt at that point.
|
|
|
|
DateTime::Format::DateManip is a class that knows how to convert
between Date::Manip dates and durations and DateTime and
DateTime::Duration objects. Recurrences are note yet supported.
|
|
|
|
If you have ever had to use a program that made you type in the
date a certain way and thought "Why can't the computer just figure
out what date I wanted?", this module is for you.
DateTime::Format::Flexible attempts to take any string you give it
and parse it into a DateTime object.
The test file tests 2500+ variations of date/time strings. If you
can think of any that I do not cover, please let me know.
|
|
|
|
DateTime::Format::Natural takes a string with a human readable
date/time and creates a machine readable one by applying natural
parsing logic.
|
|
|
|
This package consists of a C library and a Perl module (which uses
the C library, internally) for all kinds of date calculations based
on the Gregorian calendar (the one used in all western countries
today), thereby complying with all relevant norms and standards:
ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where
applicable).
(See also http://www.engelschall.com/u/sb/download/Date-Calc/DIN1355/
for a scan of part of the "DIN 1355" document (in German)).
The module of course handles year numbers of 2000 and above correctly
("Year 2000" or "Y2K" compliance) -- actually all year numbers from
1 to the largest positive integer representable on your system
(which is at least 32767) can be dealt with.
|
|
|
|
A set of commonly-used type constraints that do not ship with Moose by default.
Numeric:
* PositiveNum
* PositiveInt
* NegativeNum
* Int
* SingleDigit
String:
* SimpleStr
A Str with no new-line characters.
* NonEmptySimpleStr
Does what it says on the tin.
* Password
* StrongPassword
* NonEmptyStr
|
|
|
|
Most programming languages have a native Boolean data type. Perl
does not.
Perl has a simple and well known Truth System. The following scalar
values are false:
$false1 = undef;
$false2 = 0;
$false3 = 0.0;
$false4 = '';
$false5 = '0';
Every other scalar value is true.
This module provides basic Boolean support, by defining two special
objects: true and false.
|
|
|
|
|
|
This module packages several Moose::Util::TypeConstraints with
coercions, designed to work with the DateTime suite of objects.
|
|
|
|
This module is a compatibility wrapper around Date::Parse.
It accepts no arguments to its import method and exports no symbols.
|
|
|
|
|
|
Bump pkgrevision
|
|
|
|
Move abandonware to code.google, and merge pkgsrc patches
Add PKG_DESTDIR_SUPPORT
|
|
|
|
move to google code
set PKG_DESTDIR_SUPPORT
|
|
|
|
|
|
|
|
A view base class for Catalyst using HTML::Mason
|
|
Move to code.google
Add install target to original makefile
Add PKG_DESTDIR_SUPPORT
|