Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] synapse: update to 1.57.0.
@ 2022-04-19 16:30 TinfoilSubmarine
  2022-04-20  1:27 ` [PR PATCH] [Updated] " TinfoilSubmarine
  2022-04-20  9:24 ` [PR PATCH] [Merged]: " paper42
  0 siblings, 2 replies; 3+ messages in thread
From: TinfoilSubmarine @ 2022-04-19 16:30 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1326 bytes --]

There is a new pull request by TinfoilSubmarine against master on the void-packages repository

https://github.com/TinfoilSubmarine/void-packages synapse
https://github.com/void-linux/void-packages/pull/36767

synapse: update to 1.57.0.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES** (tested with 1.57.0rc1 for ~1 week and with 1.57.0 briefly before opening)

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/36767.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-synapse-36767.patch --]
[-- Type: text/x-diff, Size: 3972 bytes --]

From 0d22f923cc2debfb4cb29a2b3790831c6d3cec8c Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Tue, 12 Apr 2022 11:04:22 -0400
Subject: [PATCH 1/2] python3-signedjson: update to 1.1.4.

---
 .../patches/importlib_metadata.patch          | 39 -------------------
 srcpkgs/python3-signedjson/template           |  4 +-
 2 files changed, 2 insertions(+), 41 deletions(-)
 delete mode 100644 srcpkgs/python3-signedjson/patches/importlib_metadata.patch

diff --git a/srcpkgs/python3-signedjson/patches/importlib_metadata.patch b/srcpkgs/python3-signedjson/patches/importlib_metadata.patch
deleted file mode 100644
index d7553958cc15..000000000000
--- a/srcpkgs/python3-signedjson/patches/importlib_metadata.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From c40c83f844fee3c1c7b0c5d1508f87052334b4e5 Mon Sep 17 00:00:00 2001
-From: MeggyCal <MeggyCal@users.noreply.github.com>
-Date: Tue, 21 Apr 2020 18:55:37 +0200
-Subject: [PATCH] Do not require importlib_metadata on python 3.8. (#9)
-
----
- setup.py               | 2 +-
- signedjson/__init__.py | 5 ++++-
- 2 files changed, 5 insertions(+), 2 deletions(-)
-
-diff --git a/setup.py b/setup.py
-index 9c09760..c1cc299 100755
---- a/setup.py
-+++ b/setup.py
-@@ -41,7 +41,7 @@ def read_file(path_segments):
-         "pynacl>=0.3.0",
-         "typing_extensions>=3.5",
-         'typing>=3.5;python_version<"3.5"',
--        "importlib_metadata",
-+        'importlib_metadata;python_version<"3.8"',
-     ],
-     long_description=read_file(("README.rst",)),
-     keywords="json",
-diff --git a/signedjson/__init__.py b/signedjson/__init__.py
-index 6641e64..62faa5e 100644
---- a/signedjson/__init__.py
-+++ b/signedjson/__init__.py
-@@ -12,7 +12,10 @@
- # See the License for the specific language governing permissions and
- # limitations under the License.
- 
--from importlib_metadata import version, PackageNotFoundError
-+try:
-+    from importlib.metadata import version, PackageNotFoundError
-+except ImportError:  # pragma: nocover
-+    from importlib_metadata import version, PackageNotFoundError
- 
- try:
-     __version__ = version(__name__)
diff --git a/srcpkgs/python3-signedjson/template b/srcpkgs/python3-signedjson/template
index bf9a8ddc1255..8acbaa32ab11 100644
--- a/srcpkgs/python3-signedjson/template
+++ b/srcpkgs/python3-signedjson/template
@@ -1,6 +1,6 @@
 # Template file for 'python3-signedjson'
 pkgname=python3-signedjson
-version=1.1.1
+version=1.1.4
 revision=1
 wrksrc="signedjson-${version}"
 build_style=python3-module
@@ -13,4 +13,4 @@ maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
 license="Apache-2.0"
 homepage="https://github.com/matrix-org/python-signedjson"
 distfiles="${PYPI_SITE}/s/signedjson/signedjson-${version}.tar.gz"
