Commit graph

144341 commits

Author SHA1 Message Date
sno
54be8626f4 pkgsrc changes:
- Updating package for p5 module Catalyst::Model::DBIC::Schema from
    0.23 to 0.25
  - Setting LICENSE=${PERL5_LICENSE} according META.yml
  - Adjusting dependencies according to META.yml

Upstream changes:
0.25  Fri Jun 19 08:35:38 PDT 2009
	- fix dep on Tie::IxHash that made tests fail
	- add more attributes to ::Replicated trait
        - fixed infinte loop in helper if SQLite connect_info has only
	  a DSN (dandv, RT #47101)

0.24  Tue Jun 16 06:18:58 PDT 2009
        - Add tests for issues with Class::C3 which are caused to
          applications which use new Catalyst but old DBIC, and have
          use Class::C3 in the MyApp class (t0m)
        - die on empty schema
        - create=dynamic deprecation warning
        - helper passes loader opts to dynamic schemas
        - conversion to Moose
        - cursor caching support (via
          Catalyst::TraitFor::Model::DBIC::Schema::Caching)
        - ::Storage::Replicated support (via ::Replicated trait)
        - switch to hashref connect_info for DBIC 8100
        - better helper option parsing, with support for more options
        - more tests
2009-07-07 20:22:54 +00:00
joerg
c1bf38d403 user-destdir support 2009-07-07 20:21:37 +00:00
sno
2280aeb618 Updated databases/p5-DBD-mysql to 4.012 2009-07-07 20:17:57 +00:00
sno
7942ccfe15 pkgsrc changes:
- Updating package for p5 module DBD::mysql from 4.010 to 4.012
  - Setting LICENSE=${PERL5_LICENSE}

Upstream changes:
2009-06-18 Patrick Galbraith <patg@patg.net> (4.012)

* Patch to bind_type_guessing from Craigslist,
  Thanks to Chris! Happiness is no quoted numbers.
  Fixed ChopBlanks to work with bind_type_guessing
* Patch for win32 strawberry build
  Thanks to Curtis Jewell! Windows needs love
* Patch for auto-reconnect to set active flag
  Thanks to Doug Fischer!
* Fixed bug 32464 http://bugs.mysql.com/bug.php?id=32464.
  See https://rt.cpan.org/Ticket/Display.html?id=46308
  Add connection flag mysql_no_autocommit_cmd which users of
  MySQL Proxy can use to prevent 'set autocommit=#' from being
  issued by the driver. 'perldoc DBD::mysql' to see how to use
  this new flag
* Added bind-type-guessing options to Makefile.PL so the entire
  test suite can be run with bind_type_guessing set.

2009-04-13 Patrick Galbraith <patg@patg.net> (4.011)
* Renamed unsafe_bind_type_guessing, fixed some of the logic. This
can be used to deal with bug 43822
(https://rt.cpan.org/Ticket/Display.html?id=43822)
* Patch from Daniel Frett (daniel Dot frett At ccci Dot org) to fix
issue of binding sever side integer parameters (server-side prepare
statements) resulting in corrupt data, bug 42723
(https://rt.cpan.org/Ticket/Display.html?id=42723)
* Updated documentation, cruft cleanup (as always)
2009-07-07 20:17:11 +00:00
sno
5f38de1af4 Updated finance/p5-Finance-Currency-Convert-WebserviceX to 0.07001 2009-07-07 20:14:45 +00:00
sno
7e58cbea75 pkgsrc changes:
- Updating package for p5 module of Finance::Currency::Convert::WebserviceX
    from 0.07000 to 0.07001
  - Setting LICENSE=${PERL5_LICENSE} according to META.yml
  - Using Module::Install as module type

Upstream changes:
0.07001 Sun May 2410:32:43 2009
    - Fixed problem with result cache: #RT46216 - (DELTA) Christian Lackas
2009-07-07 20:14:07 +00:00
joerg
68a7b2fffb user-destdir support 2009-07-07 20:10:32 +00:00
sno
0fb978b589 Updated devel/p5-File-Temp to 0.22 2009-07-07 20:08:40 +00:00
sno
3b406274e6 Updating package of p5 module File::Temp from 0.21 to 0.22
Setting license to ${PERL5_LICENSE}

Upstream changes:
V0.22
      + Portability fixes in t/fork.t provided by perl5-porters.
2009-07-07 20:08:05 +00:00
joerg
d8fa278198 user-destdir support 2009-07-07 20:07:00 +00:00
sno
93549717b0 Updated devel/p5-Perl-Tidy to 20090616 2009-07-07 20:06:16 +00:00
sno
1b6ac1b07c pkgsrc changes:
- Updating Perl-Tidy from 20071205 to 20090616
  - Setting license to gnu-gpl-v2

Upstream changes:
  2009 06 16
     - Allow configuration file to be 'perltidy.ini' for Windows systems.
       i.e. C:\Documents and Settings\User\perltidy.ini
       and added documentation for setting configuation file under Windows in man
       page.  Thanks to Stuart Clark.

     - Corrected problem of unwanted semicolons in hash ref within given/when code.
      Thanks to Nelo Onyiah.

     - added new flag -cscb or --closing-side-comments-balanced
      When using closing-side-comments, and the closing-side-comment-maximum-text
      limit is exceeded, then the comment text must be truncated.  Previous
      versions of perltidy terminate with three dots, and this can still be
      achieved with -ncscb:

   perltidy -csc -ncscb

       } ## end foreach my $foo (sort { $b cmp $a ...

  However this causes a problem with older editors which cannot recognize
      comments or are not configured to doso because they cannot "bounce" around in
      the text correctly.  The B<-cscb> flag tries to help them by
      appending appropriate terminal balancing structure:

   perltidy -csc -cscb

       } ## end foreach my $foo (sort { $b cmp $a ... })

  Since there is much to be gained and little to be lost by doing this,
      the default is B<-cscb>.  Use B<-ncscb> if you do not want this.

      Thanks to Daniel Becker for suggesting this option.

     - After an isolated closing eval block the continuation indentation will be
       removed so that the braces line up more like other blocks.  Thanks to Yves Orton.

     OLD:
        eval {
            #STUFF;
            1;    # return true
          }
          or do {
            #handle error
          };

     NEW:
        eval {
            #STUFF;
            1;    # return true
        } or do {
            #handle error
        };

     -A new flag -asbl (or --opening-anonymous-sub-brace-on-new-line) has
      been added to put the opening brace of anonymous sub's on a new line,
      as in the following snippet:

        my $code = sub
        {
            my $arg = shift;
            return $arg->(@_);
        };

      This was not possible before because the -sbl flag only applies to named
      subs. Thanks to Benjamin Krupp.

     -Fix tokenization bug with the following snippet
       print 'hi' if { x => 1, }->{x};
      which resulted in a semicolon being added after the comma.  The workaround
      was to use -nasc, but this is no longer necessary.  Thanks to Brian Duggan.

     -Fixed problem in which an incorrect error message could be triggered
     by the (unusual) combination of parameters  -lp -i=0 -l=2 -ci=0 for
     example.  Thanks to Richard Jelinek.

     -A new flag --keep-old-blank-lines=n has been added to
     give more control over the treatment of old blank lines in
     a script.  The manual has been revised to discuss the new
     flag and clarify the treatment of old blank lines.  Thanks
     to Oliver Schaefer.
2009-07-07 20:05:26 +00:00
joerg
669b52f070 user-destdir support 2009-07-07 20:04:17 +00:00
sno
bac30d9d74 Updated www/p5-WWW-Amazon-Wishlist to 1.602 2009-07-07 20:03:12 +00:00
sno
99395bc79b Updating package for p5 module WWW::Amazon::WishList from 1.6.1 to 1.6.2
and set license to ${PERL5_LICENSE} as well as correcting dependencies.

Upstream changes:
- The only change since December was I removed a reference to File::Slurp
2009-07-07 20:02:19 +00:00
joerg
4fd04e3cb8 user-destdir support 2009-07-07 20:00:27 +00:00
sno
560ebd0f2e Updated devel/p5-UNIVERSAL-isa to 1.03 2009-07-07 19:59:18 +00:00
sno
98fed7613c Updating package for p5 module UNIVERSAL::isa from 1.02 to 1.03
Upstream changes:
1.03  Mon Jun 22 20:42:36 UTC 2009
    - improved packaging (Module::Build is now a config_requires dependency)
2009-07-07 19:58:41 +00:00
joerg
e0db3e5040 user-destdir support 2009-07-07 19:58:19 +00:00
sno
d0387e0e7a Updated devel/p5-UNIVERSAL-can to 1.15 2009-07-07 19:56:53 +00:00
sno
cf74b170d0 Updating package for p5 module UNIVERSAL::can from 1.14 to 1.15
Upstream changes:
1.15  Mon Jun 22 20:39:48 UTC 2009
    - moved Module::Build dependency to config_requires (RT #47165, hdp)
    - unified licensing between README and module (RT #46934, nhandler)
2009-07-07 19:56:24 +00:00
joerg
fcd364d33c user-destdir support 2009-07-07 19:55:43 +00:00
sno
01241fdf0d Updated net/arping to 2.08 2009-07-07 19:53:36 +00:00
sno
cfa6cbac0a Updating net/arping from 2.05nb1 to 2.08, setting license to gnu-gpl-v2
Upstream changes:
Not logged
2009-07-07 19:53:00 +00:00
joerg
9139f52251 user-destdir support 2009-07-07 19:46:23 +00:00
sno
76ad67f5c6 Updated www/p5-Template-Toolkit to 2.21 2009-07-07 19:46:20 +00:00
joerg
6b6a87486f user-destdir support 2009-07-07 19:46:03 +00:00
sno
973708113c pkgsrc changes:
- Updated package for p5 module Template::Toolkit from 2.20 to 2.21
  - Set license to perl license according to META.yml
  - Adjusting dependencies according to META.yml

Upstream changes:
#-----------------------------------------------------------------------
# Version 2.21 - 30th June 2009
#------------------------------------------------------------------------

* Fixed a PRE_CHOMP bug that left \r characters lying around when
  confronted with templates with DOS \r\n line endings.
  https://rt.cpan.org/Ticket/Display.html?id=43345

* Applied patch from Bradley Baetz to fix defblock #line numbers
  http://rt.cpan.org/Public/Bug/Display.html?id=47024


#-----------------------------------------------------------------------
# Version 2.20_4 (2.21 candidate) - 21st May 2009
#------------------------------------------------------------------------

* Added the even(), odd() and parity() methods to Template::Iterator to
  assist in making zebra tables.

* Removed a post-5.6 perlism in Template::Context that broke on 5.6.2
  https://rt.cpan.org/Ticket/Display.html?id=46250

* Replaced a whole bunch of UNIVERSAL::isa() calls with blessed/isa

* Applied a patch from Norbert Buchm"uller to prevent the #line markers
  from being whitespaced away from the first column.
  https://rt.cpan.org/Ticket/Display.html?id=46269

* Applied a patch from Denis F. Latypoff to fix uri/url filters with
  utf8 text
  https://rt.cpan.org/Ticket/Display.html?id=41173


#-----------------------------------------------------------------------
# Version 2.20_3 (2.21 candidate) - 20th May 2009
#------------------------------------------------------------------------

* Fixed the XS Stash to compile properly in threaded Perls.
  https://rt.cpan.org/Public/Bug/Display.html?id=46240

* Applied a patch to the XS Stash from Alexey A. Kiritchun to make the
  scalar.length vmethod work correctly with utf8 strings.
  http://lists.tt2.org/pipermail/templates/2009-May/010803.html


#-----------------------------------------------------------------------
# Version 2.20_2 (2.21 candidate) - 17th May 2009
#------------------------------------------------------------------------

* Applied a patch to Template::Test from Andrew Ford to make it skip
  properly.
  http://lists.tt2.org/pipermail/templates/2009-March/010678.html

* Changed the ttree -v/--verbose option so be less verbose and only
  report on things that have changed.  To make it more verbose (like
  previous versions), add a second -v/--verbose flag, e.g.

    $ ttree -v -v

* Also added the --summary option to tree to print a summary of what it
  did, and the --color/--colour option to make it print its verbose
  messages in colour (on ANSI terminals).

* Applied a ttree patch from Lyle Brooks to allow ttree to accept a
  directory name as a command line argument.

* Added the define_view() and define_views() method to Template::Context
  and added the VIEWS option to pre-define views when the Template object
  is created.  Thanks to Timmy Chan for providing the groundwork on this.
  http://lists.tt2.org/pipermail/templates/2009-April/010689.html

* Retrospectively fixed the Changes for 2.20 to mention the ttree
  --encoding option.

* Applied a patch from Chisel Wright, changing uses of UNIVERSAL::can()
  to use blessed() and ->can().
  http://lists.tt2.org/pipermail/templates/2009-May/010790.html

* Fixed a memory leak in the XS Stash introduced in 2.20.
  Thanks to Breno G. de Oliveira for reporting the problem and helping to
  narrow it down.
  https://rt.cpan.org/Public/Bug/Display.html?id=46058


#------------------------------------------------------------------------
# Version 2.20_1 (2.21 candidate) - 7th April 2009
#------------------------------------------------------------------------

* Deleted all the old HTML documentation (now available separately from
  http://tt2.org/download/index.html#html_docs), examples, libraries and
  other cruft that was way out of date and badly unloved.

* Tweaked Template::Parser to work better with the ANYCASE option.  It
  now knows that anything following a dotop cannot be a keyword so that
  you can write data.last without the 'last' bit being interpreted as the
  LAST keyword.  Thanks to Sean McAfee for the post that inspired it.
  http://lists.tt2.org/pipermail/templates/2008-September/010462.html

* Fixed a broken test for Apache::Util in the html_entity filter.  Added
  the use_html_entities() and use_apache_util() class methods to
  Template::Filters to allow end-user selection of one or the other.
  http://rt.cpan.org/Public/Bug/Display.html?id=40870
  http://template-toolkit.org/svnweb/Template2/revision/?rev=1177

* Tweaked Template::Context to recognise Badger::Exception objects and
  convert them to Template::Exception objects.  This is a temporary
  measure to keep things working during the transition to Badger-based
  modules.

* Added the STRICT option which will cause the stash to throw an
  exception on encountering an undefined value.  Thanks to Ben Tilly
  for the prod.

* Applied a patch to Template::Iterator from Jonathon Padfield to make
  get_all() do the right thing if get_first() hasn't been called.

* Applied a patch to Template::Stash::Context from Ben Tilly to make
  it easier to subclass.

* Applied a patch from Robin Berjon to add the xml filter.
2009-07-07 19:45:49 +00:00
joerg
c02006af45 user-destdir support 2009-07-07 19:41:54 +00:00
sno
89af795ce9 Updated www/p5-libwww to 5.828 2009-07-07 19:41:00 +00:00
sno
b6fbd099f4 pkgsrc changes:
- Updating package for p5 module LWP from 5.826 to 5.828

Upstream changes:
2009-06-25  Release 5.828

A quick new release to restore compatiblity with perl-5.6.


Gisle Aas (4):
      Less noisy behaviour when we can't download the documents
      Restore perl-5.6 compatiblity [RT#47054]
      Don't decode US-ASCII and ISO-8859-1 content
      Some versions of Encode don't support UTF-16-BE [RT#47152]

Ville Skytt"a (1):
      Spelling fixes.

2009-06-15  Release 5.827

The main news this time is better detection of what character set the document
in a response uses and the addition of the lwp-dump script that I found useful.


Gisle Aas (31):
      Added lwp-dump script
      Replace calls to $req->url with $req->uri
      Also need to encode strings in the latin1 range
      Ignore the value set for file inputs [RT#46911]
      Add docs to lwp-dump
      Don't let lwp-dump follow redirects
      Support --method options
      Implement the --agent option
      Dictionary order for the option docs; document --method
      Merge branch 'dump'
      Files are passed as an array and we must not stringify it.
      Add content_charset method to HTTP::Message
      Start guessing the charset for a message
      Let content_charset guess the charset to use for decoded_content
      Specify what's missing for the XML and HTML case
      Provide charset parameter for HTML::Form->parse()
      Make content_charset sniff for <meta> elements specifying the charset.
      Determine charset of XML documents
      Get rid of the _trivial_http_get() implementation
      Update the bundled media.types file
      LWP::Simple::get() now returns decoded_content [RT#44435]
      Implement content_type_charset method for HTTP::Headers
      Implement content_is_text method for HTTP::Headers
      Make use of content_is_text and content_type_charset in decoded_content
      Don't let the parse_head callback append to the HTTP headers
      Don't set Range header on request when max_size is used [RT#17208]
      Still show client headers for internal responses
      Document Client-Warning: Internal response
      Don't use 'no' as example domain for no_proxy docs [RT#43728]
      Drop exit from the Makefile.PL [RT#43060]
      Merge branch 'content_charset'

Alex Kapranoff (1):
      Support "accept-charset" attribute in HTML::Form

Mark Stosberg (1):
      new tests for max_size and 206 responses [RT#46230]

murphy (1):
      Reformulation of Client-Warning: Internal documentation
2009-07-07 19:40:30 +00:00
joerg
40467864b3 user-destdir support 2009-07-07 19:39:55 +00:00
sno
81df416be2 Updated www/p5-HTML-Parser to 3.61 2009-07-07 19:38:16 +00:00
sno
348fecb959 pkgsrc changes:
- Updating package for p5 module HTML::Parser from 3.60 to 3.61
  - Setting LICENSE=${PERL5_LICENSE} according to META.yml

Upstream changes:
2009-06-20  Release 3.61

Gisle Aas (2):
      Test that triggers the crash that Chip fixed
      Complete documented list of literal tags

Chip Salzenberg (1):
      Avoid crash (referenced pend_text instead of skipped_text)

Antonio Radici (1):
      Reference HTML::LinkExttor [RT#43164]
2009-07-07 19:37:39 +00:00
drochner
f22c94c827 +mp3val 2009-07-07 19:37:21 +00:00
drochner
eb3e713312 add mp3val-0.1.8, another mp3 checker 2009-07-07 19:36:19 +00:00
sno
d4947c1238 Added time/p5-Time-Format_XS version 1.03 2009-07-07 19:35:54 +00:00
joerg
476994b9b2 user-destdir support 2009-07-07 19:35:44 +00:00
sno
e7c0885036 Importing package for p5 module Time::Format_XS to get some speed up into
Time::Format.

Time::Format_XS, provides a huge performance improvement for the main
formatting function in Time::Format. This is the time_format function,
usually accessed via the %time hash.
2009-07-07 19:34:30 +00:00
joerg
c4c0d6cb11 user-destdir support 2009-07-07 19:34:24 +00:00
sno
5f3793c673 Updated time/p5-Time-Format to 1.11 2009-07-07 19:32:48 +00:00
joerg
7d4f8afe79 user-destdir support 2009-07-07 19:32:25 +00:00
sno
a6043baeb1 pkgsrc changes:
- updating package of p5 module Time::Format from 1.09 to 1.11
  - Adjusting depencencies according to META.yml (and Module::Corelist)

Upstream changes:
1.11  2009 June 18
        - Fix error in the new test (past.t) for v1.10!
        - Rearrange eval's throughout test code to rely on $@ less.

1.10  2009 June 17
        - Bug fix: Did not trim leading zero off the am/pm hour (H
          code) if the argument was a DateTime.  Thanks to Coke Coleda
          for spotting this.
2009-07-07 19:31:48 +00:00
joerg
fe85c6c670 user-destdir support 2009-07-07 19:31:32 +00:00
sno
da1522fc8b Updated time/p5-Time-Piece to 1.15 2009-07-07 19:28:24 +00:00
sno
11057f7fb9 pkgsrc changes:
- Updating package for p5 module of Time::Piece from 1.14 to 1.15
  - Correcting license (see module documentation)

Upstream changes:
1.15
    - Skip a test on Win32 that there's just no way of passing
    - Document the above failure
2009-07-07 19:27:57 +00:00
joerg
c88d7d952a user-destdir support 2009-07-07 19:26:27 +00:00
sno
35f470f895 Updated devel/p5-Array-Compare to 1.18 2009-07-07 19:25:02 +00:00
sno
c1ab52d75b pkgsrc changes:
- updating package for p5 module Array::Compare from 1.17 to 1.18
  - setting license to ${PERL5_LICENSE} according to META.yml

Upstream changes:
2009-06-14  Dave Cross  <dave@dave.org.uk>
	* lib/Array/Compare.pm: Bump version number for release.

2009-06-14  Dave Cross  <dave@dave.org.uk>
	* lib/Array/Compare.pm: Added version number.  Fixed
	  https://rt.cpan.org/Ticket/Display.html?id=45145

2009-06-14  Dave Cross  <dave@dave.org.uk>
	* Build.PL: Moved version setting into .pm.

2009-02-21  Dave Cross  <dave@dave.org.uk>
	* : Removed execute bit.

2008-06-29  Dave Cross  <dave@dave.org.uk>
	* Build.PL, lib/Array/Compare.pm: Added LICENSE section (for
	  cpants).
2009-07-07 19:24:34 +00:00
ahoka
319bd73313 Merge with my own update. 2009-07-07 19:23:48 +00:00