Sync from SUSE:ALP:Source:Standard:1.0 python-UkPostcodeParser revision c4c2a07f9bfb6512d1aaeec306b26cfc

This commit is contained in:
Adrian Schröter 2023-10-18 22:23:53 +02:00
commit 5cd0c5e5e1
5 changed files with 166 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

BIN
UkPostcodeParser-1.1.2.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,40 @@
-------------------------------------------------------------------
Tue Aug 15 07:31:36 UTC 2023 - Dirk Müller <dmueller@suse.com>
- add python312.patch to fix build with python 3.12
-------------------------------------------------------------------
Fri Apr 21 12:21:28 UTC 2023 - Dirk Müller <dmueller@suse.com>
- add sle15_python_module_pythons (jsc#PED-68)
-------------------------------------------------------------------
Thu Apr 13 22:45:43 UTC 2023 - Matej Cepl <mcepl@suse.com>
- Make calling of %{sle15modernpython} optional.
-------------------------------------------------------------------
Wed Nov 3 11:34:19 UTC 2021 - pgajdos@suse.com
- %check: use %pyunittest rpm macro
-------------------------------------------------------------------
Mon Feb 18 00:42:49 UTC 2019 - John Vandenberg <jayvdb@gmail.com>
- Activate tests, skipping five tests broken since at least 2017
- Add missing runtime dependency on python-base
- Remove tests from installed package
- Add README
-------------------------------------------------------------------
Thu Feb 14 14:52:12 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Initial commit, needed by python-Faker
- notes upstream test failures
- Changed description
- Add %license
-------------------------------------------------------------------
Wed Sep 6 17:14:53 UTC 2017 - toddrme2178@gmail.com
- Initial spec for v1.1.2

View File

@ -0,0 +1,62 @@
#
# spec file for package python-UkPostcodeParser
#
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%{?sle15_python_module_pythons}
Name: python-UkPostcodeParser
Version: 1.1.2
Release: 0
Summary: UK Postcode parser
License: MIT
Group: Development/Languages/Python
URL: https://github.com/hamstah/ukpostcodeparser
Source: https://files.pythonhosted.org/packages/source/U/UkPostcodeParser/UkPostcodeParser-%{version}.tar.gz
Patch1: python312.patch
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-base
BuildArch: noarch
%python_subpackages
%description
United Kingdom Postcode parser.
%prep
%autosetup -p1 -n UkPostcodeParser-%{version}
%build
%python_build
%install
%python_install
%python_expand rm -r %{buildroot}%{$python_sitelib}/ukpostcodeparser/test/
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
# no tests as it is ko for 2 years https://github.com/hamstah/ukpostcodeparser/issues/8
sed -i 's/test_\(091\|097\|098\|125\|131\)/_test_\1/' ukpostcodeparser/test/parser.py
%pyunittest ukpostcodeparser.test.parser
%files %{python_files}
%license LICENSE
%doc README
%{python_sitelib}/ukpostcodeparser
%{python_sitelib}/UkPostcodeParser-%{version}*-info
%changelog

38
python312.patch Normal file
View File

@ -0,0 +1,38 @@
--- a/ukpostcodeparser/test/parser.py
+++ b/ukpostcodeparser/test/parser.py
@@ -18,7 +18,7 @@
with self.assertRaises(ValueError) as cm:
parse_uk_postcode('N16', True, True)
- self.assertEquals(cm.exception.__class__, IncodeNotFoundError)
+ self.assertEqual(cm.exception.__class__, IncodeNotFoundError)
def test_max_length_exceeded_error_is_value_error(self):
"""
@@ -28,7 +28,7 @@
with self.assertRaises(ValueError) as cm:
parse_uk_postcode('N16 8QSSS', True, True)
- self.assertEquals(cm.exception.__class__, MaxLengthExceededError)
+ self.assertEqual(cm.exception.__class__, MaxLengthExceededError)
def test_invalid_postcode_error_is_value_error(self):
"""
@@ -38,7 +38,7 @@
with self.assertRaises(ValueError) as cm:
parse_uk_postcode('xx0 2yr', True, True)
- self.assertEquals(cm.exception.__class__, InvalidPostcodeError)
+ self.assertEqual(cm.exception.__class__, InvalidPostcodeError)
class PostcodeTestCase(unittest.TestCase):
@@ -68,7 +68,7 @@
m = 'Expected {!r} but got {!r} for postcode={!r}, strict={!r} and ' \
'incode_mandatory={!r}'
- self.assertEquals(
+ self.assertEqual(
expected,
result,
m.format(