matrix-synapse: 1.0.0 -> 1.1.0

This commit is contained in:
Maximilian Güntner 2019-07-06 15:09:27 +02:00
parent df65cd3734
commit 7c64083bc5
No known key found for this signature in database
GPG key ID: 96126664034A9D85
2 changed files with 12 additions and 10 deletions

View file

@ -23,11 +23,11 @@ let
in buildPythonApplication rec {
pname = "matrix-synapse";
version = "1.0.0";
version = "1.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "1n8hv0zd818z4fx39yz6svb07zsbrh8fd6wfmgvhdxhp6p1vl0wq";
sha256 = "0bmcpk3b6hlix2dzkwzlqy97ypljipr4bw8rnxm8rlihpd6scrjq";
};
patches = [

View file

@ -1,21 +1,23 @@
diff --git a/homeserver b/homeserver
new file mode 120000
index 0000000..2f1d413
index 000000000..2f1d41351
--- /dev/null
+++ b/homeserver
@@ -0,0 +1,1 @@
@@ -0,0 +1 @@
+synapse/app/homeserver.py
\ No newline at end of file
diff --git a/setup.py b/setup.py
index b00c2af..c7f6e0a 100755
index 5ce06c898..f1ccd95bc 100755
--- a/setup.py
+++ b/setup.py
@@ -92,6 +92,6 @@ setup(
include_package_data=True,
zip_safe=False,
long_description=long_description,
@@ -115,6 +115,6 @@ setup(
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
- scripts=["synctl"] + glob.glob("scripts/*"),
+ scripts=["synctl", "homeserver"] + glob.glob("scripts/*"),
cmdclass={'test': TestCommand},
cmdclass={"test": TestCommand},
)
--
2.22.0