summaryrefslogtreecommitdiffstats
path: root/pym/portage/cache
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-03-24 00:13:00 -0700
committerZac Medico <zmedico@gentoo.org>2010-03-24 00:13:00 -0700
commitc790b7ce4c8e3b95b1ef0103129388c06c5eaa4b (patch)
tree95a8b912dd518ffe4c7894890f2e8bf5c4929a9a /pym/portage/cache
parentf1b05b7098ba448a0987bc61224d6616dad3ecde (diff)
downloadportage-c790b7ce4c8e3b95b1ef0103129388c06c5eaa4b.tar.gz
portage-c790b7ce4c8e3b95b1ef0103129388c06c5eaa4b.tar.bz2
portage-c790b7ce4c8e3b95b1ef0103129388c06c5eaa4b.zip
Remove all svn $Id keywords.
Diffstat (limited to 'pym/portage/cache')
-rw-r--r--pym/portage/cache/__init__.py1
-rw-r--r--pym/portage/cache/anydbm.py1
-rw-r--r--pym/portage/cache/cache_errors.py1
-rw-r--r--pym/portage/cache/ebuild_xattr.py1
-rw-r--r--pym/portage/cache/flat_hash.py1
-rw-r--r--pym/portage/cache/fs_template.py1
-rw-r--r--pym/portage/cache/mappings.py1
-rw-r--r--pym/portage/cache/metadata.py1
-rw-r--r--pym/portage/cache/metadata_overlay.py1
-rw-r--r--pym/portage/cache/sql_template.py1
-rw-r--r--pym/portage/cache/sqlite.py1
-rw-r--r--pym/portage/cache/template.py1
-rw-r--r--pym/portage/cache/util.py1
-rw-r--r--pym/portage/cache/volatile.py1
14 files changed, 0 insertions, 14 deletions
diff --git a/pym/portage/cache/__init__.py b/pym/portage/cache/__init__.py
index cb1b59d69..e7fe599f0 100644
--- a/pym/portage/cache/__init__.py
+++ b/pym/portage/cache/__init__.py
@@ -1,5 +1,4 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id$
diff --git a/pym/portage/cache/anydbm.py b/pym/portage/cache/anydbm.py
index 33cedebbb..dcfff3fb8 100644
--- a/pym/portage/cache/anydbm.py
+++ b/pym/portage/cache/anydbm.py
@@ -1,7 +1,6 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id$
try:
anydbm_module = __import__("anydbm")
diff --git a/pym/portage/cache/cache_errors.py b/pym/portage/cache/cache_errors.py
index e1e8eead0..3c1f2397e 100644
--- a/pym/portage/cache/cache_errors.py
+++ b/pym/portage/cache/cache_errors.py
@@ -1,7 +1,6 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id$
class CacheError(Exception): pass
diff --git a/pym/portage/cache/ebuild_xattr.py b/pym/portage/cache/ebuild_xattr.py
index 7ea4aaaca..6582a003d 100644
--- a/pym/portage/cache/ebuild_xattr.py
+++ b/pym/portage/cache/ebuild_xattr.py
@@ -1,7 +1,6 @@
# Copyright: 2009 Gentoo Foundation
# Author(s): Petteri R&#228;ty (betelgeuse@gentoo.org)
# License: GPL2
-# $Id$
__all__ = ['database']
diff --git a/pym/portage/cache/flat_hash.py b/pym/portage/cache/flat_hash.py
index b014f170d..6be0fe4b2 100644
--- a/pym/portage/cache/flat_hash.py
+++ b/pym/portage/cache/flat_hash.py
@@ -1,7 +1,6 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id$
import codecs
from portage.cache import fs_template
diff --git a/pym/portage/cache/fs_template.py b/pym/portage/cache/fs_template.py
index 7cd8af4d7..a82e8623a 100644
--- a/pym/portage/cache/fs_template.py
+++ b/pym/portage/cache/fs_template.py
@@ -1,7 +1,6 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id$
import sys
from portage.cache import template
diff --git a/pym/portage/cache/mappings.py b/pym/portage/cache/mappings.py
index f15f362b0..67f6dfcc6 100644
--- a/pym/portage/cache/mappings.py
+++ b/pym/portage/cache/mappings.py
@@ -1,7 +1,6 @@
# Copyright: 2005-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# Author(s): Brian Harring (ferringb@gentoo.org)
-# $Id$
__all__ = ["Mapping", "MutableMapping", "UserDict", "ProtectedDict",
"LazyLoad", "slot_dict_class"]
diff --git a/pym/portage/cache/metadata.py b/pym/portage/cache/metadata.py
index 650658afc..9da52ce14 100644
--- a/pym/portage/cache/metadata.py
+++ b/pym/portage/cache/metadata.py
@@ -1,7 +1,6 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id$
import errno
import re
diff --git a/pym/portage/cache/metadata_overlay.py b/pym/portage/cache/metadata_overlay.py
index 7b4f70a9c..a4053372b 100644
--- a/pym/portage/cache/metadata_overlay.py
+++ b/pym/portage/cache/metadata_overlay.py
@@ -1,6 +1,5 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
import time
from portage.cache import template
diff --git a/pym/portage/cache/sql_template.py b/pym/portage/cache/sql_template.py
index ff9d273ed..d3c6a0b30 100644
--- a/pym/portage/cache/sql_template.py
+++ b/pym/portage/cache/sql_template.py
@@ -1,7 +1,6 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id$
import sys
from portage.cache import template, cache_errors
diff --git a/pym/portage/cache/sqlite.py b/pym/portage/cache/sqlite.py
index b8136bb4f..cd118f515 100644
--- a/pym/portage/cache/sqlite.py
+++ b/pym/portage/cache/sqlite.py
@@ -1,6 +1,5 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
import sys
from portage.cache import fs_template
diff --git a/pym/portage/cache/template.py b/pym/portage/cache/template.py
index 3b003b1f6..f84d8f4b9 100644
--- a/pym/portage/cache/template.py
+++ b/pym/portage/cache/template.py
@@ -1,7 +1,6 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id$
from portage.cache import cache_errors
from portage.cache.cache_errors import InvalidRestriction
diff --git a/pym/portage/cache/util.py b/pym/portage/cache/util.py
index 55bcb015c..b82468973 100644
--- a/pym/portage/cache/util.py
+++ b/pym/portage/cache/util.py
@@ -1,7 +1,6 @@
# Copyright: 2005 Gentoo Foundation
# Author(s): Brian Harring (ferringb@gentoo.org)
# License: GPL2
-# $Id$
from __future__ import print_function
diff --git a/pym/portage/cache/volatile.py b/pym/portage/cache/volatile.py
index 108393185..e671904ee 100644
--- a/pym/portage/cache/volatile.py
+++ b/pym/portage/cache/volatile.py
@@ -1,6 +1,5 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id$
import copy
from portage.cache import template