remove unused tmpfs variable
authorMarius Mauch <genone@gentoo.org>
Mon, 15 Oct 2007 13:13:11 +0000 (13:13 -0000)
committerMarius Mauch <genone@gentoo.org>
Mon, 15 Oct 2007 13:13:11 +0000 (13:13 -0000)
svn path=/main/trunk/; revision=8128

cnf/make.conf
pym/portage/dbapi/porttree.py

index 4a456e3c3c6e0e0935dba1067422cbd1f1a230d4..8051aa831ac7d08d86e87ebfdb71cbf462f8ec3a 100644 (file)
 #              packages.  Do not use it unless absolutely necessary!
 #AUTOCLEAN="yes"
 #
-# PORTAGE_TMPFS is a location where portage may create temporary files.
-#     If specified, portage will use this directory whenever possible
-#     for all rapid operations such as lockfiles and transient data.
-#     It is _highly_ recommended that this be a tmpfs or ramdisk. Do not
-#     set this to anything that does not give a significant performance
-#     enhancement and proper FS compliance for locks and read/write.
-#     /dev/shm is a glibc mandated tmpfs, and should be a reasonable
-#     setting for all linux kernel+glibc based systems.
-#PORTAGE_TMPFS="/dev/shm"
-#
 # FEATURES are settings that affect the functionality of portage. Most of
 #     these settings are for developer use, but some are available to non-
 #     developers as well.
index 6a8e441ca7ca68d246eabeb058ba20959e16d955..05fe2a767e44c37dfa46c467b24e3e1b5a51bf48 100644 (file)
@@ -65,14 +65,6 @@ class portdbapi(dbapi):
 
                self.depcachedir = self.mysettings.depcachedir[:]
 
-               self.tmpfs = self.mysettings["PORTAGE_TMPFS"]
-               if self.tmpfs and not os.path.exists(self.tmpfs):
-                       self.tmpfs = None
-               if self.tmpfs and not os.access(self.tmpfs, os.W_OK):
-                       self.tmpfs = None
-               if self.tmpfs and not os.access(self.tmpfs, os.R_OK):
-                       self.tmpfs = None
-
                self.eclassdb = eclass_cache.cache(self.porttree_root,
                        overlays=self.mysettings["PORTDIR_OVERLAY"].split())