Hello community,

here is the log from the commit of package python-cryptography for 
openSUSE:Factory checked in at 2018-06-22 13:14:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-cryptography (Old)
 and      /work/SRC/openSUSE:Factory/.python-cryptography.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-cryptography"

Fri Jun 22 13:14:16 2018 rev:39 rq:616244 version:2.2.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-cryptography/python-cryptography.changes  
2018-03-30 11:59:12.715548014 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-cryptography.new/python-cryptography.changes 
    2018-06-22 13:14:43.560500003 +0200
@@ -1,0 +2,6 @@
+Tue Jun 12 07:24:12 UTC 2018 - [email protected]
+
+- update to 2.2.2
+  * fix build on some systems with openssl 1.1.0h
+
+-------------------------------------------------------------------

Old:
----
  cryptography-2.2.1.tar.gz
  cryptography-2.2.1.tar.gz.asc
  cryptography_vectors-2.2.1.tar.gz
  cryptography_vectors-2.2.1.tar.gz.asc

New:
----
  cryptography-2.2.2.tar.gz
  cryptography-2.2.2.tar.gz.asc
  cryptography_vectors-2.2.2.tar.gz

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

Other differences:
------------------
++++++ python-cryptography.spec ++++++
--- /var/tmp/diff_new_pack.scBZIq/_old  2018-06-22 13:14:44.700457732 +0200
+++ /var/tmp/diff_new_pack.scBZIq/_new  2018-06-22 13:14:44.704457584 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %bcond_without python2
 Name:           python-cryptography
-Version:        2.2.1
+Version:        2.2.2
 Release:        0
 Summary:        Python library which exposes cryptographic recipes and 
primitives
 License:        Apache-2.0 OR BSD-3-Clause
@@ -29,8 +29,7 @@
 Source1:        
https://files.pythonhosted.org/packages/source/c/cryptography/cryptography-%{version}.tar.gz.asc
 Source2:        %{name}.keyring
 # found on pypi but not on pythonhosted :/
-Source3:        cryptography_vectors-%{version}.tar.gz
-Source4:        cryptography_vectors-%{version}.tar.gz.asc
+Source3:        
https://files.pythonhosted.org/packages/source/c/cryptography_vectors/cryptography_vectors-%{version}.tar.gz
 # PATCH-FIX-SLE disable-uneven-sizes-tests.patch bnc#944204
 Patch1:         disable-uneven-sizes-tests.patch
 Patch2:         skip_openssl_memleak_test.patch
@@ -82,7 +81,7 @@
 cryptography is a package designed to expose cryptographic
 recipes and primitives to Python developers.  Our goal is
 for it to be your "cryptographic standard library". It
-supports Python 2.6-2.7, Python 3.2+, and PyPy.
+supports Python 2.7, Python 3.4+, and PyPy-5.3+.
 
 cryptography includes both high level recipes, and low
 level interfaces to common cryptographic algorithms such as

++++++ cryptography-2.2.1.tar.gz -> cryptography-2.2.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cryptography-2.2.1/CHANGELOG.rst 
new/cryptography-2.2.2/CHANGELOG.rst
--- old/cryptography-2.2.1/CHANGELOG.rst        2018-03-20 23:52:01.000000000 
+0100
+++ new/cryptography-2.2.2/CHANGELOG.rst        2018-03-27 18:42:49.000000000 
+0200
@@ -1,6 +1,14 @@
 Changelog
 =========
 
+.. _v2-2-2:
+
+2.2.2 - 2018-03-27
+~~~~~~~~~~~~~~~~~~
+
+* Updated Windows, macOS, and ``manylinux1`` wheels to be compiled with
+  OpenSSL 1.1.0h.
+
 .. _v2-2-1:
 
 2.2.1 - 2018-03-20
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cryptography-2.2.1/PKG-INFO 
new/cryptography-2.2.2/PKG-INFO
--- old/cryptography-2.2.1/PKG-INFO     2018-03-21 00:56:29.000000000 +0100
+++ new/cryptography-2.2.2/PKG-INFO     2018-03-27 18:43:18.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: cryptography
-Version: 2.2.1
+Version: 2.2.2
 Summary: cryptography is a package which provides cryptographic recipes and 
primitives to Python developers.
 Home-page: https://github.com/pyca/cryptography
 Author: The cryptography developers
@@ -99,7 +99,7 @@
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Security :: Cryptography
 Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
-Provides-Extra: test
 Provides-Extra: docs
 Provides-Extra: docstest
 Provides-Extra: pep8test
+Provides-Extra: test
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cryptography-2.2.1/src/cryptography/__about__.py 
new/cryptography-2.2.2/src/cryptography/__about__.py
--- old/cryptography-2.2.1/src/cryptography/__about__.py        2018-03-21 
00:56:16.000000000 +0100
+++ new/cryptography-2.2.2/src/cryptography/__about__.py        2018-03-27 
18:42:49.000000000 +0200
@@ -14,7 +14,7 @@
                " and primitives to Python developers.")
 __uri__ = "https://github.com/pyca/cryptography";
 
-__version__ = "2.2.1"
+__version__ = "2.2.2"
 
 __author__ = "The cryptography developers"
 __email__ = "[email protected]"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/cryptography-2.2.1/src/cryptography.egg-info/PKG-INFO 
new/cryptography-2.2.2/src/cryptography.egg-info/PKG-INFO
--- old/cryptography-2.2.1/src/cryptography.egg-info/PKG-INFO   2018-03-21 
00:56:28.000000000 +0100
+++ new/cryptography-2.2.2/src/cryptography.egg-info/PKG-INFO   2018-03-27 
18:43:18.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: cryptography
-Version: 2.2.1
+Version: 2.2.2
 Summary: cryptography is a package which provides cryptographic recipes and 
primitives to Python developers.
 Home-page: https://github.com/pyca/cryptography
 Author: The cryptography developers
@@ -99,7 +99,7 @@
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Security :: Cryptography
 Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
-Provides-Extra: test
 Provides-Extra: docs
 Provides-Extra: docstest
 Provides-Extra: pep8test
+Provides-Extra: test

++++++ cryptography_vectors-2.2.1.tar.gz -> cryptography_vectors-2.2.2.tar.gz 
++++++
/work/SRC/openSUSE:Factory/python-cryptography/cryptography_vectors-2.2.1.tar.gz
 
/work/SRC/openSUSE:Factory/.python-cryptography.new/cryptography_vectors-2.2.2.tar.gz
 differ: char 5, line 1


Reply via email to