Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-pycares for openSUSE:Factory 
checked in at 2022-10-10 18:44:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pycares (Old)
 and      /work/SRC/openSUSE:Factory/.python-pycares.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-pycares"

Mon Oct 10 18:44:14 2022 rev:6 rq:1008176 version:4.2.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pycares/python-pycares.changes    
2022-07-13 14:31:44.649238398 +0200
+++ /work/SRC/openSUSE:Factory/.python-pycares.new.2275/python-pycares.changes  
2022-10-10 18:44:36.534874643 +0200
@@ -1,0 +2,6 @@
+Tue Oct  4 23:59:04 UTC 2022 - Yogalakshmi Arunachalam <yarunacha...@suse.com>
+
+- Update to version 4.2.2 
+  no changelog
+
+-------------------------------------------------------------------

Old:
----
  pycares-4.2.1.tar.gz

New:
----
  pycares-4.2.2.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-pycares.spec ++++++
--- /var/tmp/diff_new_pack.cyI67d/_old  2022-10-10 18:44:39.270880532 +0200
+++ /var/tmp/diff_new_pack.cyI67d/_new  2022-10-10 18:44:39.274880541 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:           python-pycares
-Version:        4.2.1
+Version:        4.2.2
 Release:        0
 Summary:        Python interface for c-ares
 License:        MIT

++++++ pycares-4.2.1.tar.gz -> pycares-4.2.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pycares-4.2.1/PKG-INFO new/pycares-4.2.2/PKG-INFO
--- old/pycares-4.2.1/PKG-INFO  2022-06-28 11:06:27.147344800 +0200
+++ new/pycares-4.2.2/PKG-INFO  2022-08-09 09:25:01.152814900 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: pycares
-Version: 4.2.1
+Version: 4.2.2
 Summary: Python interface for c-ares
 Home-page: http://github.com/saghul/pycares
 Author: Sa??l Ibarra Corretg??
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pycares-4.2.1/pyproject.toml 
new/pycares-4.2.2/pyproject.toml
--- old/pycares-4.2.1/pyproject.toml    1970-01-01 01:00:00.000000000 +0100
+++ new/pycares-4.2.2/pyproject.toml    2022-08-09 09:24:56.000000000 +0200
@@ -0,0 +1,27 @@
+[build-system]
+requires = ["setuptools", "wheel", "cffi>=1.5.0"]
+build-backend = "setuptools.build_meta"
+
+[tool.cibuildwheel]
+build = "cp3*"
+
+[tool.cibuildwheel.linux]
+archs = ["auto", "aarch64"]
+before-all = """
+set -eux
+# musllinux_*
+if command -v apk; then
+    apk add libffi-dev
+fi
+# manylinux_2_24
+if command -v apt; then
+    apt install libffi-dev
+fi
+# manylinux_*
+if command -v yum; then
+    yum install -y libffi-devel
+fi
+"""
+
+[tool.cibuildwheel.macos]
+archs = ["x86_64", "universal2"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pycares-4.2.1/setup.py new/pycares-4.2.2/setup.py
--- old/pycares-4.2.1/setup.py  2022-06-28 11:06:16.000000000 +0200
+++ new/pycares-4.2.2/setup.py  2022-08-09 09:24:56.000000000 +0200
@@ -2,7 +2,12 @@
 # -*- coding: utf-8 -*-
 
 import codecs
+import os
 import re
+import sys
+
+# we have to import setup_cares.py which is in project's root folder
+sys.path.insert(0, os.path.dirname(os.path.realpath(__file__)))
 
 from setuptools import setup
 
@@ -40,7 +45,6 @@
           'Programming Language :: Python :: Implementation :: PyPy',
       ],
       cmdclass         = {'build_ext': cares_build_ext},
-      setup_requires   = ['cffi>=1.5.0'],
       install_requires = ['cffi>=1.5.0'],
       extras_require   = {'idna': ['idna >= 2.1']},
       cffi_modules     = ['src/_cffi_src/build_cares.py:ffi'],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pycares-4.2.1/src/pycares/_version.py 
new/pycares-4.2.2/src/pycares/_version.py
--- old/pycares-4.2.1/src/pycares/_version.py   2022-06-28 11:06:16.000000000 
+0200
+++ new/pycares-4.2.2/src/pycares/_version.py   2022-08-09 09:24:56.000000000 
+0200
@@ -1,2 +1,2 @@
 
-__version__ = '4.2.1'
+__version__ = '4.2.2'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pycares-4.2.1/src/pycares.egg-info/PKG-INFO 
new/pycares-4.2.2/src/pycares.egg-info/PKG-INFO
--- old/pycares-4.2.1/src/pycares.egg-info/PKG-INFO     2022-06-28 
11:06:26.000000000 +0200
+++ new/pycares-4.2.2/src/pycares.egg-info/PKG-INFO     2022-08-09 
09:25:00.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: pycares
-Version: 4.2.1
+Version: 4.2.2
 Summary: Python interface for c-ares
 Home-page: http://github.com/saghul/pycares
 Author: Sa??l Ibarra Corretg??
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pycares-4.2.1/src/pycares.egg-info/SOURCES.txt 
new/pycares-4.2.2/src/pycares.egg-info/SOURCES.txt
--- old/pycares-4.2.1/src/pycares.egg-info/SOURCES.txt  2022-06-28 
11:06:27.000000000 +0200
+++ new/pycares-4.2.2/src/pycares.egg-info/SOURCES.txt  2022-08-09 
09:25:01.000000000 +0200
@@ -3,6 +3,7 @@
 MANIFEST.in
 PYPIREADME.rst
 README.rst
+pyproject.toml
 setup.py
 setup_cares.py
 tox.ini
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pycares-4.2.1/src/pycares.egg-info/top_level.txt 
new/pycares-4.2.2/src/pycares.egg-info/top_level.txt
--- old/pycares-4.2.1/src/pycares.egg-info/top_level.txt        2022-06-28 
11:06:26.000000000 +0200
+++ new/pycares-4.2.2/src/pycares.egg-info/top_level.txt        2022-08-09 
09:25:00.000000000 +0200
@@ -1,2 +1 @@
-_cares
 pycares

Reply via email to