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/dbapi/
Date: Mon, 13 Jun 2011 22:14:57
Message-Id: cbdf030c3a61eaf323faff8f25e23989efb70248.zmedico@gentoo
1 commit: cbdf030c3a61eaf323faff8f25e23989efb70248
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 13 22:13:17 2011 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 13 22:13:17 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=cbdf030c
7
8 bintree: don't provide default VERSION header
9
10 We want to make sure that we know when the VERSION header is missing,
11 so we shouldn't provide a default value.
12
13 ---
14 pym/portage/dbapi/bintree.py | 1 -
15 1 files changed, 0 insertions(+), 1 deletions(-)
16
17 diff --git a/pym/portage/dbapi/bintree.py b/pym/portage/dbapi/bintree.py
18 index 36bf735..ebec11f 100644
19 --- a/pym/portage/dbapi/bintree.py
20 +++ b/pym/portage/dbapi/bintree.py
21 @@ -273,7 +273,6 @@ class binarytree(object):
22
23 # Populate the header with appropriate defaults.
24 self._pkgindex_default_header_data = {
25 - "VERSION" : str(self._pkgindex_version),
26 "CHOST" : self.settings.get("CHOST", ""),
27 "repository" : "",
28 }