-checksum=350586e7570ba208f7729dcda09d43f554ead0207a15e3e3695533ef3f720009
+checksum=cd91c56af53f169ef032c62e9c4a3292dc158866933318d0592e3462db3d6492

From 6e0adea53a45023d8844b5c7e2517658b5e45222 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Tue, 12 Apr 2022 11:02:53 -0400
Subject: [PATCH 2/2] synapse: update to 1.57.0.

---
 srcpkgs/synapse/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index 984ad56e0a8a..22ad01847677 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -1,6 +1,6 @@
 # Template file for 'synapse'
 pkgname=synapse
-version=1.56.0
+version=1.57.0
 revision=1
 build_style=python3-module
 make_check_target=tests
@@ -21,7 +21,7 @@ license="Apache-2.0"
 homepage="https://github.com/matrix-org/synapse"
 changelog="https://raw.githubusercontent.com/matrix-org/synapse/develop/CHANGES.md"
 distfiles="https://github.com/matrix-org/synapse/archive/v${version}.tar.gz"
-checksum=7afda1fefa2af42966fdffa1f3ab6643674a738ad722e76bf94b873b8845c373
+checksum=d574f6f599f00d139045e04d017a201397b21248b560b69c5cdfccccd920cc0a
 
 system_accounts="synapse"
 synapse_homedir="/var/lib/synapse"

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PR PATCH] [Updated] synapse: update to 1.57.0.
  2022-04-19 16:30 [PR PATCH] synapse: update to 1.57.0 TinfoilSubmarine
@ 2022-04-20  1:27 ` TinfoilSubmarine
  2022-04-20  9:24 ` [PR PATCH] [Merged]: " paper42
  1 sibling, 0 replies; 3+ messages in thread
From: TinfoilSubmarine @ 2022-04-20  1:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1331 bytes --]

There is an updated pull request by TinfoilSubmarine against master on the void-packages repository

https://github.com/TinfoilSubmarine/void-packages synapse
https://github.com/void-linux/void-packages/pull/36767

synapse: update to 1.57.0.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES** (tested with 1.57.0rc1 for ~1 week and with 1.57.0 briefly before opening)

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/36767.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-synapse-36767.patch --]
[-- Type: text/x-diff, Size: 3972 bytes --]

From cad795d252435625d3dc940c6c6ac4d627c7efb3 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Tue, 12 Apr 2022 11:04:22 -0400
Subject: [PATCH 1/2] python3-signedjson: update to 1.1.4.

---
 .../patches/importlib_metadata.patch          | 39 -------------------
 srcpkgs/python3-signedjson/template           |  4 +-
 2 files changed, 2 insertions(+), 41 deletions(-)
 delete mode 100644 srcpkgs/python3-signedjson/patches/importlib_metadata.patch

