Hello community,
here is the log from the commit of package python-cryptography for
openSUSE:Factory checked in at 2016-01-08 15:39:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-cryptography (Old)
and /work/SRC/openSUSE:Factory/.python-cryptography.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-cryptography"
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-cryptography/python-cryptography.changes
2015-12-23 08:48:28.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.python-cryptography.new/python-cryptography.changes
2016-01-08 15:39:07.000000000 +0100
@@ -1,0 +2,10 @@
+Wed Dec 30 12:41:26 UTC 2015 - [email protected]
+
+- update to 1.1.2:
+ * Fixed a SIGBUS crash with the OS X wheels caused by redefinition of a
+ method.
+ * Fixed a runtime error ``undefined symbol EC_GFp_nistp224_method`` that
+ occurred with some OpenSSL installations.
+ * Updated Windows and OS X wheels to be compiled against OpenSSL 1.0.2e.
+
+-------------------------------------------------------------------
Old:
----
cryptography-1.1.1.tar.gz
cryptography-1.1.1.tar.gz.asc
cryptography_vectors-1.1.1.tar.gz
cryptography_vectors-1.1.1.tar.gz.asc
New:
----
cryptography-1.1.2.tar.gz
cryptography-1.1.2.tar.gz.asc
cryptography_vectors-1.1.2.tar.gz
cryptography_vectors-1.1.2.tar.gz.asc
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-cryptography.spec ++++++
--- /var/tmp/diff_new_pack.vzpkK0/_old 2016-01-08 15:39:08.000000000 +0100
+++ /var/tmp/diff_new_pack.vzpkK0/_new 2016-01-08 15:39:08.000000000 +0100
@@ -17,7 +17,7 @@
Name: python-cryptography
-Version: 1.1.1
+Version: 1.1.2
Release: 0
Summary: Python library which exposes cryptographic recipes and
primitives
License: Apache-2.0
++++++ cryptography-1.1.1.tar.gz -> cryptography-1.1.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cryptography-1.1.1/CHANGELOG.rst
new/cryptography-1.1.2/CHANGELOG.rst
--- old/cryptography-1.1.1/CHANGELOG.rst 2015-11-19 05:01:40.000000000
+0100
+++ new/cryptography-1.1.2/CHANGELOG.rst 2015-12-10 20:53:42.000000000
+0100
@@ -1,6 +1,15 @@
Changelog
=========
+1.1.2 - 2015-12-10
+~~~~~~~~~~~~~~~~~~
+
+* Fixed a SIGBUS crash with the OS X wheels caused by redefinition of a
+ method.
+* Fixed a runtime error ``undefined symbol EC_GFp_nistp224_method`` that
+ occurred with some OpenSSL installations.
+* Updated Windows and OS X wheels to be compiled against OpenSSL 1.0.2e.
+
1.1.1 - 2015-11-19
~~~~~~~~~~~~~~~~~~
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cryptography-1.1.1/PKG-INFO
new/cryptography-1.1.2/PKG-INFO
--- old/cryptography-1.1.1/PKG-INFO 2015-11-19 05:02:01.000000000 +0100
+++ new/cryptography-1.1.2/PKG-INFO 2015-12-10 20:55:24.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: cryptography
-Version: 1.1.1
+Version: 1.1.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
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cryptography-1.1.1/docs/spelling_wordlist.txt
new/cryptography-1.1.2/docs/spelling_wordlist.txt
--- old/cryptography-1.1.1/docs/spelling_wordlist.txt 2015-11-19
05:01:35.000000000 +0100
+++ new/cryptography-1.1.2/docs/spelling_wordlist.txt 2015-12-10
20:53:42.000000000 +0100
@@ -56,6 +56,7 @@
pseudorandom
pyOpenSSL
relicensed
+runtime
Schneier
scrypt
Serializers
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cryptography-1.1.1/setup.py
new/cryptography-1.1.2/setup.py
--- old/cryptography-1.1.1/setup.py 2015-11-19 05:01:35.000000000 +0100
+++ new/cryptography-1.1.2/setup.py 2015-12-10 20:53:28.000000000 +0100
@@ -59,7 +59,7 @@
# If you add a new dep here you probably need to add it in the tox.ini as well
test_requirements = [
- "pytest",
+ "pytest!=2.8.4",
"pretend",
"iso8601",
"hypothesis",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cryptography-1.1.1/src/_cffi_src/openssl/ec.py
new/cryptography-1.1.2/src/_cffi_src/openssl/ec.py
--- old/cryptography-1.1.1/src/_cffi_src/openssl/ec.py 2015-11-19
05:01:35.000000000 +0100
+++ new/cryptography-1.1.2/src/_cffi_src/openssl/ec.py 2015-12-10
20:53:42.000000000 +0100
@@ -15,7 +15,6 @@
TYPES = """
static const int Cryptography_HAS_EC;
static const int Cryptography_HAS_EC_1_0_1;
-static const int Cryptography_HAS_EC_NISTP_64_GCC_128;
static const int Cryptography_HAS_EC2M;
static const int Cryptography_HAS_EC_1_0_2;
@@ -185,10 +184,6 @@
const EC_METHOD *EC_GFp_mont_method();
const EC_METHOD *EC_GFp_nist_method();
-const EC_METHOD *EC_GFp_nistp224_method();
-const EC_METHOD *EC_GFp_nistp256_method();
-const EC_METHOD *EC_GFp_nistp521_method();
-
const EC_METHOD *EC_GF2m_simple_method();
int EC_METHOD_get_field_type(const EC_METHOD *);
@@ -359,17 +354,6 @@
#endif
-#if defined(OPENSSL_NO_EC) || OPENSSL_VERSION_NUMBER < 0x1000100f || \
- defined(OPENSSL_NO_EC_NISTP_64_GCC_128)
-static const long Cryptography_HAS_EC_NISTP_64_GCC_128 = 0;
-
-const EC_METHOD *(*EC_GFp_nistp224_method)(void) = NULL;
-const EC_METHOD *(*EC_GFp_nistp256_method)(void) = NULL;
-const EC_METHOD *(*EC_GFp_nistp521_method)(void) = NULL;
-#else
-static const long Cryptography_HAS_EC_NISTP_64_GCC_128 = 1;
-#endif
-
#if defined(OPENSSL_NO_EC) || defined(OPENSSL_NO_EC2M)
static const long Cryptography_HAS_EC2M = 0;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cryptography-1.1.1/src/cryptography/__about__.py
new/cryptography-1.1.2/src/cryptography/__about__.py
--- old/cryptography-1.1.1/src/cryptography/__about__.py 2015-11-19
05:01:40.000000000 +0100
+++ new/cryptography-1.1.2/src/cryptography/__about__.py 2015-12-10
20:53:42.000000000 +0100
@@ -14,7 +14,7 @@
" and primitives to Python developers.")
__uri__ = "https://github.com/pyca/cryptography"
-__version__ = "1.1.1"
+__version__ = "1.1.2"
__author__ = "The cryptography developers"
__email__ = "[email protected]"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/cryptography-1.1.1/src/cryptography/hazmat/bindings/openssl/_conditional.py
new/cryptography-1.1.2/src/cryptography/hazmat/bindings/openssl/_conditional.py
---
old/cryptography-1.1.1/src/cryptography/hazmat/bindings/openssl/_conditional.py
2015-11-19 05:01:35.000000000 +0100
+++
new/cryptography-1.1.2/src/cryptography/hazmat/bindings/openssl/_conditional.py
2015-12-10 20:53:42.000000000 +0100
@@ -150,12 +150,6 @@
"EC_KEY_set_public_key_affine_coordinates",
],
- "Cryptography_HAS_EC_NISTP_64_GCC_128": [
- "EC_GFp_nistp224_method",
- "EC_GFp_nistp256_method",
- "EC_GFp_nistp521_method",
- ],
-
"Cryptography_HAS_EC2M": [
"EC_GF2m_simple_method",
"EC_POINT_set_affine_coordinates_GF2m",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/cryptography-1.1.1/src/cryptography.egg-info/PKG-INFO
new/cryptography-1.1.2/src/cryptography.egg-info/PKG-INFO
--- old/cryptography-1.1.1/src/cryptography.egg-info/PKG-INFO 2015-11-19
05:02:00.000000000 +0100
+++ new/cryptography-1.1.2/src/cryptography.egg-info/PKG-INFO 2015-12-10
20:55:24.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: cryptography
-Version: 1.1.1
+Version: 1.1.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
++++++ cryptography_vectors-1.1.1.tar.gz -> cryptography_vectors-1.1.2.tar.gz
++++++
/work/SRC/openSUSE:Factory/python-cryptography/cryptography_vectors-1.1.1.tar.gz
/work/SRC/openSUSE:Factory/.python-cryptography.new/cryptography_vectors-1.1.2.tar.gz
differ: char 5, line 1