From 479d7f175a213fd6c9d1f9f76972061e14180ee6 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 26 Aug 2009 20:50:43 +0100 Subject: opkg-utils: Further missing files tweaks Signed-off-by: Richard Purdie --- .../opkg-utils/index-ignore-filenotfound.patch | 29 +++++++++++++++------- meta/packages/opkg-utils/opkg-utils_svn.bb | 2 +- 2 files changed, 21 insertions(+), 10 deletions(-) diff --git a/meta/packages/opkg-utils/opkg-utils/index-ignore-filenotfound.patch b/meta/packages/opkg-utils/opkg-utils/index-ignore-filenotfound.patch index 3eb2c9349a..bafc2f6a1c 100644 --- a/meta/packages/opkg-utils/opkg-utils/index-ignore-filenotfound.patch +++ b/meta/packages/opkg-utils/opkg-utils/index-ignore-filenotfound.patch @@ -1,14 +1,7 @@ -If we're building an image and some package rebuilds while this is happening -some package can be removed/added to the ipk deploy directory. The image will -not depend on this package so we can safely ignore these cases rather than -error out. - -RP - 26/8/09 - Index: opkg-utils/opkg-make-index =================================================================== --- opkg-utils.orig/opkg-make-index 2009-08-26 17:21:26.000000000 +0100 -+++ opkg-utils/opkg-make-index 2009-08-26 17:24:05.000000000 +0100 ++++ opkg-utils/opkg-make-index 2009-08-26 20:49:52.000000000 +0100 @@ -96,6 +96,7 @@ files=glob(pkg_dir + '/*.ipk') + glob(pkg_dir + '/*.deb') files.sort() @@ -22,8 +15,26 @@ Index: opkg-utils/opkg-make-index if opt_s: print filename + except OSError: -+ sys.stderr.write("Package %s disappeared on us!\n" % (filename,)) ++ sys.stderr.write("Package %s disappeared on us!\n" % (filename)) + continue pkgsStampsFile = open(stamplist_filename, "w") for f in pkgsStamps.keys(): +@@ -148,6 +152,7 @@ + names = packages.packages.keys() + names.sort() + for name in names: ++ try: + pkg = packages.packages[name] + if locales_dir and pkg.depends: + depends = string.split(pkg.depends, ',') +@@ -165,6 +170,9 @@ + if (verbose): + sys.stderr.write("Writing info for package %s\n" % (pkg.package,)) + print pkg ++ except OSError: ++ sys.stderr.write("Package %s disappeared on us!\n" % (name)) ++ continue + if packages_filename: + sys.stdout.close() + sys.stdout = old_stdout diff --git a/meta/packages/opkg-utils/opkg-utils_svn.bb b/meta/packages/opkg-utils/opkg-utils_svn.bb index 53b208db14..a141505710 100644 --- a/meta/packages/opkg-utils/opkg-utils_svn.bb +++ b/meta/packages/opkg-utils/opkg-utils_svn.bb @@ -4,7 +4,7 @@ PRIORITY = "optional" LICENSE = "GPL" RDEPENDS = "python" RDEPENDS_virtclass-native = "" -PR = "r4" +PR = "r5" SRC_URI = "svn://svn.openmoko.org/trunk/src/host/;module=opkg-utils;proto=http \ file://index-ignore-filenotfound.patch;patch=1" -- cgit v1.2.3-54-g00ecf