From a259fdb296a43b89028edb342ca9967a1b50ab5d Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Tue, 28 Aug 2012 08:41:39 +0200 Subject: opkg-utils: bump SRCREV for Packages cache fix and other fixes (From OE-Core rev: ce5b46980f35097bd5fcc8195c5d5be1b980c870) Signed-off-by: Martin Jansa Signed-off-by: Koen Kooi Signed-off-by: Richard Purdie --- .../opkg-utils/arfile_header_split.patch | 27 ---------------------- 1 file changed, 27 deletions(-) delete mode 100644 meta/recipes-devtools/opkg-utils/opkg-utils/arfile_header_split.patch (limited to 'meta/recipes-devtools/opkg-utils/opkg-utils/arfile_header_split.patch') diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils/arfile_header_split.patch b/meta/recipes-devtools/opkg-utils/opkg-utils/arfile_header_split.patch deleted file mode 100644 index b679f8b970..0000000000 --- a/meta/recipes-devtools/opkg-utils/opkg-utils/arfile_header_split.patch +++ /dev/null @@ -1,27 +0,0 @@ -From: Scott Anderson -Subject: ipkg-utils: Make arfile.py handle six digit UIDs - - Essentially, the problem is that arfile.py is splitting the ar header with - white-space instead of fixed-width fields, so two fields would get treated - as a single field. This makes things better than before as it now honors - the fixed field widths. - -Upstream-Status: Pending (there is no upstream after openmoko imploded) - ---- ipkg-utils/arfile.py.orig 2010-09-29 13:38:15.000000000 -0700 -+++ ipkg-utils/arfile.py 2010-10-01 16:06:00.000000000 -0700 -@@ -74,7 +74,12 @@ - if l == "\n": - l = self.f.readline() - if not l: break - l = l.replace('`', '') -- descriptor = l.split() -+ # Field lengths from /usr/include/ar.h: -+ ar_field_lens = [ 16, 12, 6, 6, 8, 10, 2 ] -+ descriptor = [] -+ for field_len in ar_field_lens: -+ descriptor.append(l[:field_len].strip()) -+ l = l[field_len:] - # print descriptor - size = int(descriptor[5]) - memberName = descriptor[0][:-1] -- cgit v1.2.3-54-g00ecf