Github messages for voidlinux
 help / color / mirror / Atom feed
From: TinfoilSubmarine <TinfoilSubmarine@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] synapse: update to 1.57.0.
Date: Wed, 20 Apr 2022 03:27:07 +0200	[thread overview]
Message-ID: <20220420012707.w9cqVk86Rz4KQELWz3ifRBhtOhZExqhJOZ_Mpg1ry4g@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-36767@inbox.vuxu.org>

[-- 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"

  reply	other threads:[~2022-04-20  1:27 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-19 16:30 [PR PATCH] " TinfoilSubmarine
2022-04-20  1:27 ` TinfoilSubmarine [this message]
2022-04-20  9:24 ` [PR PATCH] [Merged]: " paper42

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220420012707.w9cqVk86Rz4KQELWz3ifRBhtOhZExqhJOZ_Mpg1ry4g@z \
    --to=tinfoilsubmarine@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).