forked from pool/python-passlib
- Add patch to fix libxcrypt compatibility:
* python-passlib-1.7.1-libxcrypt-compat.patch OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-passlib?expand=0&rev=33
This commit is contained in:
committed by
Git OBS Bridge
parent
81869a0620
commit
a540d3bc73
24
python-passlib-1.7.1-libxcrypt-compat.patch
Normal file
24
python-passlib-1.7.1-libxcrypt-compat.patch
Normal file
@@ -0,0 +1,24 @@
|
||||
Index: passlib-1.7.1/passlib/tests/test_handlers.py
|
||||
===================================================================
|
||||
--- passlib-1.7.1.orig/passlib/tests/test_handlers.py
|
||||
+++ passlib-1.7.1/passlib/tests/test_handlers.py
|
||||
@@ -176,7 +176,8 @@ class _bsdi_crypt_test(HandlerCase):
|
||||
|
||||
platform_crypt_support = [
|
||||
("freebsd|openbsd|netbsd|darwin", True),
|
||||
- ("linux|solaris", False),
|
||||
+ ("solaris", False),
|
||||
+ # linux - may be present in libxcrypt
|
||||
]
|
||||
|
||||
def test_77_fuzz_input(self, **kwds):
|
||||
@@ -1253,7 +1254,8 @@ class _sha1_crypt_test(HandlerCase):
|
||||
|
||||
platform_crypt_support = [
|
||||
("netbsd", True),
|
||||
- ("freebsd|openbsd|linux|solaris|darwin", False),
|
||||
+ ("freebsd|openbsd|solaris|darwin", False),
|
||||
+ # linux - may be present in libxcrypt
|
||||
]
|
||||
|
||||
# create test cases for specific backends
|
Reference in New Issue
Block a user