[Python-modules-commits] r31833 - in packages/python-ecdsa/trunk/debian (4 files)

sramacher at users.alioth.debian.org sramacher at users.alioth.debian.org
Mon Feb 9 00:04:21 UTC 2015


    Date: Monday, February 9, 2015 @ 00:04:20
  Author: sramacher
Revision: 31833

* New upstream release.
* debian/watch: Use PyPI redirector.
* debian/patches/system-six.patch: Refresh patch.
* debian/control: Bump Standards-Version.

Modified:
  packages/python-ecdsa/trunk/debian/changelog
  packages/python-ecdsa/trunk/debian/control
  packages/python-ecdsa/trunk/debian/patches/system-six.patch
  packages/python-ecdsa/trunk/debian/watch

Modified: packages/python-ecdsa/trunk/debian/changelog
===================================================================
--- packages/python-ecdsa/trunk/debian/changelog	2015-02-08 20:47:16 UTC (rev 31832)
+++ packages/python-ecdsa/trunk/debian/changelog	2015-02-09 00:04:20 UTC (rev 31833)
@@ -1,3 +1,12 @@
+python-ecdsa (0.13-1) experimental; urgency=medium
+
+  * New upstream release.
+  * debian/watch: Use PyPI redirector.
+  * debian/patches/system-six.patch: Refresh patch.
+  * debian/control: Bump Standards-Version.
+
+ -- Sebastian Ramacher <sramacher at debian.org>  Mon, 09 Feb 2015 00:59:40 +0100
+
 python-ecdsa (0.11-1) unstable; urgency=medium
 
   * New upstream release.

Modified: packages/python-ecdsa/trunk/debian/control
===================================================================
--- packages/python-ecdsa/trunk/debian/control	2015-02-08 20:47:16 UTC (rev 31832)
+++ packages/python-ecdsa/trunk/debian/control	2015-02-09 00:04:20 UTC (rev 31833)
@@ -14,7 +14,7 @@
 Homepage: https://github.com/warner/python-ecdsa
 Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-ecdsa/trunk/
 Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-ecdsa/trunk/
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
 X-Python-Version: >= 2.6
 X-Python3-Version: >= 3.2
 XS-Testsuite: autopkgtest

Modified: packages/python-ecdsa/trunk/debian/patches/system-six.patch
===================================================================
--- packages/python-ecdsa/trunk/debian/patches/system-six.patch	2015-02-08 20:47:16 UTC (rev 31832)
+++ packages/python-ecdsa/trunk/debian/patches/system-six.patch	2015-02-09 00:04:20 UTC (rev 31833)
@@ -2,20 +2,20 @@
 Author: Sebastian Ramacher <sramacher at debian.org>
 Last-Update: 2013-12-09
 
---- python-ecdsa-0.10.orig/ecdsa/der.py
-+++ python-ecdsa-0.10/ecdsa/der.py
-@@ -2,7 +2,7 @@ from __future__ import division
+--- a/ecdsa/der.py
++++ b/ecdsa/der.py
+@@ -2,7 +2,7 @@
  
  import binascii
  import base64
--from .six import int2byte, b, PY3, integer_types, text_type
-+from six import int2byte, b, PY3, integer_types, text_type
+-from .six import int2byte, b, integer_types, text_type
++from six import int2byte, b, integer_types, text_type
  
  class UnexpectedDER(Exception):
      pass
