diff options
author | Kyle Manna | 2020-07-21 22:35:17 -0700 |
---|---|---|
committer | Kyle Manna | 2020-07-21 22:35:17 -0700 |
commit | 4cc06668600cb908bade32ed5ac8cf1eae5bb572 (patch) | |
tree | a710dd5224341aa848755995000aeba4c4df90c2 | |
parent | 4c1d4ad9bf4d562f89c5119132dcc69892a62515 (diff) | |
download | aur-4cc06668600cb908bade32ed5ac8cf1eae5bb572.tar.gz |
release: python-b2sdk v1.1.4-1
* Follow upstream.
-rw-r--r-- | .SRCINFO | 8 | ||||
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | PKGBUILD | 6 |
3 files changed, 8 insertions, 7 deletions
@@ -1,7 +1,7 @@ pkgbase = python-b2sdk pkgdesc = Python library to access B2 cloud storage. - pkgver = 0.1.8 - pkgrel = 2 + pkgver = 1.1.4 + pkgrel = 1 url = https://github.com/Backblaze/b2-sdk-python arch = any license = MIT @@ -12,8 +12,8 @@ pkgbase = python-b2sdk depends = python-setuptools depends = python-six>=1.10 depends = python-tqdm>=4.5.0 - source = https://github.com/Backblaze/b2-sdk-python/archive/v0.1.8.tar.gz - sha256sums = 4787d1ab6306d664a2ffa0c4ec38a45b6688972072f780305ae85ac97094d4b2 + source = https://github.com/Backblaze/b2-sdk-python/archive/v1.1.4.tar.gz + sha256sums = 230d88d1368345f0175c1df3c4e8225b4e481b97263ed3bb1e24eb5b9c204a76 pkgname = python-b2sdk diff --git a/.gitignore b/.gitignore index cb3ee1d6ae0..7ff2eb14d58 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ *.pkg.tar.xz *.tar.gz +*.tar.zst @@ -2,8 +2,8 @@ pkgname=python-b2sdk _pkgname=b2-sdk-python -pkgver=0.1.8 -pkgrel=2 +pkgver=1.1.4 +pkgrel=1 pkgdesc='Python library to access B2 cloud storage.' arch=(any) url='https://github.com/Backblaze/b2-sdk-python' @@ -18,7 +18,7 @@ depends=('python' ) source=(https://github.com/Backblaze/${_pkgname}/archive/v${pkgver}.tar.gz) -sha256sums=('4787d1ab6306d664a2ffa0c4ec38a45b6688972072f780305ae85ac97094d4b2') +sha256sums=('230d88d1368345f0175c1df3c4e8225b4e481b97263ed3bb1e24eb5b9c204a76') build() { cd ${srcdir}/${_pkgname}-${pkgver} |