diff options
author | Kimiblock Moe | 2024-03-31 12:36:46 +0800 |
---|---|---|
committer | Kimiblock Moe | 2024-03-31 12:36:46 +0800 |
commit | ce7a4ef6a08c30e7b0f135a4ecfd2aa6732f9e85 (patch) | |
tree | 34d621304565f65d6f7f0c45719a88e2030fd749 | |
parent | 7d3bde230b90738a6522796ae5222194f30dde77 (diff) | |
download | aur-sliding-sync-git.tar.gz |
Bump
-rw-r--r-- | .SRCINFO | 7 | ||||
-rw-r--r-- | PKGBUILD | 9 |
2 files changed, 10 insertions, 6 deletions
@@ -1,7 +1,7 @@ pkgbase = sliding-sync-git pkgdesc = Run a sliding sync proxy. An implementation of MSC3575. - pkgver = r1783.bbb886e - pkgrel = 2 + pkgver = 0.99.15.r17.g8750e1c4 + pkgrel = 1 url = https://github.com/matrix-org/sliding-sync install = sliding-sync-git.install arch = x86_64 @@ -10,6 +10,9 @@ pkgbase = sliding-sync-git makedepends = git depends = postgresql>13 provides = sliding-sync + provides = matrix-sliding-sync + conflicts = sliding-sync + conflicts = matrix-sliding-sync backup = etc/default/sliding-sync source = git+https://github.com/matrix-org/sliding-sync.git source = sliding-sync-git.service @@ -3,8 +3,8 @@ pkgname=sliding-sync-git arch=('x86_64') backup=("etc/default/sliding-sync") -pkgver=r1783.bbb886e -pkgrel=2 +pkgver=0.99.15.r17.g8750e1c4 +pkgrel=1 pkgdesc="Run a sliding sync proxy. An implementation of MSC3575." url=https://github.com/matrix-org/sliding-sync license=("Apache") @@ -13,12 +13,13 @@ source=("git+https://github.com/matrix-org/sliding-sync.git" "sliding-sync-git.s makedepends=("go" "git") sha256sums=('SKIP' '732a62fa9edd235022a8fc9ede32d7c4a0fb5235a9e49097f3a9df46cacca289') -provides=("sliding-sync") +provides=("sliding-sync" "matrix-sliding-sync") +conflicts=("sliding-sync" "matrix-sliding-sync") install="sliding-sync-git.install" function pkgver(){ cd sliding-sync - printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" + git describe --long --tags --abbrev=8 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' } function build(){ |