Commit graph

128610 commits

Author SHA1 Message Date
he
48c8f04f92 Update from version 1.815 to 1.817. Changes:
1.817 27 March 2008

   * Updated dbinfo

   * Applied core patch 32299 - Re-apply change #30562

   * Applied core patch 32208

   * Applied core patch 32884 - use MM->parse_version() in Makefile.PL

   * Applied core patch 32883 -  Silence new warning grep in void
     context warning

   * Applied core patch 32704 to remove use of PL_na in typemap

   * Applied core patch 30562 to fix a build issue on OSF

1.816 28 October 2007

   * Clarified the warning about building with a different version of
     Berkeley DB that is used at runtime.

   * Also made the boot version check less strict.
     [rt.cpan.org #30013]
2008-07-22 22:30:56 +00:00
he
0ab07921b7 Update from version 2.16nb5 to 2.19. Changes:
2.19  Wed Jan 26 21:57:36 CST 2005

 - We now use $r->print() instead of print() inside SSI.pm, because
   the latter seemed to have buffering problems.

 - Added a Build.PL for installation via Module::Build.

 - Modified ssi_include() to check for an HTTP_OK status from the
   subrequest in addition to an OK status from the handler. [Aaron
   Ross]

 - Fixed an undefined-value warning that occurred in the time-related
   components when the time zone wasn't set. [Aaron Ross]

 - Made some modernization updates to the Apache::test module we use
   during testing.

 - Use Test.pm for testing output rather than my custom stuff.

2.18  Tue Jan 22 12:22:16 CST 2002
   Doing an include can mess up %ENV (and thus the query string, and
   the table of set variables), so we now make sure we restore it after
   executing a subrequest.

2.17  Mon Jan 14 13:58:21 CST 2002
   Added the Apache::FakeSSI class, which implements server-side
   includes in pure-perl so that its output can be filtered via
   Apache::Filter.  Note that its <!--#exec cgi="..."--> isn't
   functional yet.

   Fixed a problem with the MANIFEST - file t/docs.check/16 was missing.
2008-07-22 22:23:55 +00:00
tonio
212749b9ed Fix xmahjongg-3.70 entry 2008-07-22 21:59:40 +00:00
tonio
61786076ae Set PKGNAME to xmahjongg-3.70, instead of 3.7, as it was previously 3.61
Avoids going backward with version numbers
2008-07-22 21:59:00 +00:00
he
7b1f536f8e Update from version 2.11 to 2.12. Changes:
2.12	Jul 20 2008
	- fixed warnings: Name " X::foo" used only once (#35840, #37023)
2008-07-22 21:57:01 +00:00
tnn
98583501b6 fix cross-compile 2008-07-22 21:49:30 +00:00
rhaen
d0f034a4b5 Updated www/p5-HTML-Mason 2008-07-22 21:42:52 +00:00
rhaen
7570e9ac3c - updated to 1.39
- took maintainership for package
- cleanup up Makefile
- introduced options.mk file for the package
  p5-Cache-Cache is set to default, modperl has been removed from the
  default options, added to options.mk
  fcgi has been added to options.mk for lighttpd usage
- MESSAGE file entry edited for lighttpd webserver

ChangeLog:
Revision history for HTML::Mason.

An HTML version of this file, complete with links to documentation, is
available at http://www.masonhq.com/code/history.html.

** denotes an incompatible change

1.39  Jan 30, 2008

    [ ENHANCEMENTS ]

    - CHI may now be used as the backend for $m->cache as an updated
  alternative to Cache::Cache.  Among other things, this facilitates
  easy use of Cache::FastMmap and memcached for data
  caching. Cache::Cache is still the default for now, and is still
  listed as a prereq for Mason.

1.38  Dec 20, 2007

    [ BUG FIXES ]

    - (Hopefully) fixed a problem where the cpan shell thought that Mason
  needed mod_perl1 as a prereq when it was trying to require a newish
  version of mod_perl2.

    - If you called $r->send_http_header() explicitly in a component under
  mod_perl 1.x, headers would end up getting sent again once the
  component finished executing. Reported by Brett Gardner.

    - Component call with content end tags could not span multiple
  lines. Fixing this makes it consistent with the opening tag. Patch
  by Alex Robinson.

    - Includes a possible fix for a test failure in 10-cache.t. This
  failure is a problem in the test code, not the Mason core code.

1.37  Sep 6, 2007

    [ BUG FIXES ]

    - Mason could send the HTTP headers twice under mod_perl 1.x when
  making a request for a directory path that was handled by a
  dhandler. Reported by David Beaudet.

    - If you set the Content-Type header in a handler sub before passing
  control to Mason via ApacheHandler, this value was overwritten if
  the request was for a directory path.

    [ ENHANCEMENTS ]

    - Make t/08-ah.t and t/16-live-cgi.t more verbose about why they are
  skipping tests when they do so. Based on a patch from
  C.J. Adams-Collier.

1.36  Jun 10, 2007

    [ BUG FIXES ]

    - If a component with content call ending tag appeared inside a
  subcomp or method without an opening tag, then the compiler dies
  with a Perl error, rather than reporting the error
  usefully. Reported by Rich Williams.

    - Under mod_perl 2, if decline_dirs was false and a directory was
  requested, you got a "Use of uninitialized value" warning from
  ApacheHandler in your logs. Reported by Ogden Nefix.

    - HTML::Entities is now a prereq. Not requiring it made for various
  weird gyrations in the tests that didn't seem to work all the time,
  causing various failures. Fixes RT #24827.

    - Request::CGIHandler->exec() now returns the return value from
  executing the component, just like a normal Request. Reported by
  Adrian Irving-Beer.

    [ ENHANCEMENTS ]

    - Added a new Compiler::ToObject parameter,
  named_component_subs. Turning this on makes it possible to profile
  components.

    - Added a new Request parameter, component_error_handler. This can be
  set to change how component compilation and runtime errors are
  handled. It can also be set to false to just let errors go
  unhandled, which could speed up apps that throw a lot of non-object
  exceptions.

1.35  Oct 17, 2006

    [ BUG FIXES ]

    - Version 1.34 introduced a bug that caused corruption of the callers
      stack when a component call with content was used.

    - When Mason tried to load a package required for a feature (like
      Cache::Cache for $m->cache) and this failed, the error message would
      say something like "Can't locate Cache::Cache". However, the real
      error could be that Cache::Cache was present, but a module required by
      Cache::Cache was not. Now we report the real missing module.

    - Some people saw a spurious test failure in 05-request.t. RT #22099.

    - Added Module::Build to the build_requires prereqs.

1.34  Oct 14, 2006

    [ BUG FIXES ]

    - List Module::Build as a build prereq in the Build.PL, so it shows up
      in META.yml. Reported by Colin Henein. RT #22097.

    - Apache::Request and mod_perl{1,2} will no longer show up as prereqs
      in META.yml. Requested by Jesse Vincent.

    - Fixed a serious memory leak bug where an object referenced in
      arguments to another component was never destroyed. Reported by
      Dominic Mitchell.

    - Using $m->call_next from a helper component should reset base_comp
      to the request_comp.  Reported by Mark Elrod.

    - The 08-ah.t and 16-live-cgi.t test files could fail with an error
      like "Failed to re-load 'Mason::Build'" when Mason was being installed
      via the CPANPLUS shell (and maybe other cases). Reported by David
      Wheeler.

    - Fixed a bug where $m->clear_buffer inside a component called from a
      comp_with_content did not clear all buffers.

    [ ENHANCEMENTS ]

    - Added support for get_server_port() in FakeApache. Patch from Dieter
      Piercey.

1.33  May 28, 2006

    [ BUG FIXES ]

    - If $m->flush_buffer() was called when there was a filter somewhere
      in the component chain, the flush did nothing. Task id #596. Reported
      by Shane McCarron.

    - Added several tests for $m->flush_buffer() and $m->clear_buffer(),
      which will hopefully avoid more bugs in this part of the code.

    - On Win32, a test failed when Mason tried to use rename to move a dir
      into an existing dir. Patch by Shane McCarron. Task id #594 and RT
      #17828.

    - Trying to load HTML::Mason::ApacheHandler outside of mod_perl caused
      an error "like Undefined subroutine &Apache::perl_hook called at
      /usr/local/share/perl/5.8.7/HTML/Mason/ApacheHandler.pm line
      257". While it will never _run_ outside of mod_perl, it should at
      least load.

    - Fixed test in 14a-fake_apache.t that failed with CGI.pm >= 3.16.

    - The example code in the HTML::Mason::Resolver::Null code was
      just wrong. Fixed by John Siracusa.

    - Fixed a test failure in 06-compile.t when using bleadperl. RT
      #17118.

1.32  January 3, 2006

    [ BUG FIXES ]

    - Under mod_perl 1.x with error_mode set to output, the headers were
      sent after the content when a compilation error occurred.  Reported by
      Gareth Kirwan.  Task id #592.

    - URI-escape utf8 characters the same way that CGI::escape and
      URI::Escape::uri_escape_utf8 do.  Patch by Denis Shaposhnikov.

    - On startup Mason creates a file named ".__obj_create_marker" in the
      object directory.  Under mod_perl, Mason was not chmod'ing the file
      when Apache was started as root. This led to permission errors in
      environments where the Interp is created anew every request.  Task id
      #593.

    - Treat the return value of component execution as a string in
      ApacheHandler.  This prevent warnings about comparing the empty string
      to a number when a component returns "".  Reported by Benjamin Franz.

    - Setting a MasonPlugins Apache parameter caused a fatal error.  Patch
      by David Jack Olrik.

    - Calling base_comp() on the Request object inside a plugin's
      start_request_hook method caused an infinite recursion in Mason.
      Reported by Jesse Vincent.
2008-07-22 21:41:55 +00:00
tonio
935b445474 Update games/xmahjongg 2008-07-22 21:26:06 +00:00
tonio
338c1f3d3e Update games/xmahjongg to version 3.7
Changelog:
Version 3.7   8.Mar.2005
* Man page bug fixes from Debian via Dave Swegen.
* Source code reorganization.
2008-07-22 21:25:00 +00:00
tnn
1f17bdd6de Needs pkg-config 2008-07-22 20:44:04 +00:00
tnn
78f5c45ebf Mention MoinMoin in the COMMENT to make the package easier to find, given
the non-obvious PKGNAME.
2008-07-22 20:17:24 +00:00
rhaen
d5ed90ff74 updated www/p5-HTML-FillInForm 2008-07-22 19:04:51 +00:00
rhaen
837c41c540 updated to 2.00
ChangeLog:

2.0 - September 11th, 2007

Allow passing an arrayref of hashrefs through fdat (Mark Stosberg, Michael Graham)

Several new shortcuts: (Mark Stosberg)
    Allow calling fill() as a class method as a shortcut.
    Allow   \$html  as shortcut for   scalarref => \$html
    Allow   \@html  as shortcut for   arrayref  => \@html
    Allow   \*html  as shortcut for   file      => \*html
    Allow   'html'  as shortcut for   file      => 'html'
    Allow   $q      as shortcut for   fobject   => $q
    Allow  \%fdat   as shortcut for   fdat      => \%fdat

    In summary, instead of this:

    my $fif = HTML::FillInForm->new;
    $fif->fill( scalarref => \$html, fdat => \%data );

    You can simply write:

    HTML::FillInForm->fill( \$html, \%data );

Fixed disable_fields bug (Boris Zentner)

Add support for ID attribute on form tags (name attribute is
deprecated in xhtml) [rt.cpan.org #27376] (Anthony Ettinger)

1.07 - August 2nd, 2007

Added 'disable_fields' method [rt.cpan.org #6342] (Trevor Schellhorn)

Support IE down-level revealed HTML comments [rt.cpan.org #19468] (Michael Peters)

hash is not reset before each() is called [rt.cpan.org #24980] (Simon P. Ditner)

Fix a bug the last plaintext part might be chopped if called via
scalarref [rt.cpan.org #21750] (Tatsuhiko Miyagawa)

Fix bug when passing 0 in array ref to textfields, also see
[rt.cpan.org #22195] (Paul Miller)

No longer generate warning if empty array as the value for a select attribute is passed (Dave Rolsky)
2008-07-22 19:04:15 +00:00
rhaen
967d7e0a97 updated devel/p5-Graph 2008-07-22 19:01:28 +00:00
rhaen
7f47e1cbe9 updated to 0.84
ChangeLog:
2007-08-13  Jarkko Hietaniemi  <jhi@iki.fi>

	* Tels found one more attributed edge problem.

	* Release as 0.84.

2007-08-12  Jarkko Hietaniemi  <jhi@iki.fi>

	* One test in 73_diameter.t had too many possible answers,
	  dependent on the hash ordering, removed the test.

	* Release as 0.83.

2007-08-11  Jarkko Hietaniemi  <jhi@iki.fi>

	* Since Heap 0.80 broke Graph, as a stop-gap measure
	  I will include the Heap::Elem and Heap::Fibonacci
	  of Heap 0.71, renamed as 'Heap071', addresses rt.cpan.org
	  #26943: "Heap 0.80 breaks Graph", and numerous bug reports
	  by email

	* Address rt.cpan.org #27840: "add-edge_attributes() on
	  undirected graph wrongly depends on node order", from Tels

	* Address rt.cpan.org #27959: "radius method incorrect",
	  code and test case from ROSULEK.

	* Release as 0.82.

2007-01-21  Jarkko Hietaniemi  <jhi@iki.fi>

	* Address rt.cpan.org #24417: "next_successor unavailable in
	  Traversal (PATCH)", from Ted Carnahan.

	* Small pod tweaks.

	* Minor internal cleanup for the caching code.

	* Release as 0.81.
2008-07-22 19:00:37 +00:00
reed
d2caf4d078 Add suggested package: filezilla client.
(suggested in PR 39171)
2008-07-22 15:45:43 +00:00
rhaen
71bf12b240 Updated time/p5-Calendar-Simple 2008-07-22 13:50:43 +00:00
rhaen
39378cf762 removed unneeded PLIST file 2008-07-22 13:50:06 +00:00
rhaen
b269843e37 updated to 1.20
took maintainership

ChangeLog:

2008-03-09  dave

	* [r50] Build.PL:
	  Incremented release number.
	* [r49] Build.PL:
	  Added Licence.
	  Slightly rejigged dependencies.

2008-03-08  dave

	* [r47] MANIFEST:
	  Removed COPYING for MANIFEST.
	* [r46] COPYING:
	  Remove COPYING.
	* [r45] t/no_dt.t:
	  Skip 2100 test on 64-bit systems.
	* [r44] lib/Calendar/Simple.pm:
	  Turn "licence" into a verb so CPANTS will recognise it.
	* [r43] lib/Calendar/Simple.pm:
	  Require Perl 5.6 (and, hence, use "our" and "warnings").
	  Use svn revision number.
	  Create licence section.
	* [r42] Build.PL, COPYING, MANIFEST:
	  Make files non-executable.
	* [r41] Build.PL:
	  Correct dependencies.
	  Change email address to mag-sol.com.
	  Increment version number.

2006-10-18  dave

	* [r40] lib/Calendar/Simple.pm:
	  Fixed undef values in comparisons
2008-07-22 13:48:48 +00:00
rhaen
e59e206ddc Updated textproc/p5-Encode 2008-07-22 13:40:20 +00:00
rhaen
03e3a8d07f updated to 2.26
took maintainership

ChangeLog:
# Revision history for Perl extension Encode.
#
# $Id: Changes,v 2.26 2008/07/01 20:56:17 dankogai Exp dankogai $
#
$Revision: 2.26 $ $Date: 2008/07/01 20:56:17 $
! Encode.pm
  Absense of Encode::ConfigLocal no longer carps no matter what.
  https://bugzilla.redhat.com/show_bug.cgi?id=435505#c2
  https://rt.cpan.org/Ticket/Display.html?id=28638
  https://rt.cpan.org/Ticket/Display.html?id=11511
! lib/Encode/JIS7.pm
  use encoding 'utf8' and 'iso-2022-jp' glitches on perl 5.10
  Thanks, MIYAGAWA
  Message-Id: <693254b90807011224h3ab50d76v50c6fea87baf223c@mail.gmail.com>
! lib/Encode/Alias.pm t/Aliases.t
  macintosh' not recognize as MacRoman
  http://rt.cpan.org/Ticket/Display.html?id=36326
! Makefile.PL
  s{INC => "-I./Encode"}
   {INC         => '-I' . File::Spec->catfile( '.', 'Encode' )}
  To prevent some platforms from forgetting to include Encode/encode.h.
  http://rt.cpan.org/Ticket/Display.html?id=36348

2.25 2008/05/07 20:56:05
! Encode.pm
  added ':default' to Exporter option.
! lib/Encode/GSM0338.pm
  GSM0338 now handles coderef in CHECK
  http://rt.cpan.org/Ticket/Display.html?id=31335
! Makefile.PL
  Perl 5.10/Encode 2.24: Tiny typo in Encode's Makefile.PL arg processing
  Message-Id: <961C2A4F-92B3-416D-A9F9-E7B0ADA9F134@fsck.com>
! lib/Encode/Alias.pm
  "This fix for Encode::Alias should make Solaris happy:"
  Message-ID: <47D886D9.6060001@iki.fi>

2.24 2008/03/12 09:51:11
! lib/Encode/Config.pm
  adds and  fixes also adds cp858 support.
! Encode.pm encoding.pm lib/Encode/Alias.pm ucm/cp858.ucm
  Merged perl@33486.
  > Change 33486 by rgs@scipion on 2008/03/12 08:50:11
    An unfortunate side-effect of Encode and Encode::Alias use'ing each
    other, and Encode::Alias exporting functions into Encode for it to use
    as methods, broke the loading of the find_alias() Encode method in some
    cases since 5.10. Breaking the recursive inheritance fixes it.
  Message-Id: <b77c1dce0803120151o4166c3a0gfcfd14681ab7e10d@mail.gmail.com>
! Encode.pm
  POD fix by tels
  Message-Id: <200711281835.36125@bloodgate.com>
! bin/ucmlint
  Fix by MIYAGAWA via CodeRepos
  http://coderepos.org/share/changeset/1791
! encoding.pm t/mime_header_iso2022jp.t
  ported back from Perl 5.10-RC1

2.23 2007/05/29 18:15:32
! Encode.xs
  got rid of global fallback_cb; encode_method() now takes one more
  argument which is a coderef to fallback.  This should make
  encode_method() thread-safe.
! Encode.pm
  Added perluniintro, perlunifaq, and perlunitut to POD
! Encode.xs
  Plug a memory leak in Encode -- by rgs
  Message-Id: <b77c1dce0705290858v2be239c3o2d726e3d59091493@mail.gmail.com>
! Unicode/Unicode.pm
  POD fixes on UTF-16LE
  http://aspn.activestate.com/ASPN/Mail/Message/perl5-porters/3486118
! Makefile.PL
  man page generation is now conditional; yes by default but no if $PERL_CORE
  Message-Id: <b77c1dce0705290237h5c4667cdlf79a48b839170add@mail.gmail.com>

2.22 2007/05/29 07:35:27
! Encode.pm
  from_to() does not honor the check while decoding.  That's a feature.
  To make sure it is a feature it is mentioned in the POD.
  http://rt.cpan.org/NoAuth/Bug.html?id=27277
! Makefile.pl
  Encode used to suppress man page generation.  Now it does.
  http://rt.cpan.org/NoAuth/Bug.html?id=27200
! Encode.pm Encode.xs t/fallback.t
  Addressed: (de|en)code("ascii", "\x{3000}", sub{ $_[0] }) segfaults
  Reported by MIYAGAWA

2.21 2007/05/12 06:42:19
+ lib/Encode/MIME/Name.pm t/mime-name.t
! Encode.pm Encode.xs lib/Encode/Encoding.pm
  new method: mime_name()
  inspired by: MIYAGAWA
! t/encoding.t
  Subject: Re: Compress::Zlib, pack "C" and utf-8 [PATCH]
  From: Marc Lehmann <schmorp@schmorp.de>
  Date: Thu, 12 Apr 2007 08:41:53 +0200
  Message-ID: <20070412064153.GA22475@schmorp.de>
  http://public.activestate.com/cgi-bin/perlbrowse/p/31194
! Unicode/Unicode.pm
  POD fix.
  Message-Id: <20070417220547.GA11999@zetta.zet>

2.20  2007/04/22 14:56:12
! Encode.pm
  Pod fixes.  Now find_encoding() is explained more in details.
+ lib/Encode/GSM0338.pm
- ucm/gsm0338.ucm
! lib/Encode/Supported.pod lib/Encode/Config.pm Bytes/Makefile.PL t/gsm0338.t
  ESTI GSM 03.38 support is relocated from Encode::Byte to Encode::GSM0338.
  This encoding is so kaputt it is unfit for Encode::XS!
  Though it was okay for general cases and escape sequences,
  '\0' => '@' IFF '\0\0' => '\0' had gliches.
  So kaputt even t/gsm0338 wrongly interpreted that.
  ref. http://www.csoft.co.uk/sms/character_sets/gsm.htm
! encoding.pm t/Aliases.t
  Imported from bleedperl #31015

2.19 2007/04/06 12:53:41
! lib/Encode/JP/JIS7.pm
+ t/jis7-fallback.t
  encode('iso-2022-jp') fallback support added by MIYAGAWA++
  decode()'s fallback remains unchanged (FB_PERLQQ) since UTF-8
  contains all characters in iso-2022-jp so there's no need for fancy stuff.
  Message-Id: <693254b90704060526s6d850320h71cdda50dfbf7eba@mail.gmail.com>
! Encode.pm
  #25216 ([PATCH] Encode.pm: postpone the load of Encode::Encoding)
  http://rt.cpan.org/NoAuth/Bug.html?id=25216
! lib/Encode/MIME/Header.pm t/mime-header.t
  #24418 (Encode::MIME::Header: wrong encoding with latin1 characters)
  http://rt.cpan.org/NoAuth/Bug.html?id=24418
! Encode.pm
  #23876 (Add documentation for LEAVE_SRC)
  http://rt.cpan.org/NoAuth/Bug.html?id=23876
! lib/Encode/Alias.pm t/Aliases.t
  #20781: Thai encoding needs alias for tis-620
  http://rt.cpan.org/NoAuth/Bug.html?id=20781
! bin/piconv AUTHORS
  #20344: piconv: wrong conversion of utf-16le encoded files (with PATCH)
  http://rt.cpan.org/NoAuth/Bug.html?id=20344
! Encode.pm Encode.xs bin/enc2xs encoding.pm t/Aliases.t t/utf8strict.t
  Imported from bleedperl's 2.18_01
2008-07-22 13:39:18 +00:00
rhaen
02425c7322 Updated mail/p5-Email-Simple-Creator 2008-07-22 13:34:34 +00:00
rhaen
5b73ce14d4 updated to 1.424
fixed dependency to new module mail/p5-Email-Date-Format

ChangeLog:

Revision history for Email-Simple-Creator

1.424     2007-11-30
          replace Email::Date prereq with Email::Date::Format

1.423     2007-11-01
          update Email::Simple prereq version
          * https://rt.cpan.org/Ticket/Display.html?id=28520

1.422     2007-07-13
          fixed header: why was it creating LFCR?
          normalize line endings to CRLF in body
          improve reliability of existing line-ending code
          improve tests
          packaging improvements

1.420     2007-02-23
          reduce use of unneeded variables during creation
          fix bugs that skipped creating headers with false values
          use standard crlf for creating mail
            A changelog entry below indicates that this was not the goal, but
            all the code seems as if it was meant to do this.  There was a bug
            in the logic, and there were no tests.

1.41      2006-07-03
          don't use no_plan in test; it breaks under old Test::More
          (applied by RJBS, thanks to LTHEGLER)
2008-07-22 13:33:46 +00:00
rhaen
7f0ee84c63 updated mail/p5-Email-Send 2008-07-22 13:31:13 +00:00
rhaen
8053ba0461 updated to 2.192
ChangeLog:

2.192     2007-11-01
          horrible hack to fix regrettable decision in use of Module::Pluggable
            (see https://rt.cpan.org/Ticket/Display.html?id=30183)

2.191     2007-10-21
          use Test mailer, not IO::All, to test internal interfaces
            (thanks, Andreas)

2.190     2007-09-18
          fix bugs exposed by new Test::More

2.189     2007-09-17
          fix bugs exposed by new Test::More

2.188     2007-06-19
          added ->deliveries to Test mailer

2.187     2007-04-05
          Email::Send::IO removed to Email-Send-IO distribution

2.186     2007-04-02
          fix test libraries to work on 5.005
2008-07-22 13:30:24 +00:00
rhaen
115eddba94 Updated mail/p5-Email-MessageID 2008-07-22 13:26:25 +00:00
rhaen
a79aa0a6aa updated to 1.351
added dependency to p5-Sys-Hostname-long

ChangeLog:
1.351     2007-03-22
          packaging improvements

1.35      2006-07-11
          Fixed version required for Sys::Hostname (thanks BARBIE)
          plan tests (for compat with older harnesses)
          keep a unique per pid part to fend of encroaching collisions (rjbs)
          remove ineffective caching mechanism (rjbs)
2008-07-22 13:25:40 +00:00
rhaen
f9abfd844e Updated mail/p5-Email-MIME-Modifier 2008-07-22 13:21:33 +00:00
rhaen
9a74c1eda8 updated to 1.442
took maintainership

ChangeLog:
1.442     2006-08-04
          correct body_set behavior to handle refs
          reformat changelog to standard PEP format
          completely horrible fix to prevent re-encoding of encoded text during
          creation

1.441     2006-11-28
          avoid warnings on part counting

1.440     2006-08-04
          don't make a singepart message if told to make a multipart

1.43      2006-07-13
          reliable ordering of content-type attributes (bug 9206)
          improve handling of one-part messages
          plan all tests
2008-07-22 13:20:47 +00:00
wiz
427c09c578 Fix a typo, and remove information that will get outdated soon. 2008-07-22 13:14:21 +00:00
rhaen
7f2b8633fb Added mail/p5-Email-Date-Format, Updated mail/p5-Email-Date 2008-07-22 12:36:00 +00:00
rhaen
b47a717143 updated to 1.103
took maintainership
added missing dependencies to p5-Email-Abstract, p5-Email-Date-Format

ChangeLog:
1.103   2007-11-30
        generation of dates now done by Email::Date::Format

1.102   2007-03-22
        remove uneeded dep on Email::Simple
        packaging improvements

1.101   2006-08-01
        fix a bug in testing; tests would only pass in second 2/3 of month
        (thanks Danial Pearce)

1.10    2006-07-21
        add format_gmdate
        if no date was found, return undef, not the current time
        tests
        list Email::Abstract as a prereq
2008-07-22 12:34:18 +00:00
rhaen
e3cd34dca1 forgot to add DESTDIR support, typo 2008-07-22 12:30:59 +00:00
rhaen
64a7f48e7c added mail/p5-Email-Date-Format to fix pkg mail/Email-Date
This module provides a simple means for generating an RFC
2822 compliant datetime string. (In case you care, they're
not RFC 822 dates, because they use a four digit year,
which is not allowed in RFC 822.)
2008-07-22 12:28:30 +00:00
rhaen
ed91f5dec5 Updated mail/p5-Email-Address 2008-07-22 11:11:18 +00:00
rhaen
728a1fd84d updated to 1.889
took maintainership

ChangeLog:
Release history for Email-Address

1.889     2007-12-19
          even if the phrase needed quoting, do not return quoted phrase from
          the phrase method

1.888     2007-04-01
          rt 16320 - collapse multiple whitespaces to prevent speed problem
          rt 24161 - forbid backslash in dot-atom

1.887     2007-04-01
          fix a test to prevent failure on 5.005

1.886     2007-03-01
          fix stupid use/require bug in test

1.885     2007-02-28
          do not quote the phrase if it's MIME encoded
          do not double quote the phrase
          thanks to MIYAGAWA and KEVINR for tests for the above!

1.884     2006-12-04
          fix phrase-quoting behavior by always quoting the phrase, if given
          this fixes bug 13387; thanks, Dave Rolsky!

1.883     2006-11-25
          resolve bug 23565, as_string didn't work on 5.8.0 (weird!)
          improve skip behavior for cache-cow.t with older Scalar::Util
          restore as_string
          issue deprecation warning if $STRINGIFY is changed

1.882     2006-11-22
          fix bug 21270, do not allow changes to objects to pollute the cache
          packaging improvements
          make test suite easier to manage
          improve honesty of documentation (we are not complete, (yet))

1.881     2006-11-20
          Basically: fixes a case where regex never returns.
          resolve bug 23187 by slighly diluting the solution to 22991, which is
            a more marginal problem than that of 23187, in practical terms

1.880     2006-11-11
          resolve bug 22991, support obs-phrase construct
          this creates a significant slowdown, sadly, but nothing to rival bug
            16320

1.871     2006-10-12
1.870     2006-08-10
          restore as_string
          issue deprecation warning if $STRINGIFY is changed

1.86      2006-07-21
          update docs
          tweak regex for approximate 50% performance boost
          ...but bug 16320 is still true: Email::Address can be VERY slow
          https://rt.cpan.org/Ticket/Display.html?id=16320


1.85      2006-07-07
          add disable_cache and enable_cache methods (bug 19163, thanks ADAMK)
2008-07-22 11:10:04 +00:00
agc
d998991c16 Document CREATE_WRKDIR_SYMLINK, prompted by Tobias Nygren. 2008-07-22 10:39:36 +00:00
hubertf
3759189731 Document how to auto-load the plugin 2008-07-22 09:56:17 +00:00
he
88c5956603 Note additions of
net/ldns version 1.3.0
net/drill version 1.0-pre3
2008-07-22 08:43:45 +00:00
he
ce550e619a Add drill and ldns. 2008-07-22 08:41:46 +00:00
he
2f9c445286 Um, get rid of warnings from pkglint by setting USE_LIBTOOL and fixing
up buildlink3.mk.  Also, removed some commented-out irrelevant stuff from
Makefile.
2008-07-22 08:40:24 +00:00
he
fb6b72e8e0 Import drill version 1.0-pre3 from NLnet Labs, as embedded in ldns-1.3.0.
Drill is a tool ala dig from BIND. It was designed with DNSSEC in
mind and should be a useful debugging/query tool for DNSSEC.

A lot of DNS debugging is done with dig, but as dig is made with
the same libraries as BIND8/9 (the most used DNS server out there),
what are you actually debugging/testing? Drill has nothing in common
with either NSD nor BIND. During the development process we are
actually uncovering obscure bugs in NSD and BIND (and in drill
itself).
2008-07-22 08:32:33 +00:00
he
41aa14b35c Import ldns version 1.3.0 from NLnet Labs.
The goal of ldns is to simplify DNS programming, it supports recent
RFCs like the DNSSEC documents, and allows developers to easily
create software conforming to current RFCs, and experimental software
for current Internet Drafts. A secondary benefit of using ldns is
speed; ldns is written in C it should be a lot faster than Perl.
2008-07-22 08:29:06 +00:00
rhaen
c698b23d01 updated devel/p5-Error 2008-07-22 08:06:31 +00:00
rhaen
bc524e6183 Updated devel/p5-Error 2008-07-22 08:06:01 +00:00
rhaen
4cd8ed85d7 updated to 0.17015
ChangeLog:
Jul 19 2008 <shlomif@iglu.org.il> (Shlomi Fish)

  Error.pm #0.17015
  - Added the "SEE ALSO" section to the Error.pm POD mentioning
  Exception::Class and Error::Exception.
2008-07-22 08:05:15 +00:00
rhaen
f5122c639a Updated devel/p5-Devel-StackTrace 2008-07-22 08:02:42 +00:00
rhaen
c44f7c7596 updated to 1.1902
took maintainership

ChangeLog:
1.1902  Jul 16, 2008

- This release just contains another test fix.

- The new tests for bad utf-8 apparently fail with any Perl before
  5.8.8. Reported by Lee Heagney. RT #37702.
2008-07-22 08:01:34 +00:00
dholland
087a98299d Use mk/x11.buildlink3.mk when X11 isn't modular. Allows use of native libXvMC.
Patch stolen from libXv's b3.mk.
2008-07-22 03:21:38 +00:00