Thu Jan 8 13:22:24 2009 UTC ()
Update to 4.05:

4.05 Sat Jul 06 2008: - Balint Szilakszi <szbalint at cpan.org>

    - Corrected the duphandle mechanism.
    - Fixed a typo (fixes RT #37253).
    - Added better Windows compatibility detection and separate
      installation instructions (thanks to Shiyu Tang).

4.04 Sat Jun 21 2008: - Balint Szilakszi <szbalint at cpan.org>

    - Test::More and use_ok at begin time doesn't mesh with no plan.

4.03 Sat Jun 21 2008: - Balint Szilakszi <szbalint at cpan.org>

    - Removing option to pass destination files as a typeglob as
      it is a backwards pointing magic and caused bugs.
      Use a filehandle or reference instead.
    - Fixed tests for 5.6, raised minimum Perl version to 5.6.1 due to tests.
    - Fixed a duphandle bug.

4.02 Thu Jun 19 2008: - Balint Szilakszi <szbalint at cpan.org>

    - Adding forgotten backwards compatibility with older Perl versions

4.01 Wed Jun 18 2008: - Balint Szilakszi <szbalint at cpan.org>

    - Reimplemented callback handling to fix several I/O issues (fixes RT #35491)
    - Documentation showing example WWW::Curl::Multi usage is corrected (fixes RT #35520)
    - Should now compile on HP-UX and OSX (fixes RT #36058 and #35349)
    - POD validity fix (fixes RT #15850)
    - Added several new tests
    - Upgraded to Module::Install 0.75 as it now exits correctly on build time
      with NA if the required libcurl isn't available.

4.00 Wed Mar 05 2008: - Balint Szilakszi <szbalint at cpan.org>
    - Rewritten documentation.
    - New test suite.
    - New build system: using Module::Install instead of ExtUtils::Makemaker.
    - New minimal requirements, Perl 5.6 and libcurl 7.10.8.
    - New WWW::Curl::Multi interface.
    - Removed WWW::Curl::easy.
    - Removed compatibility code for pre 7.10.8 libcurl.
    - Added lots of small improvements to setopt and friends.
    - Bugfixes, mainly for memory leaks.
    - SIGNATURE.

3.12 Wed Feb 27 2008: - Cris Bailiff <c.bailiff+curl at devsecure.com>
    - New Share.pm.in was missed from the MANIFEST, so was not in the distribution. Fixed.

3.11 Mon Feb 25 2008: - Cris Bailiff <c.bailiff+curl at devsecure.com>
    - Merge recent contributions.
    - Updates from various small bug/build reports

3.10 Fri Feb 22 2008: - Anton Fedorov <datacompboy at mail.ru>
    - Fix documentation for multi interface
    - Added WWW::Curl::Share
    - Added strerror into Easy and Multi interfaces
    - Added support for CURLOPT_DEBUGFUNCTION in Easy interface

3.02_01 Tue Jan 29 2008: - Mark Hindley
    - Contributed CURLOPT_*_LARGE support

3.02_00 Fri Sep 16 2005: - Cris Bailiff <c.bailiff+curl at devsecure.com>
    - Workaround case-sensitive filename issues by making equivalent Easy
      names in easy namespace
    - Test scripts - Fixup ssl tests and remove leftover MUTE option
    - NOTE: That due to namespace changes (easy->Easy) you must change any existing
      code to 'use WWW::Curl::Easy' instead of 'use WWW::Curl::easy', but
      you can still use the WWW::Curl::easy function names until they
      are removed in a future release.
    - Tested on Redhat EL3 (curl 7.10.6) and Mandrake 10.1 (curl 7.13.1)

3.01  Thu Apr 20 2004: - Cris Bailiff <c.bailiff+curl at devsecure.com>
    - Merged Sebastians changes into CVS
    - Updated remaining tests to Test::Simple
    - Added backwards compatability to V2 names (WWW::Curl::easy etc)
    - Dropped backwards compatability to V1.x names

3.00  Thu Feb 12 2004: - Sebastian Riedel <sri at oook.de>
    - Added multi support
    - New module names
    - New tests
    - New documentation
    - New examples
    - Big cleanup!!!
    - Too much to tell, it's worth an upgrade


(wiz)
diff -r1.9 -r1.10 pkgsrc/www/p5-WWW-Curl/Makefile
diff -r1.3 -r1.4 pkgsrc/www/p5-WWW-Curl/distinfo

cvs diff -r1.9 -r1.10 pkgsrc/www/p5-WWW-Curl/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/www/p5-WWW-Curl/Attic/Makefile 2008/10/19 19:19:24 1.9
+++ pkgsrc/www/p5-WWW-Curl/Attic/Makefile 2009/01/08 13:22:24 1.10
@@ -1,23 +1,22 @@ @@ -1,23 +1,22 @@
1# $NetBSD: Makefile,v 1.9 2008/10/19 19:19:24 he Exp $ 1# $NetBSD: Makefile,v 1.10 2009/01/08 13:22:24 wiz Exp $
2# 2#
3 3
4DISTNAME= WWW-Curl-2.0 4DISTNAME= WWW-Curl-4.05
5PKGNAME= p5-${DISTNAME} 5PKGNAME= p5-${DISTNAME}
6PKGREVISION= 5 
7CATEGORIES= www perl5 6CATEGORIES= www perl5
8MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=WWW/} 7MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=WWW/}
9 8
10MAINTAINER= imil@gcu.info 9MAINTAINER= imil@gcu.info
11HOMEPAGE= http://curl.haxx.se/libcurl/perl/ 10HOMEPAGE= http://search.cpan.org/dist/WWW-Curl/
12COMMENT= Perl binding interface for curl 11COMMENT= Perl binding interface for curl
13 12
14DEPENDS+= curl>=7.12.1:../../www/curl 13DEPENDS+= curl>=7.10.8:../../www/curl
15 14
16PKG_INSTALLATION_TYPES= overwrite pkgviews 15PKG_INSTALLATION_TYPES= overwrite pkgviews
17PKG_DESTDIR_SUPPORT= user-destdir 16PKG_DESTDIR_SUPPORT= user-destdir
18 17
19PERL5_PACKLIST= auto/WWW/Curl/.packlist 18PERL5_PACKLIST= auto/WWW/Curl/.packlist
20 19
21.include "../../www/curl/buildlink3.mk" 20.include "../../www/curl/buildlink3.mk"
22.include "../../lang/perl5/module.mk" 21.include "../../lang/perl5/module.mk"
23.include "../../mk/bsd.pkg.mk" 22.include "../../mk/bsd.pkg.mk"

cvs diff -r1.3 -r1.4 pkgsrc/www/p5-WWW-Curl/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/www/p5-WWW-Curl/Attic/distinfo 2006/12/20 13:28:59 1.3
+++ pkgsrc/www/p5-WWW-Curl/Attic/distinfo 2009/01/08 13:22:24 1.4
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.3 2006/12/20 13:28:59 obache Exp $ 1$NetBSD: distinfo,v 1.4 2009/01/08 13:22:24 wiz Exp $
2 2
3SHA1 (WWW-Curl-2.0.tar.gz) = 1b499e1419d89111e8b52adfdee02a09b184f83d 3SHA1 (WWW-Curl-4.05.tar.gz) = 1d0eb6d4f1d9c29d8035fc94a6c0811f6c79fc59
4RMD160 (WWW-Curl-2.0.tar.gz) = aaeb46c2af276f84fd8dd23c841fa3cd23762908 4RMD160 (WWW-Curl-4.05.tar.gz) = af4333bf95e4435eeb1a3180844dc47624d417e9
5Size (WWW-Curl-2.0.tar.gz) = 22546 bytes 5Size (WWW-Curl-4.05.tar.gz) = 40162 bytes
6SHA1 (patch-aa) = ddfb9426e704e5abd632e35b2278b547efb8c3b3 6SHA1 (patch-aa) = ddfb9426e704e5abd632e35b2278b547efb8c3b3