Sat Nov 21 15:28:36 2009 UTC ()
Updating net/p5-Net-Twitter from 3.06000nb1 to 3.09000

pkgsrc changes:
  - Adjusting dependencies according to META.yml and upstream changelog
  - Ensure that Module::Autoinstall won't fire

Upstream changes:
3.09000 2009-11-17
    - Bumped Net::OAuth requirement to 0.20 (hopefully resolves CPAN Testers failures)
    - Added users_search/find_people API method
    - Updated default apiurl: http://api.twitter.com/1
    - Deprecated apihost option to new
    - Fixed ssl handling for Lists API

3.08000 2009-11-02
    - return user_id and screen_name from request_access_token (Roberto Etcheverry)

3.07999_01 2009-10-23
    - Added experimental Lists API support

3.07004 2009-10-22
    - Fixed: cached request_token results in a stale authentication/authorization urls

3.07003 2009-10-13
    - Added new API method: report_spam

3.07002 2009-10-05
    - Documented the cursor parameter for friends, followers, friends_ids, and
      followers_ids.
    - Fixed: synthetic since parameter (could fail with multiple API traits defined)
    - Added support for since in YYYY-MM-DD format

3.07001 2009-09-28
    - Added specific versions for DateTime and DateTime::Format::Strptime (closes RT#50069)
    - better deps (Alexandr Ciornii)

3.07000 2009-09-22
    - added 'retweets' REST API method
    - added synthetic 'since' parameter
    - fixed: object inflation for Search API returns (different timestamp format!)


(sno)
diff -r1.6 -r1.7 pkgsrc/net/p5-Net-Twitter/Makefile
diff -r1.4 -r1.5 pkgsrc/net/p5-Net-Twitter/distinfo

cvs diff -r1.6 -r1.7 pkgsrc/net/p5-Net-Twitter/Makefile (expand / switch to unified diff)

--- pkgsrc/net/p5-Net-Twitter/Makefile 2009/09/24 06:50:17 1.6
+++ pkgsrc/net/p5-Net-Twitter/Makefile 2009/11/21 15:28:36 1.7
@@ -1,35 +1,39 @@ @@ -1,35 +1,39 @@
1# $NetBSD: Makefile,v 1.6 2009/09/24 06:50:17 sno Exp $ 1# $NetBSD: Makefile,v 1.7 2009/11/21 15:28:36 sno Exp $
2# 2#
3 3
4DISTNAME= Net-Twitter-3.06000 4DISTNAME= Net-Twitter-3.09000
5PKGNAME= p5-${DISTNAME} 5PKGNAME= p5-${DISTNAME}
6PKGREVISION= 1 
7CATEGORIES= net 6CATEGORIES= net
8MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Net/} 7MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Net/}
9 8
10MAINTAINER= peter@boku.net 9MAINTAINER= peter@boku.net
11HOMEPAGE= http://search.cpan.org/dist/Net-Twitter/ 10HOMEPAGE= http://search.cpan.org/dist/Net-Twitter/
12COMMENT= Perl interface to the Twitter API 11COMMENT= Perl interface to the Twitter API
13LICENSE= ${PERL5_LICENSE} 12LICENSE= ${PERL5_LICENSE}
14 13
15PKG_DESTDIR_SUPPORT= user-destdir 14PKG_DESTDIR_SUPPORT= user-destdir
16 15
17DEPENDS+= p5-Data-Visitor-[0-9]*:../../devel/p5-Data-Visitor 16DEPENDS+= p5-Data-Visitor-[0-9]*:../../devel/p5-Data-Visitor
18DEPENDS+= p5-DateTime-[0-9]*:../../time/p5-DateTime 17DEPENDS+= p5-DateTime>=0.5100:../../time/p5-DateTime
19DEPENDS+= p5-DateTime-Format-Strptime-[0-9]*:../../time/p5-DateTime-Format-Strptime 18DEPENDS+= p5-DateTime-Format-Strptime>=1.0900:../../time/p5-DateTime-Format-Strptime
20DEPENDS+= p5-HTML-Parser-[0-9]*:../../www/p5-HTML-Parser 19DEPENDS+= p5-HTML-Parser-[0-9]*:../../www/p5-HTML-Parser
21DEPENDS+= p5-JSON-Any>=1.21:../../converters/p5-JSON-Any 20DEPENDS+= p5-JSON-Any>=1.21:../../converters/p5-JSON-Any
 21DEPENDS*= p5-JSON-XS-[0-9]*:../../converters/p5-JSON-XS