diff --git a/srcpkgs/python3-signedjson/patches/importlib_metadata.patch b/srcpkgs/python3-signedjson/patches/importlib_metadata.patch
deleted file mode 100644
index d7553958cc15..000000000000
--- a/srcpkgs/python3-signedjson/patches/importlib_metadata.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From c40c83f844fee3c1c7b0c5d1508f87052334b4e5 Mon Sep 17 00:00:00 2001
-From: MeggyCal <MeggyCal@users.noreply.github.com>
-Date: Tue, 21 Apr 2020 18:55:37 +0200
-Subject: [PATCH] Do not require importlib_metadata on python 3.8. (#9)
-
----
- setup.py               | 2 +-
- signedjson/__init__.py | 5 ++++-
- 2 files changed, 5 insertions(+), 2 deletions(-)
-
-diff --git a/setup.py b/setup.py
-index 9c09760..c1cc299 100755
---- a/setup.py
-+++ b/setup.py
-@@ -41,7 +41,7 @@ def read_file(path_segments):
-         "pynacl>=0.3.0",
-         "typing_extensions>=3.5",
-         'typing>=3.5;python_version<"3.5"',
--        "importlib_metadata",
-+        'importlib_metadata;python_version<"3.8"',
-     ],
-     long_description=read_file(("README.rst",)),
-     keywords="json",
-diff --git a/signedjson/__init__.py b/signedjson/__init__.py
-index 6641e64..62faa5e 100644
---- a/signedjson/__init__.py
-+++ b/signedjson/__init__.py
-@@ -12,7 +12,10 @@
- # See the License for the specific language governing permissions and
- # limitations under the License.
- 
--from importlib_metadata import version, PackageNotFoundError
-+try:
-+    from importlib.metadata import version, PackageNotFoundError
-+except ImportError:  # pragma: nocover
-+    from importlib_metadata import version, PackageNotFoundError
- 
- try:
-     __version__ = version(__name__)
diff --git a/srcpkgs/python3-signedjson/template b/srcpkgs/python3-signedjson/template
index bf9a8ddc1255..8acbaa32ab11 100644
--- a/srcpkgs/python3-signedjson/template
+++ b/srcpkgs/python3-signedjson/template
@@ -1,6 +1,6 @@
 # Template file for 'python3-signedjson'
 pkgname=python3-signedjson
-version=1.1.1
+version=1.1.4
 revision=1
 wrksrc="signedjson-${version}"
 build_style=python3-module
@@ -13,4 +13,4 @@ maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
 license="Apache-2.0"
 homepage="https://github.com/matrix-org/python-signedjson"
 distfiles="${PYPI_SITE}/s/signedjson/signedjson-${version}.tar.gz"
-checksum=350586e7570ba208f7729dcda09d43f554ead0207a15e3e3695533ef3f720009
+checksum=cd91c56af53f169ef032c62e9c4a3292dc158866933318d0592e3462db3d6492

From aeaf0e93ab4d4e1dbea604a00bcf770c0dd89b2b Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Tue, 12 Apr 2022 11:02:53 -0400
Subject: [PATCH 2/2] synapse: update to 1.57.0.

---
 srcpkgs/synapse/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index 984ad56e0a8a..22ad01847677 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -1,6 +1,6 @@
 # Template file for 'synapse'
 pkgname=synapse
-version=1.56.0
+version=1.57.0
 revision=1
 build_style=python3-module
 make_check_target=tests
@@ -21,7 +21,7 @@ license="Apache-2.0"
 homepage="https://github.com/matrix-org/synapse"
 changelog="https://raw.githubusercontent.com/matrix-org/synapse/develop/CHANGES.md"
 distfiles="https://github.com/matrix-org/synapse/archive/v${version}.tar.gz"
-checksum=7afda1fefa2af42966fdffa1f3ab6643674a738ad722e76bf94b873b8845c373
+checksum=d574f6f599f00d139045e04d017a201397b21248b560b69c5cdfccccd920cc0a
 
 system_accounts="synapse"
 synapse_homedir="/var/lib/synapse"

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PR PATCH] [Merged]: synapse: update to 1.57.0.
  2022-04-19 16:30 [PR PATCH] synapse: update to 1.57.0 TinfoilSubmarine
  2022-04-20  1:27 ` [PR PATCH] [Updated] " TinfoilSubmarine
@ 2022-04-20  9:24 ` paper42
  1 sibling, 0 replies; 3+ messages in thread
From: paper42 @ 2022-04-20  9:24 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1157 bytes --]

There's a merged pull request on the void-packages repository

synapse: update to 1.57.0.
https://github.com/void-linux/void-packages/pull/36767

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES** (tested with 1.57.0rc1 for ~1 week and with 1.57.0 briefly before opening)

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-04-20  9:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-19 16:30 [PR PATCH] synapse: update to 1.57.0 TinfoilSubmarine
2022-04-20  1:27 ` [PR PATCH] [Updated] " TinfoilSubmarine
2022-04-20  9:24 ` [PR PATCH] [Merged]: " paper42

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).