Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/
Date: Sun, 02 Oct 2011 22:54:31
Message-Id: 814200b68822ed2681dc434631c99ad3c9251fc8.zmedico@gentoo
1 commit: 814200b68822ed2681dc434631c99ad3c9251fc8
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 2 22:53:39 2011 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 2 22:53:39 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=814200b6
7
8 Manifest.create(): pass allow_* to constructor
9
10 This fixes commit f3101b3adce6731790f80f83fafece54b7bd8a63 to ensure
11 that Manifest.create() works correctly.
12
13 ---
14 pym/portage/manifest.py | 3 ++-
15 1 files changed, 2 insertions(+), 1 deletions(-)
16
17 diff --git a/pym/portage/manifest.py b/pym/portage/manifest.py
18 index 49c05bd..9db8acc 100644
19 --- a/pym/portage/manifest.py
20 +++ b/pym/portage/manifest.py
21 @@ -349,7 +349,8 @@ class Manifest(object):
22 distfilehashes = {}
23 self.__init__(self.pkgdir, self.distdir,
24 fetchlist_dict=self.fetchlist_dict, from_scratch=True,
25 - thin=self.thin)
26 + thin=self.thin, allow_missing=self.allow_missing,
27 + allow_create=self.allow_create)
28 pn = os.path.basename(self.pkgdir.rstrip(os.path.sep))
29 cat = self._pkgdir_category()