22DEPENDS+= p5-Moose>=0.85:../../devel/p5-Moose 22DEPENDS+= p5-Moose>=0.85:../../devel/p5-Moose
23DEPENDS+= p5-MooseX-AttributeHelpers-[0-9]*:../../devel/p5-MooseX-AttributeHelpers 23DEPENDS+= p5-MooseX-AttributeHelpers-[0-9]*:../../devel/p5-MooseX-AttributeHelpers
24DEPENDS+= p5-MooseX-MultiInitArg-[0-9]*:../../devel/p5-MooseX-MultiInitArg 24DEPENDS+= p5-MooseX-MultiInitArg-[0-9]*:../../devel/p5-MooseX-MultiInitArg
25DEPENDS+= p5-Net-[0-9]*:../../net/p5-Net 25DEPENDS+= p5-Net-[0-9]*:../../net/p5-Net
26DEPENDS+= p5-Net-OAuth>=0.16:../../net/p5-Net-OAuth 26DEPENDS+= p5-Net-OAuth>=0.20:../../net/p5-Net-OAuth
27DEPENDS+= p5-URI>=1.40:../../www/p5-URI 27DEPENDS+= p5-URI>=1.40:../../www/p5-URI
28DEPENDS+= p5-libwww-[0-9]*:../../www/p5-libwww 28DEPENDS+= p5-libwww-[0-9]*:../../www/p5-libwww
29DEPENDS+= p5-namespace-autoclean>=0.09:../../devel/p5-namespace-autoclean 29DEPENDS+= p5-namespace-autoclean>=0.09:../../devel/p5-namespace-autoclean
30 30
 31BUILD_DEPENDS+= {perl>=5.10.1,p5-Test-Simple>=0.88}:../../devel/p5-Test-Simple
 32
31PERL5_PACKLIST= auto/Net/Twitter/.packlist 33PERL5_PACKLIST= auto/Net/Twitter/.packlist
32USE_LANGUAGES= # none 34USE_LANGUAGES= # none
 35#PERL5_MODULE_TYPE= Module::Install
 36MAKE_PARAMS= --skipdeps
33 37
34.include "../../lang/perl5/module.mk" 38.include "../../lang/perl5/module.mk"
35.include "../../mk/bsd.pkg.mk" 39.include "../../mk/bsd.pkg.mk"

cvs diff -r1.4 -r1.5 pkgsrc/net/p5-Net-Twitter/distinfo (expand / switch to unified diff)

--- pkgsrc/net/p5-Net-Twitter/distinfo 2009/09/19 17:45:47 1.4
+++ pkgsrc/net/p5-Net-Twitter/distinfo 2009/11/21 15:28:36 1.5
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.4 2009/09/19 17:45:47 sno Exp $ 1$NetBSD: distinfo,v 1.5 2009/11/21 15:28:36 sno Exp $
2 2
3SHA1 (Net-Twitter-3.06000.tar.gz) = 8ec1d7d8bceacf5d89a24cec156a1fb4f04af529 3SHA1 (Net-Twitter-3.09000.tar.gz) = a445dc3d53578777309cec0f1da67418e89d55cf
4RMD160 (Net-Twitter-3.06000.tar.gz) = 4ec80bdbd048209bc4cfa58e1ff74fa83fb58db7 4RMD160 (Net-Twitter-3.09000.tar.gz) = b438adeed5854b835ef53df31451c0a76f5f8871
5Size (Net-Twitter-3.06000.tar.gz) = 77925 bytes 5Size (Net-Twitter-3.09000.tar.gz) = 85656 bytes