summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Wilson2019-04-14 16:36:59 -0700
committerAlex Wilson2019-04-14 16:36:59 -0700
commitf441e06ba454b700bc1696d42084ae801373339e (patch)
tree3e87e280817f28140927b1ad22a2e5a6ec5951e2
parenta754cf9f1b46afa40adcfa03b6e97d029d6cd74c (diff)
downloadaur-f441e06ba454b700bc1696d42084ae801373339e.tar.gz
Release 0.1.1
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD13
2 files changed, 8 insertions, 13 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ba85a6549b4f..35c1e589d71e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = pivy
pkgdesc = Tools for using PIV smartcards/Yubikeys with ssh-agent and encryption
- pkgver = 0.1.0
+ pkgver = 0.1.1
pkgrel = 1
url = https://github.com/arekinath/pivy
arch = x86
@@ -9,10 +9,10 @@ pkgbase = pivy
depends = libbsd
depends = pcsclite
depends = libedit
- source = https://github.com/arekinath/pivy/archive/v0.1.0.tar.gz
+ source = https://github.com/arekinath/pivy/archive/v0.1.1.tar.gz
source = https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.7.4.tar.gz
- md5sums = 3eed4156a6161f9448e95c07cb8111d4
- md5sums = 94ce8f4cdbb6b57565da61e380d63045
+ sha256sums = 3b625a4907243461a56a13a2b4930b960b80b153e442f14836d83d4aa665008b
+ sha256sums = 1e3a9fada06c1c060011470ad0ff960de28f9a0515277d7336f7e09362517da6
pkgname = pivy
diff --git a/PKGBUILD b/PKGBUILD
index 3e72ed87477a..a297ac4929ba 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,18 +1,18 @@
# Maintainer: Alex Wilson <alex at cooperi dot net>
pkgname=pivy
-pkgver=0.1.0
+pkgver=0.1.1
pkgrel=1
pkgdesc="Tools for using PIV smartcards/Yubikeys with ssh-agent and encryption"
url="https://github.com/arekinath/pivy"
license=('MPL2')
source=(
- "https://github.com/arekinath/pivy/archive/v0.1.0.tar.gz"
+ "https://github.com/arekinath/pivy/archive/v$pkgver.tar.gz"
"https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.7.4.tar.gz")
arch=(x86 x86_64)
depends=(libbsd pcsclite libedit)
makedepends=()
-md5sums=('3eed4156a6161f9448e95c07cb8111d4'
- '94ce8f4cdbb6b57565da61e380d63045')
+sha256sums=('3b625a4907243461a56a13a2b4930b960b80b153e442f14836d83d4aa665008b'
+ '1e3a9fada06c1c060011470ad0ff960de28f9a0515277d7336f7e09362517da6')
prepare() {
mv "libressl-2.7.4" "$pkgname-$pkgver/libressl"
@@ -20,11 +20,6 @@ prepare() {
build() {
cd "$pkgname-$pkgver"
- cd libressl
- ./configure --enable-static
- cd crypto
- make
- cd ../..
make prefix=/usr
}