diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/opkg-utils/opkg-utils/arfile_header_split.patch | 27 | ||||
-rw-r--r-- | meta/recipes-devtools/opkg-utils/opkg-utils_svn.bb | 3 |
2 files changed, 29 insertions, 1 deletions
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 new file mode 100644 index 0000000000..435e74e863 --- /dev/null +++ b/meta/recipes-devtools/opkg-utils/opkg-utils/arfile_header_split.patch | |||
@@ -0,0 +1,27 @@ | |||
1 | From: Scott Anderson <o2e@saaworld.com> | ||
2 | Subject: ipkg-utils: Make arfile.py handle six digit UIDs | ||
3 | |||
4 | Essentially, the problem is that arfile.py is splitting the ar header with | ||
5 | white-space instead of fixed-width fields, so two fields would get treated | ||
6 | as a single field. This makes things better than before as it now honors | ||
7 | the fixed field widths. | ||
8 | |||
9 | Upsteam-status: Pending (there is no upstream after openmoko imploded) | ||
10 | |||
11 | --- ipkg-utils/arfile.py.orig 2010-09-29 13:38:15.000000000 -0700 | ||
12 | +++ ipkg-utils/arfile.py 2010-10-01 16:06:00.000000000 -0700 | ||
13 | @@ -74,7 +74,12 @@ | ||
14 | if l == "\n": | ||
15 | l = self.f.readline() | ||
16 | if not l: break | ||
17 | l = l.replace('`', '') | ||
18 | - descriptor = l.split() | ||
19 | + # Field lengths from /usr/include/ar.h: | ||
20 | + ar_field_lens = [ 16, 12, 6, 6, 8, 10, 2 ] | ||
21 | + descriptor = [] | ||
22 | + for field_len in ar_field_lens: | ||
23 | + descriptor.append(l[:field_len].strip()) | ||
24 | + l = l[field_len:] | ||
25 | # print descriptor | ||
26 | size = int(descriptor[5]) | ||
27 | memberName = descriptor[0][:-1] | ||
diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils_svn.bb b/meta/recipes-devtools/opkg-utils/opkg-utils_svn.bb index e04b74ace5..9b94aff023 100644 --- a/meta/recipes-devtools/opkg-utils/opkg-utils_svn.bb +++ b/meta/recipes-devtools/opkg-utils/opkg-utils_svn.bb | |||
@@ -8,12 +8,13 @@ RDEPENDS_${PN} = "python" | |||
8 | RDEPENDS_${PN}_virtclass-native = "" | 8 | RDEPENDS_${PN}_virtclass-native = "" |
9 | SRCREV = "4747" | 9 | SRCREV = "4747" |
10 | PV = "0.1.8+svnr${SRCPV}" | 10 | PV = "0.1.8+svnr${SRCPV}" |
11 | PR = "r5" | 11 | PR = "r6" |
12 | 12 | ||
13 | SRC_URI = "svn://svn.openmoko.org/trunk/src/host/;module=opkg-utils;proto=http \ | 13 | SRC_URI = "svn://svn.openmoko.org/trunk/src/host/;module=opkg-utils;proto=http \ |
14 | file://index-ignore-filenotfound.patch \ | 14 | file://index-ignore-filenotfound.patch \ |
15 | file://mtime-int.patch \ | 15 | file://mtime-int.patch \ |
16 | file://add-license-field.patch \ | 16 | file://add-license-field.patch \ |
17 | file://arfile_header_split.patch \ | ||
17 | " | 18 | " |
18 | 19 | ||
19 | S = "${WORKDIR}/opkg-utils" | 20 | S = "${WORKDIR}/opkg-utils" |