[arch-commits] Commit in keepassxc/repos/community-x86_64 (PKGBUILD PKGBUILD)

Anatol Pomozov anatolik at archlinux.org
Mon Nov 25 00:13:19 UTC 2019


    Date: Monday, November 25, 2019 @ 00:13:18
  Author: anatolik
Revision: 533119

archrelease: copy trunk to community-x86_64

Added:
  keepassxc/repos/community-x86_64/PKGBUILD
    (from rev 533118, keepassxc/trunk/PKGBUILD)
Deleted:
  keepassxc/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |   86 +++++++++++++++++++++++++++++--------------------------------
 1 file changed, 42 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2019-11-25 00:12:43 UTC (rev 533118)
+++ PKGBUILD	2019-11-25 00:13:18 UTC (rev 533119)
@@ -1,44 +0,0 @@
-# Maintainer: Balló György <ballogyor+arch at gmail dot com>
-# Maintainer: Bruno Pagani <archange at archlinux.org>
-
-pkgname=keepassxc
-pkgver=2.5.0
-pkgrel=2
-pkgdesc="Cross-platform community-driven port of Keepass password manager"
-arch=(x86_64)
-url="https://keepassxc.org/"
-license=(GPL)
-depends=(argon2 curl desktop-file-utils hicolor-icon-theme libgcrypt libsodium libxtst qrencode
-         qt5-svg qt5-x11extras quazip yubikey-personalization)
-makedepends=(git cmake qt5-tools)
-provides=(org.freedesktop.secrets)
-_tag=a1cc0e27e1e692c9b3e03b1b67f1ec8613329875 # git rev-parse ${pkgver}
-source=("git+https://github.com/keepassxreboot/keepassxc#tag=${_tag}?signed")
-sha256sums=(SKIP)
-validpgpkeys=(BF5A669F2272CF4324C1FDA8CFB4C2166397D0D2  # KeePassXC Release <release at keepassxc.org>
-              3489040C1F0C3EEAB8D556A5440FC65F2E0C6E01  # Jonathan White <support at dmapps.us>
-              B3724F5B2C98B5B0AEDDBD582AC0283D4CFC9A10) # Janek Bevendorff <janek at jbev.net>
-
-prepare() {
-	mkdir -p build
-}
-
-build() {
-	cd build
-	cmake ../${pkgname} \
-		-DCMAKE_BUILD_TYPE=Release \
-		-DCMAKE_INSTALL_PREFIX=/usr \
-		-DCMAKE_INSTALL_LIBDIR=lib \
-		-DWITH_XC_ALL=ON
-	make
-}
-
-check() {
-	cd build
-	make test
-}
-
-package() {
-	cd build
-	make DESTDIR="${pkgdir}" install
-}

Copied: keepassxc/repos/community-x86_64/PKGBUILD (from rev 533118, keepassxc/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-11-25 00:13:18 UTC (rev 533119)
@@ -0,0 +1,42 @@
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+# Maintainer: Bruno Pagani <archange at archlinux.org>
+
+pkgname=keepassxc
+pkgver=2.5.1
+pkgrel=1
+pkgdesc="Cross-platform community-driven port of Keepass password manager"
+arch=(x86_64)
+url="https://keepassxc.org/"
+license=(GPL)
+depends=(argon2 curl desktop-file-utils hicolor-icon-theme libgcrypt libsodium libxtst qrencode
+         qt5-svg qt5-x11extras quazip yubikey-personalization)
+makedepends=(cmake qt5-tools)
+provides=(org.freedesktop.secrets)
+source=(https://github.com/keepassxreboot/keepassxc/releases/download/$pkgver/keepassxc-$pkgver-src.tar.xz{,.sig})
+sha256sums=('ef33258b859a7b996af007113613b0f6210f2341e8f5fb3a005564262c2caf30'
+            'SKIP')
+# List of signing keys can be found at https://keepassxc.org/verifying-signatures/
+validpgpkeys=(BF5A669F2272CF4324C1FDA8CFB4C2166397D0D2
+              71D4673D73C7F83C17DAE6A2D8538E98A26FD9C4
+              AF0AEA44ABAC8F1047733EA7AFF235EEFB5A2517
+              C1E4CBA3AD78D3AFD894F9E0B7A66F03B59076A8)
+
+build() {
+	cd keepassxc-$pkgver
+	cmake -DCMAKE_BUILD_TYPE=Release \
+		-DCMAKE_INSTALL_PREFIX=/usr \
+		-DCMAKE_INSTALL_LIBDIR=lib \
+		-DWITH_XC_ALL=ON \
+		-S . -B build
+	cmake --build build
+}
+
+check() {
+	cd keepassxc-$pkgver
+	cmake --build build --target test
+}
+
+package() {
+	cd keepassxc-$pkgver
+	cmake --build build --target install -- DESTDIR="$pkgdir"
+}



More information about the arch-commits mailing list