From e0b80da48818b78ea4a1d056ec3083e3bf53b503 Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Wed, 24 Apr 2019 19:27:49 +0200 Subject: app-arch/ipkg-utils: remove unused patches Signed-off-by: Michael Mair-Keimberger Closes: https://github.com/gentoo/gentoo/pull/11813 Signed-off-by: Aaron Bauman --- .../files/ipkg-utils-1.7.050831-hashlib.patch | 30 ---------------------- 1 file changed, 30 deletions(-) delete mode 100644 app-arch/ipkg-utils/files/ipkg-utils-1.7.050831-hashlib.patch (limited to 'app-arch/ipkg-utils/files/ipkg-utils-1.7.050831-hashlib.patch') diff --git a/app-arch/ipkg-utils/files/ipkg-utils-1.7.050831-hashlib.patch b/app-arch/ipkg-utils/files/ipkg-utils-1.7.050831-hashlib.patch deleted file mode 100644 index e7cdf2de8c82..000000000000 --- a/app-arch/ipkg-utils/files/ipkg-utils-1.7.050831-hashlib.patch +++ /dev/null @@ -1,30 +0,0 @@ ---- ipkg.py -+++ ipkg.py -@@ -36,12 +36,17 @@ - import os - import sys - import glob --import md5 - import re - import string - import commands - from stat import ST_SIZE - -+try: -+ from hashlib import md5 -+except ImportError: -+ import md5 -+ md5 = md5.new -+ - class Version: - """A class for holding parsed package version information.""" - def __init__(self, epoch, version): -@@ -136,7 +141,7 @@ - - # compute the MD5. - f = open(fn, "r") -- sum = md5.new() -+ sum = md5() - while 1: - data = f.read(1024) - if not data: break -- cgit v1.2.3-65-gdbad