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 322341381F1 for ; Sat, 8 Oct 2016 17:59:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C318E0B73; Sat, 8 Oct 2016 17:59:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E1E19E0B73 for ; Sat, 8 Oct 2016 17:59:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D747A34153C for ; Sat, 8 Oct 2016 17:59:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C17824AC for ; Sat, 8 Oct 2016 17:59:52 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1475949571.a97fc63c8d1f44d55c5adbf271a57e2b2f07ddaa.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-cluster/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-cluster/files/python-cluster-python3.patch X-VCS-Directories: dev-python/python-cluster/files/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: a97fc63c8d1f44d55c5adbf271a57e2b2f07ddaa X-VCS-Branch: master Date: Sat, 8 Oct 2016 17:59:52 +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-Archives-Salt: 4bd5c2af-2e45-4d5e-a896-f78d797d4dcd X-Archives-Hash: aabebb78894c3e8078ed567c5caec89b commit: a97fc63c8d1f44d55c5adbf271a57e2b2f07ddaa Author: Michael Mair-Keimberger (asterix) gmail com> AuthorDate: Mon Sep 19 17:37:49 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Oct 8 17:59:31 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a97fc63c dev-python/python-cluster: remove unused patch Closes: https://github.com/gentoo/gentoo/pull/2363 Signed-off-by: David Seifert gentoo.org> .../files/python-cluster-python3.patch | 37 ---------------------- 1 file changed, 37 deletions(-) diff --git a/dev-python/python-cluster/files/python-cluster-python3.patch b/dev-python/python-cluster/files/python-cluster-python3.patch deleted file mode 100644 index 3294d70..00000000 --- a/dev-python/python-cluster/files/python-cluster-python3.patch +++ /dev/null @@ -1,37 +0,0 @@ ---- cluster.py.old 2010-10-01 14:41:55.000000000 +0200 -+++ cluster.py 2010-10-01 14:42:32.000000000 +0200 -@@ -130,7 +130,7 @@ - format = " %%%is |" % maxlen - format = "|" + format*colcount - for row in list: -- print format % tuple(row) -+ print (format % tuple(row)) - - def magnitude(a): - "calculates the magnitude of a vecor" -@@ -239,12 +239,12 @@ - """ - Pretty-prints this cluster. Useful for debuging - """ -- print depth*" " + "[level %s]" % self.__level -+ print (depth*" " + "[level %s]" % self.__level) - for item in self.__items: - if isinstance(item, Cluster): - item.display(depth+1) - else: -- print depth*" "+"%s" % item -+ print (depth*" "+"%s" % item) - - def topology(self): - """ ---- cluster.py.old 2010-10-01 14:48:54.000000000 +0200 -+++ cluster.py 2010-10-01 14:49:21.000000000 +0200 -@@ -429,7 +429,7 @@ - elif method == 'uclus': - self.linkage = self.uclusDistance - else: -- raise ValueError, 'distance method must be one of single, complete, average of uclus' -+ raise ValueError('distance method must be one of single, complete, average of uclus') - - def uclusDistance(self, x, y): - """