From owner-svn-ports-head@FreeBSD.ORG Fri May 8 20:22:20 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D0E55D89; Fri, 8 May 2015 20:22:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BF4311CB4; Fri, 8 May 2015 20:22:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t48KMKUq083911; Fri, 8 May 2015 20:22:20 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t48KMK2g083908; Fri, 8 May 2015 20:22:20 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201505082022.t48KMK2g083908@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 8 May 2015 20:22:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385824 - head/net/p5-Net-OAuth X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 May 2015 20:22:21 -0000 Author: sunpoet Date: Fri May 8 20:22:19 2015 New Revision: 385824 URL: https://svnweb.freebsd.org/changeset/ports/385824 Log: - Add LICENSE - Sort PLIST - Take maintainership - Update pkg-descr Modified: head/net/p5-Net-OAuth/Makefile head/net/p5-Net-OAuth/pkg-descr head/net/p5-Net-OAuth/pkg-plist Modified: head/net/p5-Net-OAuth/Makefile ============================================================================== --- head/net/p5-Net-OAuth/Makefile Fri May 8 20:22:14 2015 (r385823) +++ head/net/p5-Net-OAuth/Makefile Fri May 8 20:22:19 2015 (r385824) @@ -8,17 +8,20 @@ CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Implementation of the OAuth protocol +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Class-Accessor>=0.31:${PORTSDIR}/devel/p5-Class-Accessor \ p5-Class-Data-Inheritable>=0.06:${PORTSDIR}/devel/p5-Class-Data-Inheritable \ p5-Digest-HMAC>=1.01:${PORTSDIR}/security/p5-Digest-HMAC \ p5-URI>=1.35:${PORTSDIR}/net/p5-URI RUN_DEPENDS:= ${BUILD_DEPENDS} -TEST_DEPENDS= p5-Test-Warn>=0:${PORTSDIR}/devel/p5-Test-Warn +TEST_DEPENDS= p5-Test-Warn>=0.21:${PORTSDIR}/devel/p5-Test-Warn -USES= perl5 USE_PERL5= modbuild +USES= perl5 .include Modified: head/net/p5-Net-OAuth/pkg-descr ============================================================================== --- head/net/p5-Net-OAuth/pkg-descr Fri May 8 20:22:14 2015 (r385823) +++ head/net/p5-Net-OAuth/pkg-descr Fri May 8 20:22:19 2015 (r385824) @@ -1,9 +1,20 @@ -Net::OAuth is an implementation of the OAuth protocol. +Net::OAuth provides a low-level API for reading and writing OAuth messages. -OAuth is: +OAuth is an open protocol to allow secure API authentication in a simple and +standard method from desktop and web applications. In practical terms, OAuth is +a mechanism for a Consumer to request protected resources from a Service +Provider on behalf of a user. -An open protocol to allow secure API authentication in a simple and standard -method from desktop and web applications. +Net::OAuth provides: +- classes that encapsulate OAuth messages (requests and responses). +- message signing +- message serialization and parsing. +- 2-legged requests (aka. tokenless requests, aka. consumer requests), see + "CONSUMER REQUESTS" + +Net::OAuth does not provide: +- Consumer or Service Provider encapsulation +- token/nonce/key storage/management -WWW: http://oauth.net/ WWW: http://search.cpan.org/dist/Net-OAuth/ +WWW: http://oauth.net/ Modified: head/net/p5-Net-OAuth/pkg-plist ============================================================================== --- head/net/p5-Net-OAuth/pkg-plist Fri May 8 20:22:14 2015 (r385823) +++ head/net/p5-Net-OAuth/pkg-plist Fri May 8 20:22:19 2015 (r385824) @@ -16,12 +16,12 @@ %%SITE_PERL%%/Net/OAuth/SignatureMethod/RSA_SHA1.pm %%SITE_PERL%%/Net/OAuth/UserAuthRequest.pm %%SITE_PERL%%/Net/OAuth/UserAuthResponse.pm -%%SITE_PERL%%/Net/OAuth/XauthAccessTokenRequest.pm -%%SITE_PERL%%/Net/OAuth/YahooAccessTokenRefreshRequest.pm +%%SITE_PERL%%/Net/OAuth/V1_0A/AccessTokenRequest.pm %%SITE_PERL%%/Net/OAuth/V1_0A/RequestTokenRequest.pm %%SITE_PERL%%/Net/OAuth/V1_0A/RequestTokenResponse.pm %%SITE_PERL%%/Net/OAuth/V1_0A/UserAuthResponse.pm -%%SITE_PERL%%/Net/OAuth/V1_0A/AccessTokenRequest.pm +%%SITE_PERL%%/Net/OAuth/XauthAccessTokenRequest.pm +%%SITE_PERL%%/Net/OAuth/YahooAccessTokenRefreshRequest.pm %%PERL5_MAN3%%/Net::OAuth.3.gz %%PERL5_MAN3%%/Net::OAuth::AccessToken.3.gz %%PERL5_MAN3%%/Net::OAuth::AccessTokenRequest.3.gz