summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-02-14add new option -asplain that makes extended autnums be output as simple numbersspz18-39/+261
instead of in asdot format.
2009-02-14Needs gettext-m4 at *build* time only.joerg1-2/+2
2009-02-14Needs gettext-m4 for AM_ICONV.joerg1-1/+3
2009-02-14Note update of devel/p5-Moose to version 0.69seb1-1/+2
2009-02-14Update from version 0.68 to version 0.69.seb2-6/+6
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)
2009-02-14Updated chat/inspircd12 to 1.2.0rc1adrianp1-1/+2
2009-02-14On to what's actually in 1.2RC1:adrianp3-8/+10
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!
2009-02-14Added www/apache-tomcat6 version 6.0.18adrianp1-1/+2
2009-02-14+apache-tomcat6adrianp1-1/+2
2009-02-14Apache Tomcat 6.x is the current focus of development. It builds upon theadrianp5-0/+852
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
2009-02-14Remind the package developers that AUTO_MKDIRS is more convenient thanrillig1-9/+15
using the INSTALL_*_DIR commands or the INSTALLATION_DIRS variable. Suggested by abs@ on tech-pkg@.
2009-02-14Small cleanups:rillig2-9/+5
- 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
2009-02-14Note update of databases/p5-perl-ldap to version 0.39seb1-1/+2
2009-02-14Update from version 0.38 to version 0.39.seb2-9/+8
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
2009-02-14Need to define SSL_SUPPORT before using it :)obache1-1/+2
2009-02-14Updated print/if-psprint to 1.9abs1-1/+16
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
2009-02-14Added time/p5-MooseX-Types-DateTime version 0.03abs1-7/+6
This module packages several Moose::Util::TypeConstraints with coercions, designed to work with the DateTime suite of objects.
2009-02-14+p5-DateTimeX-Easyabs1-1/+2
2009-02-14Added time/p5-DateTimeX-Easy version 0.085abs3-0/+36
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).
2009-02-14+p5-Test-Mostabs1-1/+2
2009-02-14Added devel/p5-Test-Most version 0.20abs3-0/+46
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.
2009-02-14+p5-DateTime-Format-DateManipabs1-1/+2
2009-02-14Added time/p5-DateTime-Format-DateManip version 0.04abs3-0/+30
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.
2009-02-13+p5-DateTime-Format-Flexibleabs1-1/+2
2009-02-13Added time/p5-DateTime-Format-Flexible version 0.05abs3-0/+36
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.
2009-02-13+p5-DateTime-Format-Naturalabs1-1/+2
2009-02-13Added time/p5-DateTime-Format-Natural version 0.74abs3-0/+34
DateTime::Format::Natural takes a string with a human readable date/time and creates a machine readable one by applying natural parsing logic.
2009-02-13+p5-Date-Calcabs1-1/+2
2009-02-13Added time/p5-Date-Calc version 5.4abs3-0/+39
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.
2009-02-13+p5-MooseX-Types-Commonabs1-1/+2
2009-02-13Added devel/p5-MooseX-Types-Common version 0.001000abs3-0/+44
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
2009-02-13+p5-booleanabs2-5/+5
2009-02-13Added devel/p5-boolean version 0.20abs3-0/+40
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.
2009-02-13Switch to INSTALLATION_DIRSabs1-8/+6
2009-02-13+p5-MooseX-Types-DateTimeabs1-1/+2
2009-02-13Added time/p5-MooseX-Types-DateTime version 0.03abs3-0/+43
This module packages several Moose::Util::TypeConstraints with coercions, designed to work with the DateTime suite of objects.
2009-02-13+p5-DateTime-Format-DateParseabs1-1/+2
2009-02-13Added time/p5-DateTime-Format-DateParse version 0.04abs3-0/+31
This module is a compatibility wrapper around Date::Parse. It accepts no arguments to its import method and exports no symbols.
2009-02-13Add PKG_DESTDIR_SUPPORT - release maintainershipabs2-13/+16
2009-02-13Updated sysutils/xenkernel3 to 3.1.4nb3bouyer1-1/+2
2009-02-13On i386 also build and install PAE versions of the xen kernel.bouyer2-2/+23
Bump pkgrevision
2009-02-13Add PKG_DESTDIR_SUPPORTabs5-11/+22
2009-02-13Updated sysutils/libirman to 0.4.1cabs8-117/+10
Move abandonware to code.google, and merge pkgsrc patches Add PKG_DESTDIR_SUPPORT
2009-02-13Switch to using INSTALLATION_DIRSabs1-7/+7
2009-02-13Updated net/mrstat to 1.20abs3-11/+13
move to google code set PKG_DESTDIR_SUPPORT
2009-02-13Add PKG_DESTDIR_SUPPORT, relinquish maintainershipabs1-9/+10
2009-02-13Add PKG_DESTDIR_SUPPORTabs1-1/+4
2009-02-13+p5-Catalyst-View-Masonabs1-1/+2
2009-02-13Added www/p5-Catalyst-View-Mason version 0.16abs3-0/+28
A view base class for Catalyst using HTML::Mason
2009-02-13Updated print/if-psprint to 1.9abs3-22/+12
Move to code.google Add install target to original makefile Add PKG_DESTDIR_SUPPORT