public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: LuK1337 <priv.luk@gmail.com>
To: git-commits@fedoraproject.org
Subject: [rpms/syncplay] f44: Update to 1.7.6
Date: Wed, 05 Aug 2026 07:07:53 GMT [thread overview]
Message-ID: <178591367395.1.4849597014333285273.rpms-syncplay-1aa3e3bca004@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/syncplay
Branch : f44
Commit : 1aa3e3bca004b0851f7d7a4fe55c97a2983de7d8
Author : LuK1337 <priv.luk@gmail.com>
Date : 2026-08-04T20:14:15+02:00
Stats : +3/-49 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/syncplay/c/1aa3e3bca004b0851f7d7a4fe55c97a2983de7d8?branch=f44
Log:
Update to 1.7.6
---
diff --git a/.gitignore b/.gitignore
index 24a6e5a..8810e4a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@
/syncplay-1.7.3.tar.gz
/syncplay-1.7.4.tar.gz
/syncplay-1.7.5.tar.gz
+/syncplay-1.7.6.tar.gz
diff --git a/775.patch b/775.patch
deleted file mode 100644
index 9c97adf..0000000
--- a/775.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From 077f628d8ac9714f0c31a0d05b670bb8bda5ac24 Mon Sep 17 00:00:00 2001
-From: Etoh <etoh@syncplay.pl>
-Date: Thu, 7 May 2026 22:11:06 +0100
-Subject: [PATCH] Support TLS on pyOpenSSL 26.2.0 (#774)
-
----
- syncplay/protocols.py | 24 +++++++++++++++++++++---
- 1 file changed, 21 insertions(+), 3 deletions(-)
-
-diff --git a/syncplay/protocols.py b/syncplay/protocols.py
-index 6554cb13b..3e1d8b054 100755
---- a/syncplay/protocols.py
-+++ b/syncplay/protocols.py
-@@ -401,9 +401,27 @@ def handshakeCompleted(self):
- self.sendHello()
- return
-
-- for x in range(0,self._serverCertificateTLS.get_extension_count()):
-- if (self._serverCertificateTLS.get_extension(x).get_short_name() == b'subjectAltName'):
-- self._subjectTLS = self._serverCertificateTLS.get_extension(x).__str__().replace("DNS:", "")
-+ self._subjectTLS = ""
-+ try:
-+ from cryptography import x509
-+ cryptographyCertificate = self._serverCertificateTLS.to_cryptography()
-+ subjectAltName = cryptographyCertificate.extensions.get_extension_for_class(x509.SubjectAlternativeName).value
-+ names = subjectAltName.get_values_for_type(x509.DNSName)
-+ names = names + ["IP Address:{}".format(ipAddress) for ipAddress in subjectAltName.get_values_for_type(x509.IPAddress)]
-+ self._subjectTLS = ", ".join([str(name) for name in names])
-+ except Exception:
-+ pass
-+
-+ if not self._subjectTLS:
-+ try:
-+ if hasattr(self._serverCertificateTLS, "get_extension_count") and hasattr(self._serverCertificateTLS, "get_extension"):
-+ for x in range(0,self._serverCertificateTLS.get_extension_count()):
-+ extension = self._serverCertificateTLS.get_extension(x)
-+ if extension.get_short_name() == b'subjectAltName':
-+ self._subjectTLS = str(extension).replace("DNS:", "")
-+ break
-+ except Exception:
-+ pass
-
- if not self._subjectTLS:
- self._subjectTLS = self._client._config.get("host", "") or ""
diff --git a/sources b/sources
index 071f7bf..f720906 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (syncplay-1.7.5.tar.gz) = aa5f4a7dd77f5c8761ed9ba2cb6d7a6b6e5c11e3c8eee1e400dcc3e8a9e5b24e40d514c47f4df482695f2a663f45f7c272b79f0e2f0a517111c4622b975a5eb2
+SHA512 (syncplay-1.7.6.tar.gz) = bc3e141cf0ab8a75bdcf191f66cac3c962c9cb2e2ffbd6818438f277292218e343218a77b7d4105b13ce9e460e35f466886e9102e9435858660a65896db726c8
diff --git a/syncplay.spec b/syncplay.spec
index 0c05ed1..5bfd08e 100644
--- a/syncplay.spec
+++ b/syncplay.spec
@@ -1,5 +1,5 @@
Name: syncplay
-Version: 1.7.5
+Version: 1.7.6
Release: %autorelease
Summary: Synchronize playback of various video players via internet
@@ -7,9 +7,6 @@ License: Apache-2.0 AND MIT AND BSD-3-Clause AND CC-BY-3.0
URL: https://syncplay.pl
Source0: https://github.com/Syncplay/syncplay/archive/refs/tags/v%{version}/syncplay-%{version}.tar.gz
-# https://github.com/Syncplay/syncplay/pull/775
-Patch: https://github.com/Syncplay/syncplay/pull/775.patch
-
BuildArch: noarch
BuildRequires: desktop-file-utils
BuildRequires: python3-devel
reply other threads:[~2026-08-05 7:07 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=178591367395.1.4849597014333285273.rpms-syncplay-1aa3e3bca004@fedoraproject.org \
--to=priv.luk@gmail.com \
--cc=git-commits@fedoraproject.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