Hello community,

here is the log from the commit of package python-ecdsa for openSUSE:Factory 
checked in at 2014-01-15 16:26:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-ecdsa (Old)
 and      /work/SRC/openSUSE:Factory/.python-ecdsa.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-ecdsa"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-ecdsa/python-ecdsa.changes        
2013-12-03 10:32:14.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.python-ecdsa.new/python-ecdsa.changes   
2014-01-15 16:26:49.000000000 +0100
@@ -1,0 +2,6 @@
+Mon Jan 13 13:55:47 UTC 2014 - dmuel...@suse.com
+
+- update to 0.10:
+  * Make the secp256k1 available
+
+-------------------------------------------------------------------

Old:
----
  ecdsa-0.9.tar.gz

New:
----
  ecdsa-0.10.tar.gz

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

Other differences:
------------------
++++++ python-ecdsa.spec ++++++
--- /var/tmp/diff_new_pack.6bw1nQ/_old  2014-01-15 16:26:49.000000000 +0100
+++ /var/tmp/diff_new_pack.6bw1nQ/_new  2014-01-15 16:26:49.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-ecdsa
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -13,15 +13,16 @@
 # published by the Open Source Initiative.
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
 
 
 Name:           python-ecdsa
-Version:        0.9
+Version:        0.10
 Release:        0
-License:        MIT
 Summary:        ECDSA cryptographic signature library (pure python)
-Url:            http://github.com/warner/python-ecdsa
+License:        MIT
 Group:          Development/Languages/Python
+Url:            http://github.com/warner/python-ecdsa
 Source:         
https://pypi.python.org/packages/source/e/ecdsa/ecdsa-%{version}.tar.gz
 BuildRequires:  python-devel
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ ecdsa-0.9.tar.gz -> ecdsa-0.10.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ecdsa-0.9/NEWS new/ecdsa-0.10/NEWS
--- old/ecdsa-0.9/NEWS  2013-10-02 01:56:15.000000000 +0200
+++ new/ecdsa-0.10/NEWS 2013-10-23 20:43:50.000000000 +0200
@@ -1,3 +1,7 @@
+* Release 0.10 (23 Oct 2013)
+
+Make the secp256k1 available in __init__.py too (thanks to Scott Bannert).
+
 * Release 0.9 (01 Oct 2013)
 
 Add secp256k1 curve (thanks to Benjamin Dauvergne). Add deterministic (no
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ecdsa-0.9/PKG-INFO new/ecdsa-0.10/PKG-INFO
--- old/ecdsa-0.9/PKG-INFO      2013-10-02 02:11:42.000000000 +0200
+++ new/ecdsa-0.10/PKG-INFO     2013-10-23 20:47:11.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: ecdsa
-Version: 0.9
+Version: 0.10
 Summary: ECDSA cryptographic signature library (pure python)
 Home-page: http://github.com/warner/python-ecdsa
 Author: Brian Warner
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ecdsa-0.9/ecdsa/__init__.py 
new/ecdsa-0.10/ecdsa/__init__.py
--- old/ecdsa-0.9/ecdsa/__init__.py     2013-10-02 01:13:25.000000000 +0200
+++ new/ecdsa-0.10/ecdsa/__init__.py    2013-10-23 20:43:50.000000000 +0200
@@ -1,10 +1,10 @@
 __all__ = ["curves", "der", "ecdsa", "ellipticcurve", "keys", "numbertheory",
            "test_pyecdsa", "util", "six"]
 from .keys import SigningKey, VerifyingKey, BadSignatureError, BadDigestError
-from .curves import NIST192p, NIST224p, NIST256p, NIST384p, NIST521p
+from .curves import NIST192p, NIST224p, NIST256p, NIST384p, NIST521p, SECP256k1
 
 _hush_pyflakes = [SigningKey, VerifyingKey, BadSignatureError, BadDigestError,
-                  NIST192p, NIST224p, NIST256p, NIST384p, NIST521p]
+                  NIST192p, NIST224p, NIST256p, NIST384p, NIST521p, SECP256k1]
 del _hush_pyflakes
 
 # This code comes from http://github.com/warner/python-ecdsa
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ecdsa-0.9/ecdsa/_version.py 
new/ecdsa-0.10/ecdsa/_version.py
--- old/ecdsa-0.9/ecdsa/_version.py     2013-10-02 02:11:41.000000000 +0200
+++ new/ecdsa-0.10/ecdsa/_version.py    2013-10-23 20:47:11.000000000 +0200
@@ -2,4 +2,4 @@
 # This file is originally generated from Git information by running 'setup.py
 # version'. Distribution tarballs contain a pre-generated copy of this file.
 
-__version__ = '0.9'
+__version__ = '0.10'

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to