From c790b7ce4c8e3b95b1ef0103129388c06c5eaa4b Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 24 Mar 2010 00:13:00 -0700 Subject: Remove all svn $Id keywords. --- pym/portage/cache/__init__.py | 1 - pym/portage/cache/anydbm.py | 1 - pym/portage/cache/cache_errors.py | 1 - pym/portage/cache/ebuild_xattr.py | 1 - pym/portage/cache/flat_hash.py | 1 - pym/portage/cache/fs_template.py | 1 - pym/portage/cache/mappings.py | 1 - pym/portage/cache/metadata.py | 1 - pym/portage/cache/metadata_overlay.py | 1 - pym/portage/cache/sql_template.py | 1 - pym/portage/cache/sqlite.py | 1 - pym/portage/cache/template.py | 1 - pym/portage/cache/util.py | 1 - pym/portage/cache/volatile.py | 1 - 14 files changed, 14 deletions(-) (limited to 'pym/portage/cache') 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ä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 -- cgit v1.2.3-1-g7c22