From 7da22aa4795c7c0667f405bbfeeaa5e11bfbfef7e41c60aa1e0f33590bff2ae0 Mon Sep 17 00:00:00 2001
From: Denisart Benjamin
Date: Wed, 9 Oct 2013 17:24:39 +0000
Subject: [PATCH] Accepting request 202714 from
home:prusnak:branches:devel:languages:python
- updated to version 0.9
* added secp256k1 curve
* added deterministic (no entropy needed) signatures
* added py3.2/py3.3 compatibility
OBS-URL: https://build.opensuse.org/request/show/202714
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ecdsa?expand=0&rev=2
---
ecdsa-0.8.tar.gz | 3 ---
ecdsa-0.9.tar.gz | 3 +++
python-ecdsa.changes | 8 ++++++++
python-ecdsa.spec | 12 ++++++------
4 files changed, 17 insertions(+), 9 deletions(-)
delete mode 100644 ecdsa-0.8.tar.gz
create mode 100644 ecdsa-0.9.tar.gz
diff --git a/ecdsa-0.8.tar.gz b/ecdsa-0.8.tar.gz
deleted file mode 100644
index eea9c5f..0000000
--- a/ecdsa-0.8.tar.gz
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:926dbc7f31f5e099079884e1ae8121d25c43b17f1db48d77c9540cd1e40acc1a
-size 35754
diff --git a/ecdsa-0.9.tar.gz b/ecdsa-0.9.tar.gz
new file mode 100644
index 0000000..4a3bfd5
--- /dev/null
+++ b/ecdsa-0.9.tar.gz
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3f283a4769220dc59587677d264c6687ecd0dc068d6ad792d891d53757735800
+size 45178
diff --git a/python-ecdsa.changes b/python-ecdsa.changes
index 237df24..1fb5c32 100644
--- a/python-ecdsa.changes
+++ b/python-ecdsa.changes
@@ -1,3 +1,11 @@
+-------------------------------------------------------------------
+Wed Oct 9 13:51:36 UTC 2013 - prusnak@opensuse.org
+
+- updated to version 0.9
+ * added secp256k1 curve
+ * added deterministic (no entropy needed) signatures
+ * added py3.2/py3.3 compatibility
+
-------------------------------------------------------------------
Fri Dec 14 18:51:58 UTC 2012 - prusnak@opensuse.org
diff --git a/python-ecdsa.spec b/python-ecdsa.spec
index 957198a..0ee5e83 100644
--- a/python-ecdsa.spec
+++ b/python-ecdsa.spec
@@ -1,7 +1,7 @@
#
# spec file for package python-ecdsa
#
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -16,18 +16,17 @@
Name: python-ecdsa
-Version: 0.8
+Version: 0.9
Release: 0
License: MIT
Summary: ECDSA cryptographic signature library (pure python)
Url: http://github.com/warner/python-ecdsa
Group: Development/Languages/Python
-Source: http://pypi.python.org/packages/source/e/ecdsa/ecdsa-%{version}.tar.gz
+Source: https://pypi.python.org/packages/source/e/ecdsa/ecdsa-%{version}.tar.gz
BuildRequires: python-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
%else
BuildArch: noarch
%endif
@@ -44,13 +43,14 @@ into other protocols.
%setup -q -n ecdsa-%{version}
%build
-CFLAGS="%{optflags}" python setup.py build
+python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%files
%defattr(-,root,root,-)
+%doc LICENSE NEWS README.md
%{python_sitelib}/*
-%changelog
+%changelog
\ No newline at end of file