From 002f48337737a746116fa69cb89c9a9e6b61bd92 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Thu, 22 Nov 2012 21:10:23 +0100 Subject: opkg: bump SRCREV and drop applied patches * only change upstream which wasn't in oe-core is http://code.google.com/p/opkg/source/detail?r=635 and added testcase for that (From OE-Core rev: 5fd1d515db5966f45a3b2f936f3c4225f59186e2) Signed-off-by: Martin Jansa Signed-off-by: Richard Purdie --- ...n-t-print-provides-if-nothing-is-provided.patch | 24 ---------------------- 1 file changed, 24 deletions(-) delete mode 100644 meta/recipes-devtools/opkg/opkg/don-t-print-provides-if-nothing-is-provided.patch (limited to 'meta/recipes-devtools/opkg/opkg/don-t-print-provides-if-nothing-is-provided.patch') diff --git a/meta/recipes-devtools/opkg/opkg/don-t-print-provides-if-nothing-is-provided.patch b/meta/recipes-devtools/opkg/opkg/don-t-print-provides-if-nothing-is-provided.patch deleted file mode 100644 index 669faef00a..0000000000 --- a/meta/recipes-devtools/opkg/opkg/don-t-print-provides-if-nothing-is-provided.patch +++ /dev/null @@ -1,24 +0,0 @@ -Every package provides itself. While printing package information all -fields are printed only if there is any relevant info for them. For -example: a package with no "Replaces" won't get this printed at all. -Packages which provide only themselves, were printing this field but with -no values. This patch skips this field if the package provides only -itself. - -Upstream-Status: Pending -Signed-off-by: Andrei Gherzan - -Index: trunk/libopkg/pkg.c -=================================================================== ---- trunk.orig/libopkg/pkg.c 2011-12-18 02:11:34.000000000 +0200 -+++ trunk/libopkg/pkg.c 2012-10-20 22:20:04.109201287 +0300 -@@ -731,7 +731,8 @@ - } else if (strcasecmp(field, "Priority") == 0) { - fprintf(fp, "Priority: %s\n", pkg->priority); - } else if (strcasecmp(field, "Provides") == 0) { -- if (pkg->provides_count) { -+ /* Don't print provides if this package provides only itself */ -+ if (pkg->provides_count > 1) { - fprintf(fp, "Provides:"); - for(i = 1; i < pkg->provides_count; i++) { - fprintf(fp, "%s %s", i == 1 ? "" : ",", -- cgit v1.2.3-54-g00ecf