summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'portage/const.py')
-rw-r--r--portage/const.py77
1 files changed, 0 insertions, 77 deletions
diff --git a/portage/const.py b/portage/const.py
deleted file mode 100644
index 29525f5..0000000
--- a/portage/const.py
+++ /dev/null
@@ -1,77 +0,0 @@
-# portage: Constants
-# Copyright 1998-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/portage/const.py,v 1.1 2005/07/12 02:02:37 ferringb Exp $
-cvs_id_string="$Id: const.py,v 1.1 2005/07/12 02:02:37 ferringb Exp $"[5:-2]
-
-# ===========================================================================
-# START OF CONSTANTS -- START OF CONSTANTS -- START OF CONSTANTS -- START OF
-# ===========================================================================
-
-#VDB_PATH = "var/db/pkg"
-
-PRIVATE_PATH = "/var/lib/portage"
-
-USER_CONFIG_PATH = "/etc/portage"
-#CUSTOM_PROFILE_PATH = USER_CONFIG_PATH+"/profile"
-
-#PORTAGE_BASE_PATH = "/usr/lib/portage"
-PORTAGE_BASE_PATH = "/home/bharring/new"
-PORTAGE_BIN_PATH = PORTAGE_BASE_PATH+"/bin"
-#PORTAGE_PYM_PATH = PORTAGE_BASE_PATH+"/pym"
-#PROFILE_PATH = "/etc/make.profile"
-LOCALE_DATA_PATH = PORTAGE_BASE_PATH+"/locale"
-
-EBUILD_DAEMON_PATH = PORTAGE_BIN_PATH+"/ebuild-daemon.sh"
-
-SANDBOX_BINARY = "/usr/bin/sandbox"
-
-# XXX compatibility hack. this shouldn't ever hit a stable release.
-import os
-if not os.path.exists(SANDBOX_BINARY):
- if os.path.exists(PORTAGE_BIN_PATH+"/sandbox"):
- SANDBOX_BINARY=PORTAGE_BIN_PATH+"/sandbox"
-
-DEPSCAN_SH_BINARY = "/sbin/depscan.sh"
-BASH_BINARY = "/bin/bash"
-MOVE_BINARY = "/bin/mv"
-PRELINK_BINARY = "/usr/sbin/prelink"
-
-WORLD_FILE = PRIVATE_PATH+"/world"
-#MAKE_CONF_FILE = "/etc/make.conf"
-#MAKE_DEFAULTS_FILE = PROFILE_PATH + "/make.defaults"
-
-#DEPRECATED_PROFILE_FILE = PROFILE_PATH+"/deprecated"
-#USER_VIRTUALS_FILE = USER_CONFIG_PATH+"/virtuals"
-#EBUILD_SH_ENV_FILE = USER_CONFIG_PATH+"/bashrc"
-INVALID_ENV_FILE = "/etc/spork/is/not/valid/profile.env"
-CUSTOM_MIRRORS_FILE = USER_CONFIG_PATH+"/mirrors"
-SANDBOX_PIDS_FILE = "/tmp/sandboxpids.tmp"
-
-# since I didn't know wtf this was, it's used for knowing when CONFIG_PROTECT* can be ignored.
-CONFIG_MEMORY_FILE = PRIVATE_PATH + "/config"
-
-# wtf is this actually used for!?
-#STICKIES=["KEYWORDS_ACCEPT","USE","CFLAGS","CXXFLAGS","MAKEOPTS","EXTRA_ECONF","EXTRA_EINSTALL","EXTRA_EMAKE"]
-
-#CONFCACHE_FILE = CACHE_PATH+"/confcache"
-#CONFCACHE_LIST = CACHE_PATH+"/confcache_files.anydbm"
-
-LIBFAKEROOT_PATH = "/usr/lib/libfakeroot.so"
-FAKEROOT_PATH = "/usr/bin/fakeroot"
-
-RSYNC_BIN = "/usr/bin/rsync"
-RSYNC_HOST = "rsync.gentoo.org/gentoo-portage"
-
-CVS_BIN = "/usr/bin/cvs"
-
-# find a better place for this...
-EBUILD_PHASES = "setup unpack compile test install preinst postinst prerm postrm"
-
-# harring hack
-#DEFAULT_CONF_FILE = USER_CONFIG_PATH+"/config"
-DEFAULT_CONF_FILE = PORTAGE_BASE_PATH+"/config"
-
-#harring setting. have this bound by autoconf to install location,
-# /usr/share/portage-*/...
-CONF_DEFAULTS = "/home/bharring/new/conf_default_types"