[packages/python-sqlalchemy] correct file encoding declaration
atler
atler at pld-linux.org
Thu Mar 27 02:37:58 CET 2025
commit bc89eeb1db50d2618a8a136b95139ee411aed01e
Author: Jan Palus <atler at pld-linux.org>
Date: Thu Mar 27 00:45:19 2025 +0100
correct file encoding declaration
pep 263 states it needs to be in first or second line of a file
pep263.patch | 28 ++++++++++++++++++++++++++++
python-sqlalchemy.spec | 3 +++
2 files changed, 31 insertions(+)
---
diff --git a/python-sqlalchemy.spec b/python-sqlalchemy.spec
index 829b7f3..be49a12 100644
--- a/python-sqlalchemy.spec
+++ b/python-sqlalchemy.spec
@@ -22,6 +22,7 @@ Group: Libraries/Python
Source0: https://files.pythonhosted.org/packages/source/s/sqlalchemy/sqlalchemy-%{version}.tar.gz
# Source0-md5: 8f156a25d7ad78a62eebd3da6de1442d
Patch0: %{name}-tests.patch
+Patch1: pep263.patch
URL: https://www.sqlalchemy.org/
BuildRequires: rpm-build >= 4.6
BuildRequires: rpm-pythonprov
@@ -120,6 +121,7 @@ Przykłady do modułu Pythona SQLAlchemy.
%prep
%setup -q -n sqlalchemy-%{version}
%patch -P 0 -p1
+%patch -P 1 -p1
%build
%if %{with python2}
@@ -128,6 +130,7 @@ Przykłady do modułu Pythona SQLAlchemy.
%if %{with tests}
PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \
PYTHONPATH=$(echo $(pwd)/build-2/lib.linux-*) \
+LANG=C.UTF-8 \
%{__python} -m pytest test -k 'not test_fixture_five'
# in OverlappingFksSiblingTest.test_fixture_five[False] reported warnings differ from reference
%endif
diff --git a/pep263.patch b/pep263.patch
new file mode 100644
index 0000000..c7d4592
--- /dev/null
+++ b/pep263.patch
@@ -0,0 +1,28 @@
+--- sqlalchemy-1.4.54/lib/sqlalchemy/testing/suite/test_unicode_ddl.py.orig 2024-09-05 17:50:09.000000000 +0200
++++ sqlalchemy-1.4.54/lib/sqlalchemy/testing/suite/test_unicode_ddl.py 2025-03-26 23:33:53.985935475 +0100
+@@ -1,10 +1,10 @@
++# coding: utf-8
+ # testing/suite/test_unicode_ddl.py
+ # Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+ # <see AUTHORS file>
+ #
+ # This module is part of SQLAlchemy and is released under
+ # the MIT License: https://www.opensource.org/licenses/mit-license.php
+-# coding: utf-8
+ """verrrrry basic unicode column name testing"""
+
+ from sqlalchemy import desc
+--- sqlalchemy-1.4.54/lib/sqlalchemy/testing/suite/test_types.py.orig 2024-09-05 17:50:09.000000000 +0200
++++ sqlalchemy-1.4.54/lib/sqlalchemy/testing/suite/test_types.py 2025-03-26 23:32:04.274036851 +0100
+@@ -1,10 +1,10 @@
++# coding: utf-8
+ # testing/suite/test_types.py
+ # Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+ # <see AUTHORS file>
+ #
+ # This module is part of SQLAlchemy and is released under
+ # the MIT License: https://www.opensource.org/licenses/mit-license.php
+-# coding: utf-8
+
+ import datetime
+ import decimal
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/python-sqlalchemy.git/commitdiff/bc89eeb1db50d2618a8a136b95139ee411aed01e
More information about the pld-cvs-commit
mailing list