Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package trytond_country for openSUSE:Factory
checked in at 2022-03-15 19:05:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond_country (Old)
and /work/SRC/openSUSE:Factory/.trytond_country.new.25692 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "trytond_country"
Tue Mar 15 19:05:01 2022 rev:11 rq:961898 version:6.0.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond_country/trytond_country.changes
2022-03-11 11:37:01.674320891 +0100
+++
/work/SRC/openSUSE:Factory/.trytond_country.new.25692/trytond_country.changes
2022-03-15 19:05:47.936983874 +0100
@@ -1,0 +2,6 @@
+Mon Mar 14 20:39:02 UTC 2022 - Axel Braun <[email protected]>
+
+- revert_pycountry_limit.diff added
+ fixes boo#1196857
+
+-------------------------------------------------------------------
New:
----
revert_pycountry_limit.diff
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ trytond_country.spec ++++++
--- /var/tmp/diff_new_pack.DMXpbp/_old 2022-03-15 19:05:48.364984164 +0100
+++ /var/tmp/diff_new_pack.DMXpbp/_new 2022-03-15 19:05:48.368984167 +0100
@@ -29,6 +29,7 @@
Source2:
http://downloads.tryton.org/%{majorver}/%{name}-%{version}.tar.gz.asc
Source3:
https://keybase.io/cedrickrier/pgp_keys.asc?fingerprint=7C5A4360F6DF81ABA91FD54D6FF50AFE03489130#/%{name}.keyring
Patch0: pycountry.diff
+Patch1: revert_pycountry_limit.diff
# List of additional build dependencies
BuildRequires: fdupes
BuildRequires: python-rpm-macros
@@ -60,6 +61,7 @@
# TW uses newer pycountry
%if 0%{?suse_version} > 1500
%patch0 -p1
+%patch1 -p1
%endif
%build
++++++ revert_pycountry_limit.diff ++++++
diff --git a/setup.py b/setup.py
index
95338f84ffe43ad13758c7f0d87d96c3af45822d..452df95adb23b562214bcf8ec09f7dca68807c01
100755
--- a/setup.py
+++ b/setup.py
@@ -66,7 +66,7 @@ for dep in info.get('depends', []):
requires.append(get_require_version('trytond_%s' % dep))
requires.append(get_require_version('trytond'))
-tests_require = [get_require_version('proteus'), 'pycountry<=20.7.3']
+tests_require = [get_require_version('proteus'), 'pycountry']
dependency_links = []
if minor_version % 2:
dependency_links.append(
@@ -142,7 +142,7 @@ setup(name=name,
python_requires='>=3.6',
install_requires=requires,
extras_require={
- 'data': ['pycountry<=20.7.3', get_require_version('proteus')],
+ 'data': ['pycountry', get_require_version('proteus')],
'GeoNames': [get_require_version('proteus')],
},
dependency_links=dependency_links,