---- python-ecdsa-0.10.orig/ecdsa/ecdsa.py
-+++ python-ecdsa-0.10/ecdsa/ecdsa.py
-@@ -53,7 +53,7 @@ Revision history:
+--- a/ecdsa/ecdsa.py
++++ b/ecdsa/ecdsa.py
+@@ -53,7 +53,7 @@
  Written in 2005 by Peter Pearson and placed in the public domain.
  """
  
@@ -24,8 +24,8 @@
  from . import ellipticcurve
  from . import numbertheory
  import random
---- python-ecdsa-0.10.orig/ecdsa/ellipticcurve.py
-+++ python-ecdsa-0.10/ecdsa/ellipticcurve.py
+--- a/ecdsa/ellipticcurve.py
++++ b/ecdsa/ellipticcurve.py
 @@ -34,7 +34,7 @@
  
  from __future__ import division
@@ -35,9 +35,9 @@
  from . import numbertheory
  
  class CurveFp( object ):
---- python-ecdsa-0.10.orig/ecdsa/keys.py
-+++ python-ecdsa-0.10/ecdsa/keys.py
-@@ -7,7 +7,7 @@ from .curves import NIST192p, find_curve
+--- a/ecdsa/keys.py
++++ b/ecdsa/keys.py
+@@ -7,7 +7,7 @@
  from .util import string_to_number, number_to_string, randrange
  from .util import sigencode_string, sigdecode_string
  from .util import oid_ecPublicKey, encoded_oid_ecPublicKey
@@ -46,8 +46,8 @@
  from hashlib import sha1
  
  class BadSignatureError(Exception):
---- python-ecdsa-0.10.orig/ecdsa/numbertheory.py
-+++ python-ecdsa-0.10/ecdsa/numbertheory.py
+--- a/ecdsa/numbertheory.py
++++ b/ecdsa/numbertheory.py
 @@ -11,8 +11,8 @@
  
  from __future__ import division
@@ -58,10 +58,10 @@
 +from six.moves import reduce
  
  import math
- import types
---- python-ecdsa-0.10.orig/ecdsa/rfc6979.py
-+++ python-ecdsa-0.10/ecdsa/rfc6979.py
-@@ -12,7 +12,7 @@ Many thanks to Coda Hale for his impleme
+ 
+--- a/ecdsa/rfc6979.py
++++ b/ecdsa/rfc6979.py
+@@ -12,7 +12,7 @@
  import hmac
  from binascii import hexlify
  from .util import number_to_string, number_to_string_crop
@@ -70,9 +70,9 @@
  
  try:
      bin(0)
---- python-ecdsa-0.10.orig/ecdsa/test_pyecdsa.py
-+++ python-ecdsa-0.10/ecdsa/test_pyecdsa.py
-@@ -8,7 +8,7 @@ import subprocess
+--- a/ecdsa/test_pyecdsa.py
++++ b/ecdsa/test_pyecdsa.py
+@@ -8,7 +8,7 @@
  from binascii import hexlify, unhexlify
  from hashlib import sha1, sha256, sha512
  
@@ -81,9 +81,9 @@
  from .keys import SigningKey, VerifyingKey
  from .keys import BadSignatureError
  from . import util
---- python-ecdsa-0.10.orig/ecdsa/util.py
-+++ python-ecdsa-0.10/ecdsa/util.py
-@@ -6,7 +6,7 @@ import binascii
+--- a/ecdsa/util.py
++++ b/ecdsa/util.py
+@@ -6,7 +6,7 @@
  from hashlib import sha256
  from . import der
  from .curves import orderlen
@@ -92,14 +92,3 @@
  
  # RFC5480:
  #   The "unrestricted" algorithm identifier is:
---- python-ecdsa-0.10.orig/setup.py
-+++ python-ecdsa-0.10/setup.py
-@@ -2,7 +2,7 @@
- import os, subprocess, re
- from distutils.core import setup, Command
- from distutils.command.sdist import sdist as _sdist
--from ecdsa.six import print_
-+from six import print_
- 
- class Test(Command):
-     description = "run unit tests"

Modified: packages/python-ecdsa/trunk/debian/watch
===================================================================
--- packages/python-ecdsa/trunk/debian/watch	2015-02-08 20:47:16 UTC (rev 31832)
+++ packages/python-ecdsa/trunk/debian/watch	2015-02-09 00:04:20 UTC (rev 31833)
@@ -1,3 +1,3 @@
 version=3
-https://pypi.python.org/pypi/ecdsa \
-  .*/ecdsa-(\d\S*)\.tar\.gz
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/ecdsa/ecdsa-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))




More information about the Python-modules-commits mailing list