summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Hesse2022-03-21 15:55:52 +0100
committerChristian Hesse2022-03-21 15:55:52 +0100
commit7e790f236d272522f0ed9802a69983306ff89d01 (patch)
tree68d29a1da3c299353013dbed604013f00d024826
parented3a1eb41d56ae46eaafed7d1b580c7d6f74d018 (diff)
downloadaur-x86info-git.tar.gz
commit x86info-git 0.r954.g061ea35-1
-rw-r--r--.SRCINFO7
-rw-r--r--PKGBUILD8
2 files changed, 6 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 528de13b5e86..628b4243f5f7 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,6 @@
-# Generated by mksrcinfo v8
-# Tue Aug 8 05:54:18 UTC 2017
pkgbase = x86info-git
pkgdesc = A CPU identification utility. Provides more info than /proc/cpuinfo - git checkout
- pkgver = 0.r941.g9501749
+ pkgver = 0.r954.g061ea35
pkgrel = 1
url = https://github.com/kernelslacker/x86info
install = x86info.install
@@ -13,8 +11,7 @@ pkgbase = x86info-git
depends = pciutils
provides = x86info
conflicts = x86info
- source = git://github.com/kernelslacker/x86info.git
+ source = git+https://github.com/kernelslacker/x86info.git
sha256sums = SKIP
pkgname = x86info-git
-
diff --git a/PKGBUILD b/PKGBUILD
index d0ce935d58ec..84798325b8bc 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Contributor: Jakub Luzny <limoto94@gmail.com>
pkgname=x86info-git
-pkgver=0.r941.g9501749
+pkgver=0.r954.g061ea35
pkgrel=1
pkgdesc='A CPU identification utility. Provides more info than /proc/cpuinfo - git checkout'
arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@ install=x86info.install
makedepends=('git')
provides=('x86info')
conflicts=('x86info')
-source=('git://github.com/kernelslacker/x86info.git')
+source=('git+https://github.com/kernelslacker/x86info.git')
sha256sums=('SKIP')
pkgver() {
@@ -23,11 +23,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
}