Skip to content
Snippets Groups Projects
Commit 2b76fd38 authored by Robbie Harwood's avatar Robbie Harwood Committed by Martin
Browse files

Import Debian changes 1.1.3-2

python-gssapi (1.1.3-2) unstable; urgency=high
.
  * Rebuild and patch since python3-enum34 is gone (Closes: #799254)
  * Remove old patches that have merged upstream
parent 6dd37068
No related branches found
No related tags found
No related merge requests found
python-gssapi (1.1.3-2) unstable; urgency=high
* Rebuild and patch since python3-enum34 is gone (Closes: #799254)
* Remove old patches that have merged upstream
-- Robbie Harwood (frozencemetery) <rharwood@club.cc.cmu.edu> Fri, 25 Sep 2015 12:31:19 -0400
python-gssapi (1.1.3-1) unstable; urgency=medium
* New upstream release
......
Subject: enum has eclipsed enum34
Author: Robbie Harwood (frozencemetery) <rharwood@club.cc.cmu.edu>
Forwarded: https://github.com/pythongssapi/python-gssapi/pull/84
--- a/setup.py
+++ b/setup.py
@@ -206,6 +206,13 @@
re.sub(r'\.\. code-block:: \w+', '::',
open('README.txt').read())))
+install_requires = [
+ 'decorator',
+ 'six'
+]
+if sys.version_info < (3, 4):
+ install_requires.append('enum34')
+
setup(
name='gssapi',
version='1.1.3',
@@ -259,9 +266,5 @@
extension_file('password_add', 'gss_add_cred_with_password'),
]),
keywords=['gssapi', 'security'],
- install_requires=[
- 'enum34',
- 'decorator',
- 'six'
- ]
+ install_requires=install_requires
)
Author: Simo Sorce <simo@redhat.com>
Origin: vendor
Forwarded: no
Subject: Don't require tox for testing
This skips all the virtualenv stuff that upstream uses
--- a/setup.py
+++ b/setup.py
@@ -228,7 +228,4 @@
'decorator',
'six'
],
- tests_require=[
- 'tox'
- ]
)
no-tox.patch
spelling.patch
enum34.patch
Subject: Spelling error (compatability)
Author: Robbie Harwood (work) <rharwood@redhat.com>
Forwarded: https://github.com/pythongssapi/python-gssapi/pull/66
--- a/gssapi/raw/sec_contexts.pyx
+++ b/gssapi/raw/sec_contexts.pyx
@@ -647,7 +647,7 @@
Returns:
bytes: the output token (if remote deletion is requested). Generally
- this is None, but bytes for compatability.
+ this is None, but bytes for compatibility.
Raises:
MissingContextError
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment