View | Details | Raw Unified | Return to bug 234244
Collapse All | Expand All

(-)py-matrix-synapse/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1542851909
1
TIMESTAMP = 1545392934
2
SHA256 (matrix-org-synapse-v0.33.9_GH0.tar.gz) = a0870c157598a494774fd9b6faf7041f9c3d62ec10d88986232c5d404de93aa4
2
SHA256 (matrix-org-synapse-v0.34.0_GH0.tar.gz) = e0e380a60668738dacb9ce944d45af19367dc3f7e502a6e649898e9b6d81b8dc
3
SIZE (matrix-org-synapse-v0.33.9_GH0.tar.gz) = 1087324
3
SIZE (matrix-org-synapse-v0.34.0_GH0.tar.gz) = 1124109
(-)py-matrix-synapse/files/homeserver.yaml.in (-9 / +6 lines)
Lines 78-90 Link Here
78
#
78
#
79
# cpu_affinity: 0xFFFFFFFF
79
# cpu_affinity: 0xFFFFFFFF
80
80
81
# Whether to serve a web client from the HTTP/HTTPS root resource.
81
# The path to the web client which will be served at /_matrix/client/
82
web_client: True
82
# if 'webclient' is configured under the 'listeners' configuration.
83
83
#
84
# The root directory to server for the above web client.
85
# If left undefined, synapse will serve the matrix-angular-sdk web client.
86
# Make sure matrix-angular-sdk is installed with pip if web_client is True
87
# and web_client_location is undefined
88
# web_client_location: "/path/to/web/root"
84
# web_client_location: "/path/to/web/root"
89
85
90
# The public-facing base URL for the client API (not including _matrix/...)
86
# The public-facing base URL for the client API (not including _matrix/...)
Lines 152-158 Link Here
152
        # List of resources to host on this listener.
148
        # List of resources to host on this listener.
153
        names:
149
        names:
154
          - client     # The client-server APIs, both v1 and v2
150
          - client     # The client-server APIs, both v1 and v2
155
          - webclient  # The bundled webclient.
151
          # - webclient  # The bundled webclient. (no longer available)
156
152
157
        # Should synapse compress HTTP responses to clients that support it?
153
        # Should synapse compress HTTP responses to clients that support it?
158
        # This should be disabled if running synapse behind a load balancer
154
        # This should be disabled if running synapse behind a load balancer
Lines 179-185 Link Here
179
    x_forwarded: false
175
    x_forwarded: false
180
176
181
    resources:
177
    resources:
182
      - names: [client, webclient]
178
      - names: [client] # change to "client, webclient" to activate web client
179
                        # also set web_client_location to a correct location
183
        compress: true
180
        compress: true
184
      - names: [federation]
181
      - names: [federation]
185
        compress: false
182
        compress: false
(-)py-matrix-synapse/Makefile (-4 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	matrix-synapse
4
PORTNAME=	matrix-synapse
5
DISTVERSIONPREFIX=	v
5
DISTVERSIONPREFIX=	v
6
DISTVERSION=	0.33.9
6
DISTVERSION=	0.34.0
7
CATEGORIES=	net-im python
7
CATEGORIES=	net-im python
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
9
Lines 41-49 Link Here
41
		${PYTHON_PKGNAMEPREFIX}attrs>16.0.0:devel/py-attrs@${PY_FLAVOR} \
41
		${PYTHON_PKGNAMEPREFIX}attrs>16.0.0:devel/py-attrs@${PY_FLAVOR} \
42
		${PYTHON_PKGNAMEPREFIX}netaddr>=0.7.18:net/py-netaddr@${PY_FLAVOR}
42
		${PYTHON_PKGNAMEPREFIX}netaddr>=0.7.18:net/py-netaddr@${PY_FLAVOR}
43
43
44
# Conditional requirements that aren't so conditional
45
RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}matrix-angular-sdk>=0.6.8:devel/py-matrix-angular-sdk@${PY_FLAVOR}
46
47
# Dependencies that aren't declared in python_dependencies.py which I have discovered
44
# Dependencies that aren't declared in python_dependencies.py which I have discovered
48
RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}simplejson>=3.10.0:devel/py-simplejson@${PY_FLAVOR} \
45
RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}simplejson>=3.10.0:devel/py-simplejson@${PY_FLAVOR} \
49
		${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss
46
		${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss

Return to bug 234244