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 009221382DE for ; Sun, 3 Jul 2016 11:57:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9AD09E0854; Sun, 3 Jul 2016 11:57:07 +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 3E309E0854 for ; Sun, 3 Jul 2016 11:57:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 AD7E0340DAD for ; Sun, 3 Jul 2016 11:57:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15B612441 for ; Sun, 3 Jul 2016 11:57:03 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1467545317.ac6036efa7017066f002def3205048eec2f8c066.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/p7zip/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/p7zip/files/p7zip-9.20.1-long_rar_pwd.patch X-VCS-Directories: app-arch/p7zip/files/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: ac6036efa7017066f002def3205048eec2f8c066 X-VCS-Branch: master Date: Sun, 3 Jul 2016 11:57:03 +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: 8323f41d-0e87-4d15-b9ae-0089acf7f724 X-Archives-Hash: 2a5045bb4fb105437a3f7708f9e7de34 commit: ac6036efa7017066f002def3205048eec2f8c066 Author: Michael Mair-Keimberger (asterix) gmail com> AuthorDate: Fri Jul 1 19:55:35 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sun Jul 3 11:28:37 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac6036ef app-arch/p7zip: remove unused patch Closes: https://github.com/gentoo/gentoo/pull/1812 Signed-off-by: Patrice Clement gentoo.org> app-arch/p7zip/files/p7zip-9.20.1-long_rar_pwd.patch | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/app-arch/p7zip/files/p7zip-9.20.1-long_rar_pwd.patch b/app-arch/p7zip/files/p7zip-9.20.1-long_rar_pwd.patch deleted file mode 100644 index ea7a90b..0000000 --- a/app-arch/p7zip/files/p7zip-9.20.1-long_rar_pwd.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- ./CPP/7zip/Crypto/Sha1.cpp 2010-10-20 06:56:08.000000000 +0200 -+++ CPP/7zip/Crypto/Sha1.cpp.new 2013-09-15 09:19:51.000000000 +0200 -@@ -148,10 +148,10 @@ - for (int i = 0; i < kBlockSizeInWords; i++) - { - UInt32 d = _buffer[i]; -- data[i * 4 + 0 - kBlockSize] = (Byte)(d); -- data[i * 4 + 1 - kBlockSize] = (Byte)(d >> 8); -- data[i * 4 + 2 - kBlockSize] = (Byte)(d >> 16); -- data[i * 4 + 3 - kBlockSize] = (Byte)(d >> 24); -+ data[(int)i * 4 + 0 - (int)kBlockSize] = (Byte)(d); -+ data[(int)i * 4 + 1 - (int)kBlockSize] = (Byte)(d >> 8); -+ data[(int)i * 4 + 2 - (int)kBlockSize] = (Byte)(d >> 16); -+ data[(int)i * 4 + 3 - (int)kBlockSize] = (Byte)(d >> 24); - } - returnRes = rar350Mode; - }