summaryrefslogtreecommitdiff
path: root/security/go-oauth2
diff options
context:
space:
mode:
authorbsiegert <bsiegert@pkgsrc.org>2016-01-03 20:39:35 +0000
committerbsiegert <bsiegert@pkgsrc.org>2016-01-03 20:39:35 +0000
commit4783fe538b6781efe6a71cf7491d6c8407b64414 (patch)
tree503e349ccb0a7b06a45ba4542aed2f9ef9e28c98 /security/go-oauth2
parent4e710b916fbdaa63b68fef85f76b7df52f6142fb (diff)
downloadpkgsrc-4783fe538b6781efe6a71cf7491d6c8407b64414.tar.gz
Update go-oauth2 to 20151204. Changes:
2baa8a1 internal: primarily use the HTTP client provided in the context 442624c oauth2: allow users to register broken OAuth2 implementations 2bf5e6e internal: add Salesforce to list of broken auth providers 3314c49 internal: add microsoftonline.com to list of broken providers d4780cd jws: fix base64Decode for strings of length 1 (mod 4). e347d22 jws: add EncodeWithSigner function. 038cb4a all: change copyright to 'Go Authors' ef4eca6 small typo fix in clientcredentials.go 2fbf3d7 token: extra numeric values + test TokenType case 3cab960 internal: add slack.com to the broken auth list c30abee internal: remove GitHub from the list of broken providers 166f7cf google: set expiry on JWTAccessTokenSource 82de3fe jwt: added missing format specifier d5ff5ab jwt: allow setting a custom expiry time for JWT tokens 9ecad50 bitbucket: add end points 52dcf34 google: Re-enable AppEngineTokenSource to be used from Managed VMs. ad01282 Remove use of appenginevm build tag. 897d973 google: set token type on returned JWTAccessToken, tweak docs 397fe76 google: add support for JWT Access Tokens 8914e50 oauth2: add api.netatmo.net to the broken providers b5adcc2 doc: fix typo 36ff901 oauth2: ensure case sensitivity for Bearer, MAC, and Basic in auth header f98d016 oauth2: use the correct import path for urlfetch e296c42 oauth2: add StaticTokenSource to return static tokens
Diffstat (limited to 'security/go-oauth2')
-rw-r--r--security/go-oauth2/Makefile7
-rw-r--r--security/go-oauth2/PLIST7
-rw-r--r--security/go-oauth2/distinfo10
3 files changed, 14 insertions, 10 deletions
diff --git a/security/go-oauth2/Makefile b/security/go-oauth2/Makefile
index 8291e942f42..6242b4a895a 100644
--- a/security/go-oauth2/Makefile
+++ b/security/go-oauth2/Makefile
@@ -1,13 +1,12 @@
-# $NetBSD: Makefile,v 1.2 2015/09/13 14:34:25 bsiegert Exp $
+# $NetBSD: Makefile,v 1.3 2016/01/03 20:39:35 bsiegert Exp $
#
DISTNAME= oauth2
-PKGNAME= go-${DISTNAME}-20150508
-PKGREVISION= 1
+PKGNAME= go-${DISTNAME}-20151204
GITHUB_PROJECT= ${DISTNAME}
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_GITHUB:=golang/}
-GITHUB_TAG= 2159a45684
+GITHUB_TAG= 2baa8a1b93
MAINTAINER= bsiegert@NetBSD.org
HOMEPAGE= http://golang.org/
diff --git a/security/go-oauth2/PLIST b/security/go-oauth2/PLIST
index 8cfc97b344b..33306253d90 100644
--- a/security/go-oauth2/PLIST
+++ b/security/go-oauth2/PLIST
@@ -1,5 +1,6 @@
-@comment $NetBSD: PLIST,v 1.1 2015/05/11 13:27:16 bsiegert Exp $
+@comment $NetBSD: PLIST,v 1.2 2016/01/03 20:39:35 bsiegert Exp $
gopkg/pkg/${GO_PLATFORM}/golang.org/x/oauth2.a
+gopkg/pkg/${GO_PLATFORM}/golang.org/x/oauth2/bitbucket.a
gopkg/pkg/${GO_PLATFORM}/golang.org/x/oauth2/clientcredentials.a
gopkg/pkg/${GO_PLATFORM}/golang.org/x/oauth2/facebook.a
gopkg/pkg/${GO_PLATFORM}/golang.org/x/oauth2/github.a
@@ -16,6 +17,7 @@ gopkg/src/golang.org/x/oauth2/CONTRIBUTING.md
gopkg/src/golang.org/x/oauth2/CONTRIBUTORS
gopkg/src/golang.org/x/oauth2/LICENSE
gopkg/src/golang.org/x/oauth2/README.md
+gopkg/src/golang.org/x/oauth2/bitbucket/bitbucket.go
gopkg/src/golang.org/x/oauth2/client_appengine.go
gopkg/src/golang.org/x/oauth2/clientcredentials/clientcredentials.go
gopkg/src/golang.org/x/oauth2/clientcredentials/clientcredentials_test.go
@@ -24,10 +26,12 @@ gopkg/src/golang.org/x/oauth2/facebook/facebook.go
gopkg/src/golang.org/x/oauth2/github/github.go
gopkg/src/golang.org/x/oauth2/google/appengine.go
gopkg/src/golang.org/x/oauth2/google/appengine_hook.go
+gopkg/src/golang.org/x/oauth2/google/appenginevm_hook.go
gopkg/src/golang.org/x/oauth2/google/default.go
gopkg/src/golang.org/x/oauth2/google/example_test.go
gopkg/src/golang.org/x/oauth2/google/google.go
gopkg/src/golang.org/x/oauth2/google/google_test.go
+gopkg/src/golang.org/x/oauth2/google/jwt.go
gopkg/src/golang.org/x/oauth2/google/sdk.go
gopkg/src/golang.org/x/oauth2/google/sdk_test.go
gopkg/src/golang.org/x/oauth2/google/testdata/gcloud/credentials
@@ -37,6 +41,7 @@ gopkg/src/golang.org/x/oauth2/internal/oauth2_test.go
gopkg/src/golang.org/x/oauth2/internal/token.go
gopkg/src/golang.org/x/oauth2/internal/token_test.go
gopkg/src/golang.org/x/oauth2/internal/transport.go
+gopkg/src/golang.org/x/oauth2/internal/transport_test.go
gopkg/src/golang.org/x/oauth2/jws/jws.go
gopkg/src/golang.org/x/oauth2/jwt/example_test.go
gopkg/src/golang.org/x/oauth2/jwt/jwt.go
diff --git a/security/go-oauth2/distinfo b/security/go-oauth2/distinfo
index f317cf99671..e6f1870b118 100644
--- a/security/go-oauth2/distinfo
+++ b/security/go-oauth2/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2015/11/04 01:17:45 agc Exp $
+$NetBSD: distinfo,v 1.3 2016/01/03 20:39:35 bsiegert Exp $
-SHA1 (oauth2-2159a45684.tar.gz) = 85f26896747fa01c3e86ee4197262ab3d2e25681
-RMD160 (oauth2-2159a45684.tar.gz) = 5558076ad5497a9dbf0611db79aabfc63ce8abf7
-SHA512 (oauth2-2159a45684.tar.gz) = 51c10c0363982e413ba9d418fe00401d06d2e38b0a8a0b06e9b991e3aee990d9f384b4ae5965e613decaf5c3afbc5079cc886633e730cdee2f062e24319992c2
-Size (oauth2-2159a45684.tar.gz) = 31639 bytes
+SHA1 (oauth2-2baa8a1b93.tar.gz) = 381699183f8ee36a36d3e84938d46cebc2da1dab
+RMD160 (oauth2-2baa8a1b93.tar.gz) = 041feedb805de8de3428db47dd7c3e95c7a41c20
+SHA512 (oauth2-2baa8a1b93.tar.gz) = f1a2588d0632c3578728c2c161e5513b82e26e08e4f1b76224e1deb26411bdb6dcb2b547abba1afb095cad63ed0252328bf9ee21bd53c749e93b2282790d9b45
+Size (oauth2-2baa8a1b93.tar.gz) = 34191 bytes