diff options
author | Claudia Pellegrino | 2018-06-04 17:17:43 +0200 |
---|---|---|
committer | Claudia Pellegrino | 2018-06-04 17:17:43 +0200 |
commit | c83dc777cc3af1303214718e257cb4fba9606b3f (patch) | |
tree | a80bcdd7b98abad208c0943e70ac8222af68a40c | |
parent | 5d5c37549f890540225978ac113e1be3c8c11a64 (diff) | |
download | aur-c83dc777cc3af1303214718e257cb4fba9606b3f.tar.gz |
v0.4.1, pkgrel 2 (details in full commit message)
This commit applies the following fixes and additions:
1. Update SHA checksums for the v0.4.1 binary release
(Originally reported by AUR user chopps)
According to a forum comment by an AgileBits team member,
AgileBits confirms the server-side change to be legitimate even
though neither version nor build number were incremented. The team
member reports that the modification was caused by a build server
reconfiguration.
Source: https://discussions.agilebits.com/discussion/comment/438011/#Comment_438011
2. Add support for the armv6h architecture
This means the package now works e. g. on a Raspberry Pi 1
running Arch Linux ARM.
3. Add Auerhuhn (Claudia Pellegrino), co-maintainer since 2018-01
4. Acknowledge contributor betsu (Liu Yuxuan), who authored the
v0.4 bump
-rw-r--r-- | .SRCINFO | 11 | ||||
-rw-r--r-- | PKGBUILD | 14 |
2 files changed, 16 insertions, 9 deletions
@@ -1,20 +1,23 @@ pkgbase = 1password-cli pkgdesc = 1Password command line tool pkgver = 0.4.1 - pkgrel = 1 + pkgrel = 2 url = https://app-updates.agilebits.com/product_history/CLI arch = x86_64 arch = i686 arch = arm + arch = armv6h license = custom options = !strip options = !emptydirs source_x86_64 = https://cache.agilebits.com/dist/1P/op/pkg/v0.4.1/op_linux_amd64_v0.4.1.zip - sha256sums_x86_64 = 997676a84931b0206e9dcbb387bd58610d53272a961bc7f955c23debf8f7e474 + sha256sums_x86_64 = 22113980776ed26a0805e6d941fd7bb0a0f394cd0154c23f0de841a1caf68de9 source_i686 = https://cache.agilebits.com/dist/1P/op/pkg/v0.4.1/op_linux_386_v0.4.1.zip - sha256sums_i686 = 334a5370f134bc904507d6142903d74c43fa240f70f28ad978bbc81cf6f36fd5 + sha256sums_i686 = d136d890f97351c050c9af3322aeb2b41a19e4983d5721cb7738e24464ba43fb source_arm = https://cache.agilebits.com/dist/1P/op/pkg/v0.4.1/op_linux_arm_v0.4.1.zip - sha256sums_arm = eded6146a8520dacee803c3b878a16694c5a95df6db4dea1ff2a017b4468d3f8 + sha256sums_arm = c7a712a25e0c67319c7f6181b4da4feee0028af6cd2100c1cf6a00f75fac6d7e + source_armv6h = https://cache.agilebits.com/dist/1P/op/pkg/v0.4.1/op_linux_arm_v0.4.1.zip + sha256sums_armv6h = c7a712a25e0c67319c7f6181b4da4feee0028af6cd2100c1cf6a00f75fac6d7e pkgname = 1password-cli @@ -1,10 +1,12 @@ # Maintainer: Felix Seidel <felix@seidel.me> +# Maintainer: Claudia Pellegrino <aur ät cpellegrino.de> +# Contributor: Liu Yuxuan <betsu@yahoo.com> pkgname=1password-cli pkgver=0.4.1 -pkgrel=1 +pkgrel=2 pkgdesc="1Password command line tool" -arch=('x86_64' 'i686' 'arm') +arch=('x86_64' 'i686' 'arm' 'armv6h') url="https://app-updates.agilebits.com/product_history/CLI" license=('custom') options=('!strip' '!emptydirs') @@ -12,10 +14,12 @@ options=('!strip' '!emptydirs') source_x86_64=("https://cache.agilebits.com/dist/1P/op/pkg/v$pkgver/op_linux_amd64_v$pkgver.zip") source_i686=("https://cache.agilebits.com/dist/1P/op/pkg/v$pkgver/op_linux_386_v$pkgver.zip") source_arm=("https://cache.agilebits.com/dist/1P/op/pkg/v$pkgver/op_linux_arm_v$pkgver.zip") +source_armv6h=("${source_arm}") -sha256sums_x86_64=('997676a84931b0206e9dcbb387bd58610d53272a961bc7f955c23debf8f7e474') -sha256sums_i686=('334a5370f134bc904507d6142903d74c43fa240f70f28ad978bbc81cf6f36fd5') -sha256sums_arm=('eded6146a8520dacee803c3b878a16694c5a95df6db4dea1ff2a017b4468d3f8') +sha256sums_x86_64=('22113980776ed26a0805e6d941fd7bb0a0f394cd0154c23f0de841a1caf68de9') +sha256sums_i686=('d136d890f97351c050c9af3322aeb2b41a19e4983d5721cb7738e24464ba43fb') +sha256sums_arm=('c7a712a25e0c67319c7f6181b4da4feee0028af6cd2100c1cf6a00f75fac6d7e') +sha256sums_armv6h=("${sha256sums_arm}") check() { gpg --verify-files ${srcdir}/op.sig |