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 { in buildPythonApplication rec {
pname = "matrix-synapse"; pname = "matrix-synapse";
version = "1.0.0"; version = "1.1.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1n8hv0zd818z4fx39yz6svb07zsbrh8fd6wfmgvhdxhp6p1vl0wq"; sha256 = "0bmcpk3b6hlix2dzkwzlqy97ypljipr4bw8rnxm8rlihpd6scrjq";
}; };
patches = [ patches = [

View file

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