Description: TODO: Put a short summary on the line above and replace this paragraph with a longer explanation of this change. Complete the meta-information with other relevant fields (see below for details). To make it easier, the information below has been extracted from the changelog. Adjust it or drop it. . germinate (2.25) unstable; urgency=medium . * Cope with malformed Built-Using fields, since we only started checking these recently and so older series have some errors. Author: Colin Watson --- The information above should follow the Patch Tagging Guidelines, please checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here are templates for supplementary fields that you might want to add: Origin: , Bug: Bug-Debian: https://bugs.debian.org/ Bug-Ubuntu: https://launchpad.net/bugs/ Forwarded: Reviewed-By: Last-Update: --- germinate-2.25.orig/germinate/germinator.py +++ germinate-2.25/germinate/germinator.py @@ -833,8 +833,12 @@ class Germinator(object): if posarch and self._arch not in posarch: continue - pkg = pkg.split()[0] - + #pkg = pkg.split()[0] + try: + pkg = pkg.split()[0] + except Exception as e: + print(str(e)) + pass # a leading ! indicates a per-seed blacklist; never include this # package in the given seed or any of its inner seeds, no matter # what --- germinate-2.25.orig/germinate/scripts/germinate_update_metapackage.py +++ germinate-2.25/germinate/scripts/germinate_update_metapackage.py @@ -1,4 +1,4 @@ -# -*- coding: utf-8 -*- +# -*- coding: UTF-8 -*- # Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Canonical Ltd. # Copyright (C) 2006 Gustavo Franco @@ -230,6 +230,7 @@ def main(argv): env['PATH'] = '/usr/sbin:/sbin:/usr/bin:/bin' debootstrap = subprocess.Popen( ['debootstrap', '--arch', arch, + '--no-check-gpg', '--components', ','.join(components), '--print-debs', dist, 'debootstrap-dir', archive_base[arch][0]], stdout=subprocess.PIPE, env=env, stderr=subprocess.PIPE,