summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2020-05-19 21:23:07 +0200
committerAaron Bauman <bman@gentoo.org>2020-06-02 00:28:01 -0400
commiteb96dbdc46aa5b113f22e731a071861af0451cd5 (patch)
treec92142f1f57a86e467adbd8ba29c7c135ca6595e /dev-python/passlib
parentdev-python/parver: remove unused patch (diff)
downloadgentoo-eb96dbdc46aa5b113f22e731a071861af0451cd5.tar.gz
gentoo-eb96dbdc46aa5b113f22e731a071861af0451cd5.tar.bz2
gentoo-eb96dbdc46aa5b113f22e731a071861af0451cd5.zip
dev-python/passlib: remove unused patch
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'dev-python/passlib')
-rw-r--r--dev-python/passlib/files/passlib-1.7.1-tests.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/dev-python/passlib/files/passlib-1.7.1-tests.patch b/dev-python/passlib/files/passlib-1.7.1-tests.patch
deleted file mode 100644
index 697262fcd9b3..000000000000
--- a/dev-python/passlib/files/passlib-1.7.1-tests.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-Only in passlib-1.7.1.orig/passlib/tests: .utils.py.swp
-Only in passlib-1.7.1/passlib/tests: .utils.py.un~
-diff -ur passlib-1.7.1.orig/passlib/tests/utils.py passlib-1.7.1/passlib/tests/utils.py
---- passlib-1.7.1.orig/passlib/tests/utils.py 2019-11-19 21:39:07.373344777 -0800
-+++ passlib-1.7.1/passlib/tests/utils.py 2019-11-19 21:39:13.525351120 -0800
-@@ -16,6 +16,7 @@
- import tempfile
- import threading
- import time
-+import unittest
- from passlib.exc import PasslibHashWarning, PasslibConfigWarning
- from passlib.utils.compat import PY3, JYTHON
- import warnings
-@@ -3149,6 +3150,7 @@
- self.assertRaises(MissingBackendError, self.do_genhash, 'stub', hash)
- self.assertRaises(MissingBackendError, self.do_verify, 'stub', hash)
-
-+ @unittest.skip("fails due to unexpected support on linux, probably out of date")
- def test_82_crypt_support(self):
- """test platform-specific crypt() support detection"""
- # NOTE: this is mainly just a sanity check to ensure the runtime
-diff -ur passlib-1.7.1.orig/passlib/utils/__init__.py passlib-1.7.1/passlib/utils/__init__.py
---- passlib-1.7.1.orig/passlib/utils/__init__.py 2019-11-19 22:55:46.438000094 -0800
-+++ passlib-1.7.1/passlib/utils/__init__.py 2019-11-19 22:56:37.144958345 -0800
-@@ -903,7 +903,7 @@
-
- # the current time, to whatever precision os uses
- time.time(),
-- time.clock(),
-+ tick(),
-
- # if urandom available, might as well mix some bytes in.
- os.urandom(32).decode("latin-1") if has_urandom else 0,