summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Hesse2020-11-25 09:48:12 +0100
committerChristian Hesse2020-11-25 09:48:12 +0100
commit8076416793d805d6a0872062d9e80bfd473b4a35 (patch)
treeb2a297f50eba19ec02b9a296b2bdb6d91c3f4b3f
parentf217362e5b5cf3756c0e66cef92c4d6158092b00 (diff)
downloadaur-mkinitcpio-ykfde-git.tar.gz
commit mkinitcpio-ykfde-git 0.7.6.r4.g7ac4c16-1
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD8
2 files changed, 6 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 16bcf16f8ecf..022ee39c74a4 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,6 @@
-# Generated by mksrcinfo v8
-# Sat Jul 9 20:06:19 UTC 2016
pkgbase = mkinitcpio-ykfde-git
pkgdesc = Full disk encryption with Yubikey (Yubico key) - git checkout
- pkgver = 0.6.4.r0.g95f195c
+ pkgver = 0.7.6.r4.g7ac4c16
pkgrel = 1
url = https://github.com/eworm-de/mkinitcpio-ykfde
install = mkinitcpio-ykfde.install
@@ -11,6 +9,7 @@ pkgbase = mkinitcpio-ykfde-git
license = GPL
makedepends = git
makedepends = markdown
+ makedepends = systemd
depends = yubikey-personalization
depends = cryptsetup
depends = iniparser
diff --git a/PKGBUILD b/PKGBUILD
index 0d59b7e6cce5..14e161f0933b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,14 +1,14 @@
# Maintainer: Christian Hesse <mail@eworm.de>
pkgname=mkinitcpio-ykfde-git
-pkgver=0.6.4.r0.g95f195c
+pkgver=0.7.6.r4.g7ac4c16
pkgrel=1
pkgdesc='Full disk encryption with Yubikey (Yubico key) - git checkout'
arch=('i686' 'x86_64')
url='https://github.com/eworm-de/mkinitcpio-ykfde'
license=('GPL')
depends=('yubikey-personalization' 'cryptsetup' 'iniparser' 'libarchive' 'keyutils')
-makedepends=('git' 'markdown')
+makedepends=('git' 'markdown' 'systemd')
conflicts=('mkinitcpio-ykfde')
provides=('mkinitcpio-ykfde')
install=mkinitcpio-ykfde.install
@@ -25,11 +25,11 @@ pkgver() {
printf '%s.r%s.g%s' \
"$(sed -e "s/^${pkgname%%-git}//" -e 's/^[-_/a-zA-Z]\+//' -e 's/[-_+]/./g' <<< ${GITTAG})" \
"$(git rev-list --count ${GITTAG}..)" \
- "$(git log -1 --format='%h')"
+ "$(git rev-parse --short HEAD)"
else
printf '0.r%s.g%s' \
"$(git rev-list --count master)" \
- "$(git log -1 --format='%h')"
+ "$(git rev-parse --short HEAD)"
fi
}