From 9452a6e87b6c2c70513bc47a2470bf9f1168920e Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 13 Jun 2020 10:39:22 +0100 Subject: gentoo resync : 13.06.2020 --- dev-python/passlib/Manifest | 3 +- dev-python/passlib/files/passlib-1.7.1-tests.patch | 33 ---------------------- dev-python/passlib/passlib-1.7.2.ebuild | 2 +- 3 files changed, 2 insertions(+), 36 deletions(-) delete mode 100644 dev-python/passlib/files/passlib-1.7.1-tests.patch (limited to 'dev-python/passlib') diff --git a/dev-python/passlib/Manifest b/dev-python/passlib/Manifest index 2bd923a9f38d..ddad6603e750 100644 --- a/dev-python/passlib/Manifest +++ b/dev-python/passlib/Manifest @@ -1,6 +1,5 @@ -AUX passlib-1.7.1-tests.patch 1552 BLAKE2B 86cfedd409d6aff983c31ec33362577e5e353fa00fafed47927cec318d79d79fea75af80a283ef23b6453fb2da1bb5c46ae513b784e97941a8a45dfd4089bb26 SHA512 ccdf6814890e1c25b5eed9b2685ca2778fe155c3f7d75f2b76433a91785baa93b692aa6ee0f3a85b768f3b0189be185acce1e570961d28540d8f9dd12a81db7d AUX passlib-1.7.2-py39.patch 870 BLAKE2B 87781afb87427dd78c9040babdb2c3be9f8b14099bee1d1e0cbd0a1bc0deee56b0ba0f65adaa5a9bbd81fd998152661db5a602127a74e59bc1aa07d1ce1e1c46 SHA512 a77f51cad2c460abc41b99cf59c76f33c1a15a51b4237c968185dc46c11c6e4aa1dd866082df13cd9b34f7496c9750c276c18dab8ea08056200d125e3dccb324 AUX passlib-1.7.2-pypy3.patch 3117 BLAKE2B c68b96cddf48038198e7d5d35da33c581c2abcf1aef75e6ca556c39a87e242e9990ed17235596ffb68a4154eec9acb6fcb0d651a04856a93f79a993865d702f7 SHA512 808fc0f3067f30f23118b5222d90f86910b3e681c585d1bdb237a2b954ff99936105042f2a0fce8f4ae2b0301cd201be68905be316fed5ebfd81ccc1cf29fd1a DIST passlib-1.7.2.tar.gz 649654 BLAKE2B 40279113d9ff633cea47222f2d72af0abee78dc52a9b46adf66aaae213594eaae7f245cc80004f85b5055b882741b4bedfd81ee39132db23760d37a34e87ac6a SHA512 1ea0654b177b5ab2e1a7e5c3949642c34805ace6e4e4a0f82fafdb3f374edd99c667906ce598c335b668da049860648d5cbebb3e62d775898d5b0cb8cfc7bf53 -EBUILD passlib-1.7.2.ebuild 1019 BLAKE2B 02b96bfd68d6e1a1969e66688ceaca528f46e9489651ce5704c4b9653d7e2821abdc759791ee496bcbf6f40c220b87c8464f35940fcd1410b13f63cd8c7ed903 SHA512 ab0bfef4de8726aacab5a5901818ff7ae1ec0f4afd89e4939ffd84349d310aa1e4fa597e44c89f9470b7fbde073e10785d78dd533c8851cffb24876a21ce8b21 +EBUILD passlib-1.7.2.ebuild 1030 BLAKE2B 8188cff70bb46b853874d02d891cddb8e091bb501e509b96e8ce2b43f1846f9a61d19b772321868fb41ee10da2208b57d121128fb49966ba146ff9f25a94ef25 SHA512 a861ae15b973688dd4754955436318d406fc6edbd8d4b311124ed83849fdc4e53935a47e7135fdbfafd664d10b8f4a3eaecb405f7913ab6f319bb0189e1e5a1f MISC metadata.xml 794 BLAKE2B 717057e0abe888ef6c692a0777d9c106426238d690934a852fea3084154dfa190546c1779c6da9fbda61f6b204bfb152cf391727c4225baf2f0d6030d4ad6be5 SHA512 baf29cb74e295119b984f3acc3470f63811f9ee49849e97b1808354c15be121e723fabafb053a0a7c94032faa7747d149d000b68acfccd919ea4ec9d28d2f930 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, diff --git a/dev-python/passlib/passlib-1.7.2.ebuild b/dev-python/passlib/passlib-1.7.2.ebuild index da3cd45d5bee..1a5df3be3aab 100644 --- a/dev-python/passlib/passlib-1.7.2.ebuild +++ b/dev-python/passlib/passlib-1.7.2.ebuild @@ -11,7 +11,7 @@ HOMEPAGE="https://bitbucket.org/ecollins/passlib/wiki/Home/" SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz" LICENSE="BSD-2" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc64 ~sparc x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86" SLOT="0" IUSE="+bcrypt doc +scrypt +totp" -- cgit v1.2.3