Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/p7zip/files/
Date: Sun, 03 Jul 2016 11:57:12
Message-Id: 1467545317.ac6036efa7017066f002def3205048eec2f8c066.monsieurp@gentoo
1 commit: ac6036efa7017066f002def3205048eec2f8c066
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Fri Jul 1 19:55:35 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 3 11:28:37 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac6036ef
7
8 app-arch/p7zip: remove unused patch
9
10 Closes: https://github.com/gentoo/gentoo/pull/1812
11
12 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
13
14 app-arch/p7zip/files/p7zip-9.20.1-long_rar_pwd.patch | 17 -----------------
15 1 file changed, 17 deletions(-)
16
17 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
18 deleted file mode 100644
19 index ea7a90b..0000000
20 --- a/app-arch/p7zip/files/p7zip-9.20.1-long_rar_pwd.patch
21 +++ /dev/null
22 @@ -1,17 +0,0 @@
23 ---- ./CPP/7zip/Crypto/Sha1.cpp 2010-10-20 06:56:08.000000000 +0200
24 -+++ CPP/7zip/Crypto/Sha1.cpp.new 2013-09-15 09:19:51.000000000 +0200
25 -@@ -148,10 +148,10 @@
26 - for (int i = 0; i < kBlockSizeInWords; i++)
27 - {
28 - UInt32 d = _buffer[i];
29 -- data[i * 4 + 0 - kBlockSize] = (Byte)(d);
30 -- data[i * 4 + 1 - kBlockSize] = (Byte)(d >> 8);
31 -- data[i * 4 + 2 - kBlockSize] = (Byte)(d >> 16);
32 -- data[i * 4 + 3 - kBlockSize] = (Byte)(d >> 24);
33 -+ data[(int)i * 4 + 0 - (int)kBlockSize] = (Byte)(d);
34 -+ data[(int)i * 4 + 1 - (int)kBlockSize] = (Byte)(d >> 8);
35 -+ data[(int)i * 4 + 2 - (int)kBlockSize] = (Byte)(d >> 16);
36 -+ data[(int)i * 4 + 3 - (int)kBlockSize] = (Byte)(d >> 24);
37 - }
38 - returnRes = rar350Mode;
39 - }