package/python-daphne: bump to version 4.1.2

Drop remove pytest runner patch and instead pass
--skip-dependency-check build option.

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
James Hilliard 2024-09-14 22:41:31 -06:00 committed by Thomas Petazzoni
parent 9d713d2b7a
commit b93a35dcef
4 changed files with 5 additions and 32 deletions

View file

@ -1066,7 +1066,6 @@ package/pulseaudio/S50pulseaudio lib_sysv.ConsecutiveEmptyLines lib_sysv.EmptyLa
package/pulseview/0001-Replace-obsolete-deprecated-Qt-methods.patch lib_patch.Upstream
package/pulseview/0002-Fix-broken-build-due-to-C-template-behind-C-linkage.patch lib_patch.Upstream
package/python-aiohttp-remotes/0001-Fix-flit_core-build-requires-backend.patch lib_patch.Upstream
package/python-daphne/0001-remove-pytest-runner-requirement.patch lib_patch.Upstream
package/python-pybind/0001-pybind11-commands.py-support-STAGING_DIR.patch lib_patch.Upstream
package/python-pylibftdi/0001-do-not-use-find-library.patch lib_patch.Upstream
package/python-pyqt5/0001-configure-skip-qtdetail.patch lib_patch.Upstream

View file

@ -1,27 +0,0 @@
From f9d881cc55c89f51240f93308713216cfec793eb Mon Sep 17 00:00:00 2001
From: Adam Duskett <Aduskett@gmail.com>
Date: Sat, 3 Aug 2019 14:23:19 -0400
Subject: [PATCH] remove pytest-runner requirement
Setup does not actually require pytest-runner. As such, remove it.
Signed-off-by: Adam Duskett <Aduskett@gmail.com>
---
setup.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/setup.py b/setup.py
index 64e94f1..4e3abb0 100755
--- a/setup.py
+++ b/setup.py
@@ -23,7 +23,6 @@ setup(
include_package_data=True,
install_requires=["twisted[tls]>=22.4", "autobahn>=22.4.2", "asgiref>=3.5.2,<4"],
python_requires=">=3.7",
- setup_requires=["pytest-runner"],
extras_require={"tests": ["hypothesis", "pytest", "pytest-asyncio", "django"]},
entry_points={
"console_scripts": ["daphne = daphne.cli:CommandLineInterface.entrypoint"]
--
2.21.0

View file

@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/daphne/json
md5 f0dcc0618459ad7d25508704f9505b56 daphne-4.0.0.tar.gz
sha256 cce9afc8f49a4f15d4270b8cfb0e0fe811b770a5cc795474e97e4da287497666 daphne-4.0.0.tar.gz
md5 6a00ce30210105fcd0f756d4dc5505f9 daphne-4.1.2.tar.gz
sha256 fcbcace38eb86624ae247c7ffdc8ac12f155d7d19eafac4247381896d6f33761 daphne-4.1.2.tar.gz
# Locally computed sha256 checksums
sha256 b846415d1b514e9c1dff14a22deb906d794bc546ca6129f950a18cd091e2a669 LICENSE

View file

@ -4,12 +4,13 @@
#
################################################################################
PYTHON_DAPHNE_VERSION = 4.0.0
PYTHON_DAPHNE_VERSION = 4.1.2
PYTHON_DAPHNE_SOURCE = daphne-$(PYTHON_DAPHNE_VERSION).tar.gz
PYTHON_DAPHNE_SITE = https://files.pythonhosted.org/packages/d7/77/57b19d5caabf8537879aa4cf3a017b99d0b727f2521ffca7fd9140573509
PYTHON_DAPHNE_SITE = https://files.pythonhosted.org/packages/1a/c1/aedf180beb12395835cba791ce7239b8880009d9d37564d72b7590cde605
PYTHON_DAPHNE_SETUP_TYPE = setuptools
# https://github.com/django/daphne/blob/master/LICENSE
PYTHON_DAPHNE_LICENSE = BSD-3-Clause
PYTHON_DAPHNE_LICENSE_FILES = LICENSE
PYTHON_DAPHNE_BUILD_OPTS = --skip-dependency-check
$(eval $(python-package))