From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D70B31382C5 for ; Tue, 2 Jun 2020 04:28:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63B5DE08FC; Tue, 2 Jun 2020 04:28:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 48C8CE08FC for ; Tue, 2 Jun 2020 04:28:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3EECA34EC46 for ; Tue, 2 Jun 2020 04:28:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 469CA295 for ; Tue, 2 Jun 2020 04:28:21 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1591072081.eb96dbdc46aa5b113f22e731a071861af0451cd5.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/passlib/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/passlib/files/passlib-1.7.1-tests.patch X-VCS-Directories: dev-python/passlib/files/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: eb96dbdc46aa5b113f22e731a071861af0451cd5 X-VCS-Branch: master Date: Tue, 2 Jun 2020 04:28:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bed9b8ba-28e5-4c50-b4b5-a3fbe12305aa X-Archives-Hash: 3e2fa7daac868d14aa55d02805c8aa74 commit: eb96dbdc46aa5b113f22e731a071861af0451cd5 Author: Michael Mair-Keimberger gmail com> AuthorDate: Tue May 19 19:23:07 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Tue Jun 2 04:28:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb96dbdc dev-python/passlib: remove unused patch Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: Aaron Bauman gentoo.org> dev-python/passlib/files/passlib-1.7.1-tests.patch | 33 ---------------------- 1 file changed, 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 697262fcd9b..00000000000 --- 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,