summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/build_py.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>1999-12-12 17:03:59 (GMT)
committerGreg Ward <gward@python.net>1999-12-12 17:03:59 (GMT)
commit9b45443c1bdf99b0f27b12baf06fea475b60e145 (patch)
tree7efb68bbee35f6b3032ff4a627c740e9878c9d83 /Lib/distutils/command/build_py.py
parent48697d931bb86ddd114a42ccb89adb6374aef4ff (diff)
downloadcpython-9b45443c1bdf99b0f27b12baf06fea475b60e145.zip
cpython-9b45443c1bdf99b0f27b12baf06fea475b60e145.tar.gz
cpython-9b45443c1bdf99b0f27b12baf06fea475b60e145.tar.bz2
Fixed 'find_package_modules()' to ensure that we never build (and thus
install) the setup script itself. Fixed 'build_module()' so we do *not* preserve file mode (which means we can install read-only files, which makes the next installation of this distribution fail -- at least under Unix); added a comment explaining this.
Diffstat (limited to 'Lib/distutils/command/build_py.py')
-rw-r--r--Lib/distutils/command/build_py.py35
1 files changed, 24 insertions, 11 deletions
diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py
index b3cc1e9..6bc5aa8 100644
--- a/Lib/distutils/command/build_py.py
+++ b/Lib/distutils/command/build_py.py
@@ -6,7 +6,7 @@ Implements the Distutils 'build_py' command."""
__rcsid__ = "$Id$"
-import string, os
+import sys, string, os
from types import *
from glob import glob
@@ -40,11 +40,21 @@ class BuildPy (Command):
def run (self):
- # XXX copy_file by default preserves all stat info -- mode, atime,
- # and mtime. IMHO this is the right thing to do, but perhaps it
- # should be an option -- in particular, a site administrator might
- # want installed files to reflect the time of installation rather
- # than the last modification time before the installed release.
+ # XXX copy_file by default preserves atime and mtime. IMHO this is
+ # the right thing to do, but perhaps it should be an option -- in
+ # particular, a site administrator might want installed files to
+ # reflect the time of installation rather than the last
+ # modification time before the installed release.
+
+ # XXX copy_file by default preserves mode, which appears to be the
+ # wrong thing to do: if a file is read-only in the working
+ # directory, we want it to be installed read/write so that the next
+ # installation of the same module distribution can overwrite it
+ # without problems. (This might be a Unix-specific issue.) Thus
+ # we turn off 'preserve_mode' when copying to the build directory,
+ # since the build directory is supposed to be exactly what the
+ # installation will look like (ie. we preserve mode when
+ # installing).
# XXX copy_file does *not* preserve MacOS-specific file metadata.
# If this is a problem for building/installing Python modules, then
@@ -73,7 +83,7 @@ class BuildPy (Command):
if self.modules and self.packages:
raise DistutilsOptionError, \
"build_py: supplying both 'packages' and 'modules' " + \
- "options not allowed"
+ "options is not allowed"
# Now we're down to two cases: 'modules' only and 'packages' only.
if self.modules:
@@ -81,7 +91,6 @@ class BuildPy (Command):
else:
self.build_packages ()
-
# run ()
@@ -162,9 +171,13 @@ class BuildPy (Command):
def find_package_modules (self, package, package_dir):
module_files = glob (os.path.join (package_dir, "*.py"))
module_pairs = []
+ setup_script = os.path.abspath (sys.argv[0])
+
for f in module_files:
- module = os.path.splitext (os.path.basename (f))[0]
- module_pairs.append (module, f)
+ abs_f = os.path.abspath (f)
+ if abs_f != setup_script:
+ module = os.path.splitext (os.path.basename (f))[0]
+ module_pairs.append ((module, f))
return module_pairs
@@ -253,7 +266,7 @@ class BuildPy (Command):
dir = os.path.dirname (outfile)
self.mkpath (dir)
- self.copy_file (module_file, outfile)
+ self.copy_file (module_file, outfile, preserve_mode=0)
def build_modules (self):