* [PATCH] package_manager: Fix apt-ftparchive index creation problems
@ 2014-03-26 11:40 Richard Purdie
2014-03-26 13:19 ` Ricardo Ribalda Delgado
0 siblings, 1 reply; 3+ messages in thread
From: Richard Purdie @ 2014-03-26 11:40 UTC (permalink / raw)
To: openembedded-core
a) There were missing parameters to the release and package commands (".")
b) The commands need to be executed as one block since they build upon each other
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py
index 692528d..824af00 100644
--- a/meta/lib/oe/package_manager.py
+++ b/meta/lib/oe/package_manager.py
@@ -192,17 +192,16 @@ class DpkgIndexer(Indexer):
if not os.path.isdir(arch_dir):
continue
- index_cmds.append("cd %s; PSEUDO_UNLOAD=1 %s packages > Packages" %
- (arch_dir, apt_ftparchive))
+ cmd = "cd %s; PSEUDO_UNLOAD=1 %s packages . > Packages;" % (arch_dir, apt_ftparchive)
- index_cmds.append("cd %s; %s Packages -c > Packages.gz" %
- (arch_dir, gzip))
+ cmd += "%s -fc Packages > Packages.gz;" % gzip
with open(os.path.join(arch_dir, "Release"), "w+") as release:
- release.write("Label: %s" % arch)
+ release.write("Label: %s\n" % arch)
- index_cmds.append("cd %s; PSEUDO_UNLOAD=1 %s release >> Release" %
- (arch_dir, apt_ftparchive))
+ cmd += "PSEUDO_UNLOAD=1 %s release . >> Release" % apt_ftparchive
+
+ index_cmds.append(cmd)
deb_dirs_found = True
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] package_manager: Fix apt-ftparchive index creation problems
2014-03-26 11:40 [PATCH] package_manager: Fix apt-ftparchive index creation problems Richard Purdie
@ 2014-03-26 13:19 ` Ricardo Ribalda Delgado
2014-03-26 14:34 ` Otavio Salvador
0 siblings, 1 reply; 3+ messages in thread
From: Ricardo Ribalda Delgado @ 2014-03-26 13:19 UTC (permalink / raw)
To: Richard Purdie; +Cc: openembedded-core
Acked-by: Ricardo Ribalda <Ricardo.Ribalda@gmail.com>
Hello
My fault sorry. I dont have a running system on master. I tried to
port the patch that I tested on dora.
Thanks Richard
On Wed, Mar 26, 2014 at 12:40 PM, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
> a) There were missing parameters to the release and package commands (".")
>
> b) The commands need to be executed as one block since they build upon each other
>
> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> ---
> diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py
> index 692528d..824af00 100644
> --- a/meta/lib/oe/package_manager.py
> +++ b/meta/lib/oe/package_manager.py
> @@ -192,17 +192,16 @@ class DpkgIndexer(Indexer):
> if not os.path.isdir(arch_dir):
> continue
>
> - index_cmds.append("cd %s; PSEUDO_UNLOAD=1 %s packages > Packages" %
> - (arch_dir, apt_ftparchive))
> + cmd = "cd %s; PSEUDO_UNLOAD=1 %s packages . > Packages;" % (arch_dir, apt_ftparchive)
>
> - index_cmds.append("cd %s; %s Packages -c > Packages.gz" %
> - (arch_dir, gzip))
> + cmd += "%s -fc Packages > Packages.gz;" % gzip
>
> with open(os.path.join(arch_dir, "Release"), "w+") as release:
> - release.write("Label: %s" % arch)
> + release.write("Label: %s\n" % arch)
>
> - index_cmds.append("cd %s; PSEUDO_UNLOAD=1 %s release >> Release" %
> - (arch_dir, apt_ftparchive))
> + cmd += "PSEUDO_UNLOAD=1 %s release . >> Release" % apt_ftparchive
> +
> + index_cmds.append(cmd)
>
> deb_dirs_found = True
>
>
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
--
Ricardo Ribalda
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-03-26 14:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-26 11:40 [PATCH] package_manager: Fix apt-ftparchive index creation problems Richard Purdie
2014-03-26 13:19 ` Ricardo Ribalda Delgado
2014-03-26 14:34 ` Otavio Salvador
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox