-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net/gdrive: Update to a newer snapshot
- Pull in patches from prasmussen/gdrive#428 enabling support for external Google API OAuth2 client credentials - Add pkg-message with reference to workaround for "Rate Limit Exceeded" errors - Pet portlint while here PR: 235497 Submitted by: Dmitri Goutnik <[email protected]> (maintainer) git-svn-id: svn+ssh://svn.freebsd.org/ports/head@493640 35697150-7ecd-e111-bb59-0022644237b5
- Loading branch information
Tobias Kortkamp
authored and
Tobias Kortkamp
committed
Feb 23, 2019
1 parent
61252f8
commit d3e6182
Showing
3 changed files
with
24 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,19 +2,28 @@ | |
# $FreeBSD$ | ||
|
||
PORTNAME= gdrive | ||
PORTVERSION= 2.1.0 | ||
DISTVERSION= 2.1.0-23 | ||
DISTVERSIONSUFFIX= -gc3cbcce | ||
CATEGORIES= net | ||
|
||
PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ | ||
# https://github.com/prasmussen/gdrive/pull/428 | ||
PATCHFILES= 3c060f4d33530866496515b45fcfaa3fd2da5f32.patch:-p1 \ | ||
4916e16a91b84702ebe67ca7be4295b26d4cb0b5.patch:-p1 \ | ||
0197c982f6c961e8a44ec9895fcc33c1fe4c3ac2.patch:-p1 \ | ||
f397bb25e339dc4cf1e9bf2467336ba6fd48fd9f.patch:-p1 | ||
|
||
MAINTAINER= [email protected] | ||
COMMENT= Google Drive CLI Client | ||
|
||
LICENSE= MIT | ||
|
||
USES= go | ||
GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} | ||
USE_GITHUB= yes | ||
GH_ACCOUNT= prasmussen | ||
|
||
GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} | ||
|
||
OPTIONS_DEFINE= DOCS | ||
|
||
PLIST_FILES= bin/gdrive | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
TIMESTAMP = 1482262863 | ||
SHA256 (prasmussen-gdrive-2.1.0_GH0.tar.gz) = a1ea624e913e258596ea6340c8818a90c21962b0a75cf005e49a0f72f2077b2e | ||
SIZE (prasmussen-gdrive-2.1.0_GH0.tar.gz) = 151273 | ||
TIMESTAMP = 1550792240 | ||
SHA256 (prasmussen-gdrive-2.1.0-23-gc3cbcce_GH0.tar.gz) = a82f4c91f01dbfdfa3bcaae783a2c0c844d02e08cb8a6e4021df8aee11b5942e | ||
SIZE (prasmussen-gdrive-2.1.0-23-gc3cbcce_GH0.tar.gz) = 152474 | ||
SHA256 (3c060f4d33530866496515b45fcfaa3fd2da5f32.patch) = 8608eaab69b1a88efef2030e4dbe1380681ea1048e46bc5bb323430c2dc86505 | ||
SIZE (3c060f4d33530866496515b45fcfaa3fd2da5f32.patch) = 5705 | ||
SHA256 (4916e16a91b84702ebe67ca7be4295b26d4cb0b5.patch) = 1613ab7660fbb96ef2143cfe9609193418dfb7129856f993252bb17150a47fa1 | ||
SIZE (4916e16a91b84702ebe67ca7be4295b26d4cb0b5.patch) = 13731 | ||
SHA256 (0197c982f6c961e8a44ec9895fcc33c1fe4c3ac2.patch) = 2794e6a60bcabc995a87b35bd5063beff926172c90c56e85c7143da4f3ebb335 | ||
SIZE (0197c982f6c961e8a44ec9895fcc33c1fe4c3ac2.patch) = 189034 | ||
SHA256 (f397bb25e339dc4cf1e9bf2467336ba6fd48fd9f.patch) = beee3ac5f3eac03d6f340fd5499e97091ac01c83b923f958dc3e954d36032bee | ||
SIZE (f397bb25e339dc4cf1e9bf2467336ba6fd48fd9f.patch) = 1034150 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
If you are getting "Error 403: Rate Limit Exceeded" errors, please see | ||
workaround described here: https://github.com/prasmussen/gdrive/pull/428 |