summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO8
-rw-r--r--412458d281-glibc2.30-fix.patch27
-rw-r--r--PKGBUILD6
3 files changed, 7 insertions, 34 deletions
diff --git a/.SRCINFO b/.SRCINFO
index dc70b6e76024..f3e4583a56df 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = passwordsafe
pkgdesc = Simple & Secure Password Management
- pkgver = 1.09.0
+ pkgver = 1.010.0
pkgrel = 1
url = https://pwsafe.org/
arch = i686
@@ -20,10 +20,10 @@ pkgbase = passwordsafe
conflicts = passwordsafe-debian
conflicts = pwsafe
conflicts = pwsafe-gui
- source = passwordsafe-1.09.0.tar.gz::https://github.com/pwsafe/pwsafe/archive/1.09.0.tar.gz
- source = passwordsafe-1.09.0.tar.gz.sig::https://github.com/pwsafe/pwsafe/releases/download/1.09.0/1.09.0.tar.gz.sig
+ source = passwordsafe-1.010.0.tar.gz::https://github.com/pwsafe/pwsafe/archive/1.010.0.tar.gz
+ source = passwordsafe-1.010.0.tar.gz.sig::https://github.com/pwsafe/pwsafe/releases/download/1.010.0/pwsafe-1.010.0.tar.gz.sig
validpgpkeys = C8876BE69A8EC6414C8C8729B131423D7F2F1BB9
- sha1sums = 9003563367f416d4107cd5e2d41ba37afa6c61a0
+ sha1sums = 41c26608fc62c32f214412d6f2a37d7bad9aa35e
sha1sums = SKIP
pkgname = passwordsafe
diff --git a/412458d281-glibc2.30-fix.patch b/412458d281-glibc2.30-fix.patch
deleted file mode 100644
index 4f59f4886f0b..000000000000
--- a/412458d281-glibc2.30-fix.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 412458d281f98ea7649d2957f88ebad701b6cd18 Mon Sep 17 00:00:00 2001
-From: ronys <ronys@pwsafe.org>
-Date: Wed, 6 Nov 2019 22:44:17 +0200
-Subject: [PATCH] Fix time64 type issue on newer glibc
-
----
- src/os/unix/pws_time.h | 7 +++++--
- 1 file changed, 5 insertions(+), 2 deletions(-)
-
-diff --git a/src/os/unix/pws_time.h b/src/os/unix/pws_time.h
-index 683cb48b9..3407fe702 100644
---- a/src/os/unix/pws_time.h
-+++ b/src/os/unix/pws_time.h
-@@ -14,8 +14,11 @@
- #include <time.h>
- #endif
-
--#if !defined(__time64_t) && !defined(__TIME64_T_TYPE)
--typedef uint64_t __time64_t;
-+#ifndef __TIME64_T_TYPE
-+#define __TIME64_T_TYPE uint64_t
-+#endif
-+#ifndef time64_t
-+typedef __TIME64_T_TYPE __time64_t;
- #endif
-
- extern int localtime64_r(const __time64_t *timep, struct tm *result);
diff --git a/PKGBUILD b/PKGBUILD
index bdea82ab726a..523bc06dd7ab 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
_pkgname=pwsafe
pkgname=passwordsafe
-pkgver=1.09.0
+pkgver=1.010.0
pkgrel=1
pkgdesc="Simple & Secure Password Management"
arch=('i686' 'x86_64')
@@ -13,9 +13,9 @@ makedepends=('zip' 'libxt' 'cmake' 'git')
optdepends=('xvkbd: virtual-keyboard support')
conflicts=('passwordsafe-debian' 'pwsafe' 'pwsafe-gui')
source=(passwordsafe-$pkgver.tar.gz::https://github.com/pwsafe/pwsafe/archive/$pkgver.tar.gz
- passwordsafe-$pkgver.tar.gz.sig::https://github.com/pwsafe/pwsafe/releases/download/$pkgver/$pkgver.tar.gz.sig)
+ passwordsafe-$pkgver.tar.gz.sig::https://github.com/pwsafe/pwsafe/releases/download/$pkgver/pwsafe-$pkgver.tar.gz.sig)
validpgpkeys=('C8876BE69A8EC6414C8C8729B131423D7F2F1BB9') # http://pgp.mit.edu/pks/lookup?op=vindex&search=0xB131423D7F2F1BB9
-sha1sums=('9003563367f416d4107cd5e2d41ba37afa6c61a0'
+sha1sums=('41c26608fc62c32f214412d6f2a37d7bad9aa35e'
'SKIP')
build() {