[arch-commits] Commit in matrix-synapse/repos (6 files)

Johannes Löthberg demize at archlinux.org
Sun Mar 17 13:31:12 UTC 2019


    Date: Sunday, March 17, 2019 @ 13:31:11
  Author: demize
Revision: 442369

archrelease: copy trunk to community-testing-any

Added:
  matrix-synapse/repos/community-testing-any/
  matrix-synapse/repos/community-testing-any/0001-Bump-python_dependencies.patch
    (from rev 442368, matrix-synapse/trunk/0001-Bump-python_dependencies.patch)
  matrix-synapse/repos/community-testing-any/PKGBUILD
    (from rev 442368, matrix-synapse/trunk/PKGBUILD)
  matrix-synapse/repos/community-testing-any/synapse.install
    (from rev 442368, matrix-synapse/trunk/synapse.install)
  matrix-synapse/repos/community-testing-any/synapse.service
    (from rev 442368, matrix-synapse/trunk/synapse.service)
  matrix-synapse/repos/community-testing-any/sysusers-synapse.conf
    (from rev 442368, matrix-synapse/trunk/sysusers-synapse.conf)

-------------------------------------+
 0001-Bump-python_dependencies.patch |   29 ++++++++++++++
 PKGBUILD                            |   69 ++++++++++++++++++++++++++++++++++
 synapse.install                     |   25 ++++++++++++
 synapse.service                     |   18 ++++++++
 sysusers-synapse.conf               |    1 
 5 files changed, 142 insertions(+)

