(pkgsrc)
- Several DEPENDS+= update +DEPENDS+= p5-IO-Socket-SSL>=2.005:../../security/p5-IO-Socket-SSL -DEPENDS+= p5-JSON-Any>=1.21:../../converters/p5-JSON-Any +DEPENDS+= p5-JSON-[0-9]*:../../converters/p5-JSON +DEPENDS+= p5-LWP-Protocol-https-[0-9]*:../../www/p5-LWP-Protocol-https -DEPENDS+= p5-MooseX-Aliases-[0-9]*:../../devel/p5-MooseX-Aliases +DEPENDS+= p5-Net-HTTP>=6.06:../../www/p5-Net-HTTP - PERL5_MODULE_TYPE update ( Module::Install::Bundled -> Module::Build ) (upstream) - Update 3.18001 to 4.01008 ------------------------- 4.01008 2015-01-19 - Added REST API mithods muting, create_mute, destroy_mute (Ashley Willis) 4.01007 2015-01-07 - Added REST API method lookup_statuses (thanks SocialFlow) - Typo fixes (thanks Zaki Mughal) - Bumped IO::Socket::SSL requirement to 2.005; recent versions seem to fix an issue with stalled connections. 4.01006 2014-11-17 - Default `ssl => 1` - Added `mutes` (@pjcj on Github) 4.01005 2014-08-12 - Added upload_media for multi-image support (@ghathwar) 4.01004 2014-04-11 - PUT requires paramters in the message body, now (Samuel Kaufman) 4.01003 2014-03-12 - Net::Twitter::Error's twitter_error_text excludes stack trace line number 4.01002 2014-01-16 - Fix POD bugs 4.01001 2014-01-16 - Warn if ssl option to new is not passed (deprecation cycle) 4.01000 2013-11-19 - Add API method retweeters_ids - Fix update_with_media with utf8 status (RT#72814) - Expand Carp::Clan list (should resolve RT#77306) - Remove reliance on MooseX::Aliases (issue #35) - Use Class::Load to replace deprecated Class::Mop method (issue #35) - Add missing dependency: LWP::Protocol::https (issue #25) - Fix OAuth failure for UTF8 params (issue #21) 4.00007 2013-08-12 - Support for HTTP method PUT (sartak) - example improvements (clmh) 4.00006 2013-05-30 - Spelling error fixed (spazm@github) - Added path_suffix parameter to twitter_api_method (sartak) - tidy + pod fix (sartak) 4.00005 2013-04-25 - Added list_ownerships (eleniS no Github) - Removed Makefile.PL (cruft - using Module::Build, now) 4.00004 - Dependecy Net::HTTP fixed in 6.06 (30 second timeout in OAuth requests) 4.00003 - Fixed URI argument encoding (v1.1 is more stringent) 4.00002 2013-02-23 - Removed Test::NoWarnings to accommodate HTTP::Request::Common 6.03 - Added method twitter_error_code to Net::Twitter::Error 4.00001 2013-02-21 - First general release with Twitter API v1.1 support - Twitter::Manual::MigratingToV1_1 4.00000_03 2013-02-19 - Fixed: needed skip directives for dzil's AutoPrereqs plugin - Stripped version numbers---let dzil put them in 4.00000_02 2013-02-19 - use Dist::Zilla instead of Module::Install 4.00000_01 2013-01-28 - Added Twitter API version 1.1 support 3.18004 2012-10-15 - Allow extra parameters to get_auth*_url methods (this accommodates Twitter's optional force_login and screen_name parameters to those endpoints. 3.18003 2012-06-27 - Use path statuses/mentions, not statuses/replies 3.18002 2012-04-24 - added API method subscriptions; list_subscriptions is now all_subscriptions with alias list_subscriptions - deprecated TwitterVision API support - added API method members_destroy_all with alias remove_list_members - added deprecation warning for 'trends'; calls trends_location(1), instead
This commit is contained in:
parent
162f56751b
commit
c06f731d8e
2 changed files with 11 additions and 10 deletions
|
@ -1,9 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.19 2014/05/29 23:37:09 wiz Exp $
|
||||
# $NetBSD: Makefile,v 1.20 2015/03/01 06:17:59 mef Exp $
|
||||
#
|
||||
|
||||
DISTNAME= Net-Twitter-3.18001
|
||||
DISTNAME= Net-Twitter-4.01008
|
||||
PKGNAME= p5-${DISTNAME}
|
||||
PKGREVISION= 4
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Net/}
|
||||
|
||||
|
@ -19,12 +18,14 @@ DEPENDS+= p5-DateTime-Format-Strptime>=1.0900:../../time/p5-DateTime-Format-Strp
|
|||
DEPENDS+= p5-Devel-StackTrace>=1.21:../../devel/p5-Devel-StackTrace
|
||||
DEPENDS+= p5-Digest-HMAC-[0-9]*:../../security/p5-Digest-HMAC
|
||||
DEPENDS+= p5-HTML-Parser-[0-9]*:../../www/p5-HTML-Parser
|
||||
DEPENDS+= p5-JSON-Any>=1.21:../../converters/p5-JSON-Any
|
||||
DEPENDS+= p5-IO-Socket-SSL>=2.005:../../security/p5-IO-Socket-SSL
|
||||
DEPENDS+= p5-JSON-[0-9]*:../../converters/p5-JSON
|
||||
DEPENDS+= p5-JSON-XS-[0-9]*:../../converters/p5-JSON-XS
|
||||
DEPENDS+= p5-LWP-Protocol-https-[0-9]*:../../www/p5-LWP-Protocol-https
|
||||
DEPENDS+= p5-Moose>=0.90:../../devel/p5-Moose
|
||||
DEPENDS+= p5-MooseX-Aliases-[0-9]*:../../devel/p5-MooseX-Aliases
|
||||
DEPENDS+= p5-MooseX-Role-Parameterized-[0-9]*:../../devel/p5-MooseX-Role-Parameterized
|
||||
DEPENDS+= p5-Net-[0-9]*:../../net/p5-Net
|
||||
DEPENDS+= p5-Net-HTTP>=6.06:../../www/p5-Net-HTTP
|
||||
DEPENDS+= p5-Net-OAuth>=0.25:../../net/p5-Net-OAuth
|
||||
DEPENDS+= p5-Try-Tiny-[0-9]*:../../devel/p5-Try-Tiny
|
||||
DEPENDS+= p5-URI>=1.40:../../www/p5-URI
|
||||
|
@ -35,7 +36,7 @@ BUILD_DEPENDS+= {perl>=5.10.1,p5-Test-Simple>=0.88}:../../devel/p5-Test-Simple
|
|||
|
||||
PERL5_PACKLIST= auto/Net/Twitter/.packlist
|
||||
USE_LANGUAGES= # none
|
||||
PERL5_MODULE_TYPE= Module::Install::Bundled
|
||||
PERL5_MODULE_TYPE= Module::Build
|
||||
|
||||
.include "../../lang/perl5/module.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.10 2011/11/28 13:04:54 hiramatsu Exp $
|
||||
$NetBSD: distinfo,v 1.11 2015/03/01 06:17:59 mef Exp $
|
||||
|
||||
SHA1 (Net-Twitter-3.18001.tar.gz) = 629c098aacf46135c89a755b799f46fa20a899bd
|
||||
RMD160 (Net-Twitter-3.18001.tar.gz) = e811a71ffa762b52ed9023d96133e0bac24100df
|
||||
Size (Net-Twitter-3.18001.tar.gz) = 128033 bytes
|
||||
SHA1 (Net-Twitter-4.01008.tar.gz) = d317d13ea15724558e7edc3bec1afc9539544056
|
||||
RMD160 (Net-Twitter-4.01008.tar.gz) = 6cc7d920e14b98218c6ab6bdabb4a3f0557e0289
|
||||
Size (Net-Twitter-4.01008.tar.gz) = 129953 bytes
|
||||
|
|
Loading…
Reference in a new issue