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 0733E1396D0 for ; Sat, 2 Sep 2017 15:10:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 41C491FC05D; Sat, 2 Sep 2017 15:10:40 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 1F0F21FC05D for ; Sat, 2 Sep 2017 15:10:40 +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 268B4341665 for ; Sat, 2 Sep 2017 15:10:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 988248B75 for ; Sat, 2 Sep 2017 15:10:37 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1504365027.40d3efb87c4641554457e53d9df5d038430a019e.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyavm/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyavm/files/pyavm-0.9.2-deprecated-fromstring.patch X-VCS-Directories: dev-python/pyavm/files/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 40d3efb87c4641554457e53d9df5d038430a019e X-VCS-Branch: master Date: Sat, 2 Sep 2017 15:10:37 +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: 2ece4fed-0cc7-4cdd-86fd-6b523cc49ccc X-Archives-Hash: f77437846d27a8dcf57a1495c3805182 commit: 40d3efb87c4641554457e53d9df5d038430a019e Author: Michael Mair-Keimberger (asterix) gmail com> AuthorDate: Wed Aug 16 12:20:43 2017 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sat Sep 2 15:10:27 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40d3efb8 dev-python/pyavm: remove unused patch .../pyavm/files/pyavm-0.9.2-deprecated-fromstring.patch | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/dev-python/pyavm/files/pyavm-0.9.2-deprecated-fromstring.patch b/dev-python/pyavm/files/pyavm-0.9.2-deprecated-fromstring.patch deleted file mode 100644 index 0e16177b887..00000000000 --- a/dev-python/pyavm/files/pyavm-0.9.2-deprecated-fromstring.patch +++ /dev/null @@ -1,15 +0,0 @@ -Description: Exception: fromstring() has been removed. Now frombytes() is called instead. -Author: Josue Ortega -Last-Update: 2015-12-20 - ---- a/pyavm/tests/test_main.py -+++ b/pyavm/tests/test_main.py -@@ -46,7 +46,7 @@ - @pytest.mark.parametrize('filename', XML_FILES_WCS) - def test_to_wcs_target_image(filename, tmpdir): - from PIL import Image -- image = Image.fromstring(data=b"1111", size=(2,2), mode="L") -+ image = Image.frombytes(data=b"1111", size=(2,2), mode="L") - image_file = tmpdir.join('test.png').strpath - image.save(image_file) - image.close()