Copied: matrix-synapse/repos/community-testing-any/0001-Bump-python_dependencies.patch (from rev 442368, matrix-synapse/trunk/0001-Bump-python_dependencies.patch)
===================================================================
--- community-testing-any/0001-Bump-python_dependencies.patch	                        (rev 0)
+++ community-testing-any/0001-Bump-python_dependencies.patch	2019-03-17 13:31:11 UTC (rev 442369)
@@ -0,0 +1,29 @@
+From 0ffec97c70515e3ea3c2717a8eaa657fdd8fdf18 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= <johannes at kyriasis.com>
+Date: Tue, 8 Jan 2019 20:09:50 +0100
+Subject: [PATCH] Bump python_dependencies
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Signed-off-by: Johannes Löthberg <johannes at kyriasis.com>
+---
+ synapse/python_dependencies.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py
+index 756721e30..f8ee9e53f 100644
+--- a/synapse/python_dependencies.py
++++ b/synapse/python_dependencies.py
+@@ -62,7 +62,7 @@ REQUIREMENTS = [
+     "six>=1.10",
+     # prometheus_client 0.4.0 changed the format of counter metrics
+     # (cf https://github.com/matrix-org/synapse/issues/4001)
+-    "prometheus_client>=0.0.18,<0.4.0",
++    "prometheus_client>=0.0.18,<0.6.0",
+ 
+     # we use attr.s(slots), which arrived in 16.0.0
+     # Twisted 18.7.0 requires attrs>=17.4.0
+-- 
+2.20.1
+

Copied: matrix-synapse/repos/community-testing-any/PKGBUILD (from rev 442368, matrix-synapse/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD	                        (rev 0)
+++ community-testing-any/PKGBUILD	2019-03-17 13:31:11 UTC (rev 442369)
@@ -0,0 +1,69 @@
+# Maintainer: Johannes Löthberg <johannes at kyriasis.com>
+# Contributor: Ivan Shapovalov <intelfx at intelfx.name>
+
+pkgname=matrix-synapse
+pkgver=0.99.2
+pkgrel=1
+
+pkgdesc="Matrix reference homeserver"
+url="https://github.com/matrix-org/synapse"
+arch=('any')
+license=('Apache')
+
+depends=('python-jsonschema' 'python-twisted' 'python-service-identity'
+         'python-pyopenssl' 'python-yaml' 'python-pyasn1' 'python-pynacl'
+         'python-daemonize' 'python-bcrypt' 'python-frozendict'
+         'python-pillow' 'python-ujson'
+         'python-pysaml2' 'python-setuptools'
+         'python-systemd' 'python-unpaddedbase64' 'python-canonicaljson'
+         'python-signedjson' 'python-pymacaroons'
+         'python-service-identity' 'python-msgpack'
+         'python-phonenumbers' 'python-prometheus_client'
+         'python-attrs' 'python-netaddr' 'python-sortedcontainers'
+         'python-treq' 'python-psutil'
+         'systemd')
+checkdepends=('python-lxml' 'python-jinja' 'python-mock' 'python-parameterized')
+optdepends=('python-psycopg2: PostgreSQL support'
+            'python-lxml: URL previewing'
+            'python-jinja: e-mail notifications'
+            'python-bleach: e-mail notifications'
+            'python-psutil: metrics')
+
+source=("synapse-$pkgver.tar.gz::https://github.com/matrix-org/synapse/archive/v$pkgver.tar.gz"
+        'synapse.service'
+        'sysusers-synapse.conf'
+        '0001-Bump-python_dependencies.patch')
+
+md5sums=('920a2773497b1487b29d20558a651ed2'
+         '276a99050f40601089255ea168bb7620'
+         'ecd9f66fb57fe1a2e1e2df07a460a35b'
+         '62b94bdcd227ec2d097ba2eb28fe36df')
+
+backup=('etc/synapse/log_config.yaml')
+install=synapse.install
+
+prepare() {
+	cd synapse-$pkgver
+	patch -p1 <"$srcdir"/0001-Bump-python_dependencies.patch
+}
+
+build() {
+	cd synapse-$pkgver
+	python setup.py build
+}
+
+check() {
+	cd synapse-$pkgver
+	PYTHONPATH=. trial3 tests
+}
+
+package() {
+	install -Dm644 synapse.service "$pkgdir"/usr/lib/systemd/system/synapse.service
+
+	cd synapse-$pkgver
+	python setup.py install --root "$pkgdir" --optimize=1 --skip-build
+
+	install -dm755 -o 198 -g 198 "$pkgdir"/etc/synapse
+	install -Dm644 contrib/systemd/log_config.yaml "$pkgdir"/etc/synapse/log_config.yaml
+	install -Dm644 "$srcdir"/sysusers-synapse.conf "$pkgdir"/usr/lib/sysusers.d/synapse.conf
+}

Copied: matrix-synapse/repos/community-testing-any/synapse.install (from rev 442368, matrix-synapse/trunk/synapse.install)
===================================================================
--- community-testing-any/synapse.install	                        (rev 0)
+++ community-testing-any/synapse.install	2019-03-17 13:31:11 UTC (rev 442369)
@@ -0,0 +1,25 @@
+#!/bin/bash
+
+# arg 1:  the new package version
+post_install() {
+	if [[ ! -e /etc/synapse/homeserver.yaml ]]; then
+		cat <<-EOF
+		==> A synapse configuration file needs to be generated before you can
+		    start synapse, and you should make sure that it's readable by the
+		    synapse user.
+
+		    cd /var/lib/synapse
+		    sudo -u synapse python2 -m synapse.app.homeserver \\
+		      --server-name my.domain.name \\
+		      --config-path /etc/synapse/homeserver.yaml \\
+		      --generate-config \\
+		      --report-stats=yes
+
+		    N.B.: The default synapse config enables the webclient feature.
+		    Unless you have python2-matrix-angular-sdk installed this will make
+		    synapse fail to start.  Either disable it, or install
+		    python2-matrix-angular-sdk.
+		EOF
+		install -dm700 -o 198 -g 198 /var/lib/synapse
+	fi
+}

Copied: matrix-synapse/repos/community-testing-any/synapse.service (from rev 442368, matrix-synapse/trunk/synapse.service)
===================================================================
--- community-testing-any/synapse.service	                        (rev 0)
+++ community-testing-any/synapse.service	2019-03-17 13:31:11 UTC (rev 442369)
@@ -0,0 +1,18 @@
+[Unit]
+Description=Synapse Matrix homeserver
+After=network-online.target
+Requires=network-online.target
+
+[Service]
+Type=simple
+User=synapse
+Group=synapse
+SyslogIdentifier=synapse
+Environment=LANG=en_US.UTF-8
+WorkingDirectory=/var/lib/synapse
+ExecStart=/usr/bin/python3.7 -m synapse.app.homeserver --config-path=/etc/synapse/homeserver.yaml
+ExecStop=/usr/bin/synctl stop /etc/synapse/homeserver.yaml
+EnvironmentFile=-/etc/default/synapse
+
+[Install]
+WantedBy=multi-user.target

Copied: matrix-synapse/repos/community-testing-any/sysusers-synapse.conf (from rev 442368, matrix-synapse/trunk/sysusers-synapse.conf)
===================================================================
--- community-testing-any/sysusers-synapse.conf	                        (rev 0)
+++ community-testing-any/sysusers-synapse.conf	2019-03-17 13:31:11 UTC (rev 442369)
@@ -0,0 +1 @@
+u synapse 198 "Matrix Synapse user" /var/lib/synapse



More information about the arch-commits mailing list