summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKimiblock Moe2024-03-31 12:36:46 +0800
committerKimiblock Moe2024-03-31 12:36:46 +0800
commitce7a4ef6a08c30e7b0f135a4ecfd2aa6732f9e85 (patch)
tree34d621304565f65d6f7f0c45719a88e2030fd749
parent7d3bde230b90738a6522796ae5222194f30dde77 (diff)
downloadaur-sliding-sync-git.tar.gz
Bump
-rw-r--r--.SRCINFO7
-rw-r--r--PKGBUILD9
2 files changed, 10 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 63522d9ceb2d..bdc1ad2ee606 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -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
diff --git a/PKGBUILD b/PKGBUILD
index baeef0551613..6c663622de69 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -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(){