diff options
author | git user | 2024-11-07 14:26:04 +0100 |
---|---|---|
committer | git user | 2024-11-07 14:26:04 +0100 |
commit | 1e8010278c5f88bd063515dfd685f1da9d34e718 (patch) | |
tree | ca84710ee3aac6d866a39de7b9548e0165421eed | |
parent | 2557f3962a4265aa3b5f741398167c216ab6bfa9 (diff) | |
download | aur-1e8010278c5f88bd063515dfd685f1da9d34e718.tar.gz |
Updated `pkgver()` to use `+` symbol as separator between last release version and number of additional commits.
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ pkgbase = sdbus-cpp-nosystemd-git pkgdesc = sdbus-c++ is a high-level C++ D-Bus library for Linux designed to provide expressive, easy-to-use API in modern C++. This package is without systemd dependencies; it will have it's own static libsystemd baked in. pkgver = 2.0.0.11.r442.d20241031.84130b1 - pkgrel = 1 + pkgrel = 2 url = https://github.com/Kistler-Group/sdbus-cpp arch = i686 arch = x86_64 @@ -6,7 +6,7 @@ _pkgvariant=nosystemd pkgname="${_pkgname}-${_pkgvariant}-git" _pkgver=latest pkgver=2.0.0.11.r442.d20241031.84130b1 -pkgrel=1 +pkgrel=2 pkgdesc="sdbus-c++ is a high-level C++ D-Bus library for Linux designed to provide expressive, easy-to-use API in modern C++. This package is without systemd dependencies; it will have it's own static libsystemd baked in." url="https://github.com/Kistler-Group/sdbus-cpp" arch=('i686' 'x86_64') @@ -59,7 +59,7 @@ pkgver() { error "Error in ${FUNCNAME[0]}: Version information could not determined." return 1 fi - printf '%s' "${_ver}.${_subver}.r${_rev}.d${_date}.${_hash}" + printf '%s' "${_ver}+${_subver}.r${_rev}.d${_date}.${_hash}" } prepare() { |