net-im/sliding-sync: add 0.99.19

Signed-off-by: Julien Roy <julien@jroy.ca>
This commit is contained in:
Julien Roy 2024-11-16 11:20:25 -05:00
parent 0cb62d91ea
commit efc21b43d7
No known key found for this signature in database
GPG Key ID: BEF2297448848842
2 changed files with 34 additions and 0 deletions

View File

@ -1,2 +1,4 @@
DIST sliding-sync-0.99.15-deps.tar.xz 57914328 BLAKE2B 1a3353e0dc73a972c6b5c252f4a88cfeaee55af43eb875684fe68935d7b1f7c2d3d71cfa2797c78137dd9395e20afa24124c7adfa7af89eeca23bddcf85f4cc3 SHA512 abe3f462bbd4d7b90527f4b99ed05c659f300eb198d116ea8725b0704ae97fc64a4afba433aeef5e0048c6a00a3eadb599e65300605eae7426e1b8b1ccf5ca4b
DIST sliding-sync-0.99.15.gh.tar.gz 812268 BLAKE2B dc732e943bc7041ccc1e7f8159a8b6c544a0555cfc32c62dafda9cdca41247cccf0185a0064974d27425a14979afe19da196ecfae4f93ba56a784a820f1211f7 SHA512 790b35f05f9acf2bc093a32d7878db4d5362ddd56ad435164a5e386cf06f56bbefc6d0d36b7590be1cd54539a79fd83c9cb78f5179c8a0e8d309c5b4e640cfde
DIST sliding-sync-0.99.19-deps.tar.xz 58104512 BLAKE2B 8de9ba6330e5d8ebbebe9ef691b6c11ce64975d77d28b5721b84a3e8171b2a7e6f726ac85f78da8796a96bcd9e9391ea421aa812f1a7b75d99b7f8a214b34af8 SHA512 6b3d20ee944eee3abed01a2d9b81f297c8fcf09b86526e7bc6b3059d5b816fe77c37aee662e333737d2240cf22073234cdcdb52e9c87565909d147610e916fa9
DIST sliding-sync-0.99.19.gh.tar.gz 828830 BLAKE2B 6a4ac47c69bdb8b48c970f959398d8d96ffe2f1409423da5f972095abff0a875e36482d5dd62d799ad07a596a744543fda1d7ec3383c3f7081de3a0621782fe3 SHA512 542a84b3976ad5afb84e98f3a125ebba889423985deeebb9cb92daeb13bedae53aea25d025f2fd194ecc6674786d3d3ec1322e1a1a732790422a68da7717e653

View File

@ -0,0 +1,32 @@
# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module systemd
DESCRIPTION="Proxy implementation of MSC3575's sync protocol."
HOMEPAGE="https://github.com/matrix-org/sliding-sync"
SRC_URI="
https://github.com/matrix-org/sliding-sync/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz
https://jroy.ca/dist/${P}-deps.tar.xz
"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="dev-db/postgresql"
DEPEND="${RDEPEND}"
src_compile() {
ego build "${S}/cmd/syncv3"
}
src_install() {
dobin syncv3
newinitd "${FILESDIR}"/sliding-sync.initd sliding-sync
newconfd "${FILESDIR}"/sliding-sync.confd sliding-sync
systemd_dounit "${FILESDIR}"/sliding-sync.service
}