diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2012-03-30 00:19:59 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-01 12:38:09 +0100 |
commit | 275c2f8c6004aa2570aeeaa9f5e3845852c54a87 (patch) | |
tree | 702efb33aedc8bf1ed2e7f24e4e83d020d833e60 /meta/recipes-devtools | |
parent | 76546d1d3ea9efc160e05a0934de368a51820b03 (diff) | |
download | poky-275c2f8c6004aa2570aeeaa9f5e3845852c54a87.tar.gz |
opkg-utils: bump SRCREV for Packages cache fix and other fixes
(From OE-Core rev: 5863e2ae81b7840d6cb9b80641a7fd69ce4d6f1f)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
6 files changed, 1 insertions, 221 deletions
diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils/add-license-field.patch b/meta/recipes-devtools/opkg-utils/opkg-utils/add-license-field.patch deleted file mode 100644 index 0d3345972f..0000000000 --- a/meta/recipes-devtools/opkg-utils/opkg-utils/add-license-field.patch +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | Add knowledge about License field in ipk headers | ||
2 | |||
3 | Upstream-Status: Pending | ||
4 | |||
5 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
6 | |||
7 | Index: opkg-utils/opkg.py | ||
8 | =================================================================== | ||
9 | --- opkg-utils.orig/opkg.py 2010-11-01 04:52:35.000000000 -0700 | ||
10 | +++ opkg-utils/opkg.py 2011-07-13 15:18:03.900037344 -0700 | ||
11 | @@ -145,6 +145,7 @@ | ||
12 | self.priority = None | ||
13 | self.tags = None | ||
14 | self.fn = fn | ||
15 | + self.license = None | ||
16 | |||
17 | if fn: | ||
18 | # see if it is deb format | ||
19 | @@ -319,6 +320,12 @@ | ||
20 | def get_section(self, section): | ||
21 | return self.section | ||
22 | |||
23 | + def set_license(self, license): | ||
24 | + self.license = license | ||
25 | + | ||
26 | + def get_license(self, license): | ||
27 | + return self.license | ||
28 | + | ||
29 | def get_file_list(self): | ||
30 | if not self.fn: | ||
31 | return [] | ||
32 | @@ -425,6 +432,7 @@ | ||
33 | if self.description: out = out + "Description: %s\n" % (self.description) | ||
34 | if self.oe: out = out + "OE: %s\n" % (self.oe) | ||
35 | if self.homepage: out = out + "HomePage: %s\n" % (self.homepage) | ||
36 | + if self.license: out = out + "License: %s\n" % (self.license) | ||
37 | if self.priority: out = out + "Priority: %s\n" % (self.priority) | ||
38 | if self.tags: out = out + "Tags: %s\n" % (self.tags) | ||
39 | out = out + "\n" | ||
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 @@ | |||
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 | Upstream-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/index-ignore-filenotfound.patch b/meta/recipes-devtools/opkg-utils/opkg-utils/index-ignore-filenotfound.patch deleted file mode 100644 index f0f0fcf12c..0000000000 --- a/meta/recipes-devtools/opkg-utils/opkg-utils/index-ignore-filenotfound.patch +++ /dev/null | |||
@@ -1,73 +0,0 @@ | |||
1 | If we're building an image and some package rebuilds while this is happening | ||
2 | some package can be removed/added to the ipk deploy directory. The image will | ||
3 | not depend on this package so we can safely ignore these cases rather than | ||
4 | error out. | ||
5 | |||
6 | RP - 26/8/09 | ||
7 | |||
8 | Upstream-Status: Inappropriate [embedded specific] | ||
9 | |||
10 | Index: opkg-utils/opkg-make-index | ||
11 | =================================================================== | ||
12 | --- opkg-utils.orig/opkg-make-index 2009-08-26 17:21:26.000000000 +0100 | ||
13 | +++ opkg-utils/opkg-make-index 2009-08-27 16:11:22.000000000 +0100 | ||
14 | @@ -96,6 +96,7 @@ | ||
15 | files=glob(pkg_dir + '/*.ipk') + glob(pkg_dir + '/*.deb') | ||
16 | files.sort() | ||
17 | for filename in files: | ||
18 | + try: | ||
19 | basename = os.path.basename(filename) | ||
20 | pkg = None | ||
21 | fnameStat = os.stat(filename) | ||
22 | @@ -130,6 +131,12 @@ | ||
23 | to_morgue(basename) | ||
24 | if opt_s: | ||
25 | print filename | ||
26 | + except OSError: | ||
27 | + sys.stderr.write("Package %s disappeared on us!\n" % (filename)) | ||
28 | + continue | ||
29 | + except IOError: | ||
30 | + sys.stderr.write("Package %s disappeared on us!\n" % (filename)) | ||
31 | + continue | ||
32 | |||
33 | pkgsStampsFile = open(stamplist_filename, "w") | ||
34 | for f in pkgsStamps.keys(): | ||
35 | @@ -148,6 +155,7 @@ | ||
36 | names = packages.packages.keys() | ||
37 | names.sort() | ||
38 | for name in names: | ||
39 | + try: | ||
40 | pkg = packages.packages[name] | ||
41 | if locales_dir and pkg.depends: | ||
42 | depends = string.split(pkg.depends, ',') | ||
43 | @@ -165,6 +173,13 @@ | ||
44 | if (verbose): | ||
45 | sys.stderr.write("Writing info for package %s\n" % (pkg.package,)) | ||
46 | print pkg | ||
47 | + except OSError: | ||
48 | + sys.stderr.write("Package %s disappeared on us!\n" % (name)) | ||
49 | + continue | ||
50 | + except IOError: | ||
51 | + sys.stderr.write("Package %s disappeared on us!\n" % (name)) | ||
52 | + continue | ||
53 | + | ||
54 | if packages_filename: | ||
55 | sys.stdout.close() | ||
56 | sys.stdout = old_stdout | ||
57 | @@ -197,7 +197,15 @@ | ||
58 | names = packages.packages.keys() | ||
59 | names.sort() | ||
60 | for name in names: | ||
61 | - for fn in packages[name].get_file_list(): | ||
62 | + try: | ||
63 | + fnlist = packages[name].get_file_list() | ||
64 | + except OSError, e: | ||
65 | + sys.stderr.write("Package %s disappeared on us!\n" % (name)) | ||
66 | + continue | ||
67 | + except IOError, e: | ||
68 | + sys.stderr.write("Package %s disappeared on us!\n" % (name)) | ||
69 | + continue | ||
70 | + for fn in fnlist: | ||
71 | (h,t) = os.path.split(fn) | ||
72 | if not t: continue | ||
73 | if not files.has_key(t): files[t] = name+':'+fn | ||
diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils/mtime-int.patch b/meta/recipes-devtools/opkg-utils/opkg-utils/mtime-int.patch deleted file mode 100644 index 483a62a9a1..0000000000 --- a/meta/recipes-devtools/opkg-utils/opkg-utils/mtime-int.patch +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | Convert mtime to int before comparing it | ||
2 | |||
3 | The st_mtime attribute (which is a float) is compared against a value | ||
4 | from the timestamp database, which was stored as an integer there. | ||
5 | |||
6 | When working on a filesystem with precise timestamps the comparision | ||
7 | will fail nearly everytime hence. | ||
8 | |||
9 | Although it might be possible to enhance the database to store the | ||
10 | fractional part too, this will complicate things more than we would | ||
11 | gain by this change. | ||
12 | |||
13 | Signed-off-by: Enrico Scholz <enrico.scholz@sigma-chemnitz.de> | ||
14 | |||
15 | Upstream-Status: Pending | ||
16 | (Contacting the original author, no response yet.) | ||
17 | |||
18 | Index: opkg-utils/opkg-make-index | ||
19 | =================================================================== | ||
20 | --- opkg-utils.orig/opkg-make-index | ||
21 | +++ opkg-utils/opkg-make-index | ||
22 | @@ -100,7 +100,7 @@ for filename in files: | ||
23 | pkg = None | ||
24 | fnameStat = os.stat(filename) | ||
25 | if old_pkg_hash.has_key(basename): | ||
26 | - if pkgsStamps.has_key(basename) and fnameStat.st_mtime == pkgsStamps[basename]: | ||
27 | + if pkgsStamps.has_key(basename) and int(fnameStat.st_mtime) == pkgsStamps[basename]: | ||
28 | if (verbose): | ||
29 | sys.stderr.write("Found %s in Packages\n" % (filename,)) | ||
30 | pkg = old_pkg_hash[basename] | ||
diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils/shebang.patch b/meta/recipes-devtools/opkg-utils/opkg-utils/shebang.patch deleted file mode 100644 index f6a2ef9bdf..0000000000 --- a/meta/recipes-devtools/opkg-utils/opkg-utils/shebang.patch +++ /dev/null | |||
@@ -1,46 +0,0 @@ | |||
1 | Use python via the PATH, rather than hardcoding /usr/bin/python | ||
2 | |||
3 | Upstream-Status: Pending | ||
4 | |||
5 | Signed-off-by: Christopher Larson <kergoth@gmail.com> | ||
6 | |||
7 | --- opkg-utils.orig/opkg-list-fields | ||
8 | +++ opkg-utils/opkg-list-fields | ||
9 | @@ -1,4 +1,4 @@ | ||
10 | -#!/usr/bin/python | ||
11 | +#!/usr/bin/env python | ||
12 | |||
13 | import sys, opkg | ||
14 | |||
15 | --- opkg-utils.orig/opkg-make-index | ||
16 | +++ opkg-utils/opkg-make-index | ||
17 | @@ -1,4 +1,4 @@ | ||
18 | -#!/usr/bin/python | ||
19 | +#!/usr/bin/env python | ||
20 | |||
21 | import sys, os, posixpath | ||
22 | from glob import glob | ||
23 | --- opkg-utils.orig/opkg-show-deps | ||
24 | +++ opkg-utils/opkg-show-deps | ||
25 | @@ -1,4 +1,4 @@ | ||
26 | -#!/usr/bin/python | ||
27 | +#!/usr/bin/env python | ||
28 | |||
29 | import sys, os, posixpath | ||
30 | from glob import glob | ||
31 | --- opkg-utils.orig/opkg-unbuild | ||
32 | +++ opkg-utils/opkg-unbuild | ||
33 | @@ -1,4 +1,4 @@ | ||
34 | -#!/usr/bin/python | ||
35 | +#!/usr/bin/env python | ||
36 | |||
37 | import sys, os, re | ||
38 | |||
39 | --- opkg-utils.orig/opkg-update-index | ||
40 | +++ opkg-utils/opkg-update-index | ||
41 | @@ -1,4 +1,4 @@ | ||
42 | -#!/usr/bin/env python2.1 | ||
43 | +#!/usr/bin/env python | ||
44 | |||
45 | import sys, os | ||
46 | from glob import glob | ||
diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb b/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb index 4fe4038b41..1996c759c0 100644 --- a/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb +++ b/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb | |||
@@ -6,16 +6,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ | |||
6 | file://opkg.py;beginline=1;endline=18;md5=15917491ad6bf7acc666ca5f7cc1e083" | 6 | file://opkg.py;beginline=1;endline=18;md5=15917491ad6bf7acc666ca5f7cc1e083" |
7 | RDEPENDS_${PN} = "python" | 7 | RDEPENDS_${PN} = "python" |
8 | RDEPENDS_${PN}_virtclass-native = "" | 8 | RDEPENDS_${PN}_virtclass-native = "" |
9 | SRCREV = "16665959c330b5958c0f0f4624a9ca7f823f98de" | 9 | SRCREV = "44df9dd3dc411ca1255cb4b23bde7eb71aed4778" |
10 | PV = "0.1.8+git${SRCPV}" | 10 | PV = "0.1.8+git${SRCPV}" |
11 | PR = "r1" | 11 | PR = "r1" |
12 | 12 | ||
13 | SRC_URI = "git://git.yoctoproject.org/opkg-utils;protocol=git \ | 13 | SRC_URI = "git://git.yoctoproject.org/opkg-utils;protocol=git \ |
14 | file://index-ignore-filenotfound.patch \ | ||
15 | file://mtime-int.patch \ | ||
16 | file://add-license-field.patch \ | ||
17 | file://arfile_header_split.patch \ | ||
18 | file://shebang.patch \ | ||
19 | " | 14 | " |
20 | 15 | ||
21 | S = "${WORKDIR}/git" | 16 | S = "${WORKDIR}/git" |