Put the Copyright years in by script, not by hand.
[scons.git] / SConstruct
1 #
2 # SConstruct file to build scons packages during development.
3 #
4 # See the README file for an overview of how SCons is built and tested.
5 #
6
7 copyright_years = '2001, 2002, 2003'
8
9 #
10 # __COPYRIGHT__
11 #
12 # Permission is hereby granted, free of charge, to any person obtaining
13 # a copy of this software and associated documentation files (the
14 # "Software"), to deal in the Software without restriction, including
15 # without limitation the rights to use, copy, modify, merge, publish,
16 # distribute, sublicense, and/or sell copies of the Software, and to
17 # permit persons to whom the Software is furnished to do so, subject to
18 # the following conditions:
19 #
20 # The above copyright notice and this permission notice shall be included
21 # in all copies or substantial portions of the Software.
22 #
23 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
24 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
25 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 #
31
32 import distutils.util
33 import os
34 import os.path
35 import socket
36 import stat
37 import string
38 import sys
39 import time
40
41 project = 'scons'
42 default_version = '0.11'
43 copyright = "Copyright (c) %s Steven Knight" % copyright_years
44
45 Default('.')
46
47 #
48 # An internal "whereis" routine to figure out if a given program
49 # is available on this system.
50 #
51 def whereis(file):
52     for dir in string.split(os.environ['PATH'], os.pathsep):
53         f = os.path.join(dir, file)
54         if os.path.isfile(f):
55             try:
56                 st = os.stat(f)
57             except:
58                 continue
59             if stat.S_IMODE(st[stat.ST_MODE]) & 0111:
60                 return f
61     return None
62
63 #
64 # We let the presence or absence of various utilities determine
65 # whether or not we bother to build certain pieces of things.
66 # This should allow people to still do SCons work even if they
67 # don't have Aegis or RPM installed, for example.
68 #
69 aegis = whereis('aegis')
70 aesub = whereis('aesub')
71 dh_builddeb = whereis('dh_builddeb')
72 fakeroot = whereis('fakeroot')
73 gzip = whereis('gzip')
74 rpmbuild = whereis('rpmbuild') or whereis('rpm')
75 unzip = whereis('unzip')
76 zip = whereis('zip')
77
78 #
79 # Now grab the information that we "build" into the files.
80 #
81 try:
82     date = ARGUMENTS['date']
83 except:
84     date = time.strftime("%Y/%m/%d %H:%M:%S", time.localtime(time.time()))
85     
86 if ARGUMENTS.has_key('developer'):
87     developer = ARGUMENTS['developer']
88 elif os.environ.has_key('USERNAME'):
89     developer = os.environ['USERNAME']
90 elif os.environ.has_key('LOGNAME'):
91     developer = os.environ['LOGNAME']
92 elif os.environ.has_key('USER'):
93     developer = os.environ['USER']
94
95 if ARGUMENTS.has_key('build_system'):
96     build_system = ARGUMENTS['build_system']
97 else:
98     build_system = string.split(socket.gethostname(), '.')[0]
99
100 if ARGUMENTS.has_key('version'):
101     revision = ARGUMENTS['version']
102 elif aesub:
103     revision = os.popen(aesub + " \\$version", "r").read()[:-1]
104 else:
105     revision = default_version
106
107 a = string.split(revision, '.')
108 arr = [a[0]]
109 for s in a[1:]:
110     if len(s) == 1:
111         s = '0' + s
112     arr.append(s)
113 revision = string.join(arr, '.')
114
115 # Here's how we'd turn the calculated $revision into our package $version.
116 # This makes it difficult to coordinate with other files (debian/changelog
117 # and rpm/scons.spec) that hard-code the version number, so just go with
118 # the flow for now and hard code it here, too.
119 #if len(arr) >= 2:
120 #    arr = arr[:-1]
121 #def xxx(str):
122 #    if str[0] == 'C' or str[0] == 'D':
123 #        str = str[1:]
124 #    while len(str) > 2 and str[0] == '0':
125 #        str = str[1:]
126 #    return str
127 #arr = map(lambda x, xxx=xxx: xxx(x), arr)
128 #version = string.join(arr, '.')
129 version = default_version
130
131 build_id = string.replace(revision, version + '.', '')
132
133 if ARGUMENTS.has_key('change'):
134     change = ARGUMENTS['change']
135 elif aesub:
136     change = os.popen(aesub + " \\$change", "r").read()[:-1]
137 else:
138     change = default_version
139
140 python_ver = sys.version[0:3]
141
142 platform = distutils.util.get_platform()
143
144 ENV = { 'PATH' : os.environ['PATH'] }
145 for key in ['AEGIS_PROJECT', 'PYTHONPATH']:
146     if os.environ.has_key(key):
147         ENV[key] = os.environ[key]
148
149 lib_project = os.path.join("lib", project)
150
151 cwd_build = os.path.join(os.getcwd(), "build")
152
153 test_deb_dir          = os.path.join(cwd_build, "test-deb")
154 test_rpm_dir          = os.path.join(cwd_build, "test-rpm")
155 test_tar_gz_dir       = os.path.join(cwd_build, "test-tar-gz")
156 test_src_tar_gz_dir   = os.path.join(cwd_build, "test-src-tar-gz")
157 test_local_tar_gz_dir = os.path.join(cwd_build, "test-local-tar-gz")
158 test_zip_dir          = os.path.join(cwd_build, "test-zip")
159 test_src_zip_dir      = os.path.join(cwd_build, "test-src-zip")
160 test_local_zip_dir    = os.path.join(cwd_build, "test-local-zip")
161
162 unpack_tar_gz_dir     = os.path.join(cwd_build, "unpack-tar-gz")
163 unpack_zip_dir        = os.path.join(cwd_build, "unpack-zip")
164
165 if platform == "win32":
166     tar_hflag = ''
167     python_project_subinst_dir = None
168     project_script_subinst_dir = 'Scripts'
169 else:
170     tar_hflag = 'h'
171     python_project_subinst_dir = lib_project
172     project_script_subinst_dir = 'bin'
173
174
175 zcat = 'gzip -d -c'
176     
177 #
178 # Figure out if we can handle .zip files.
179 #
180 zipit = None
181 unzipit = None
182 try:
183     import zipfile
184
185     def zipit(env, target, source):
186         print "Zipping %s:" % str(target[0])
187         def visit(arg, dirname, names):
188             for name in names:
189                 path = os.path.join(dirname, name)
190                 if os.path.isfile(path):
191                     arg.write(path)
192         zf = zipfile.ZipFile(str(target[0]), 'w')
193         olddir = os.getcwd()
194         os.chdir(env['CD'])
195         try: os.path.walk(env['PSV'], visit, zf)
196         finally: os.chdir(olddir)
197         zf.close()
198
199     def unzipit(env, target, source):
200         print "Unzipping %s:" % str(source[0])
201         zf = zipfile.ZipFile(str(source[0]), 'r')
202         for name in zf.namelist():
203             dest = os.path.join(env['UNPACK_ZIP_DIR'], name)
204             dir = os.path.dirname(dest)
205             try:
206                 os.makedirs(dir)
207             except:
208                 pass
209             print dest,name
210             # if the file exists, then delete it before writing
211             # to it so that we don't end up trying to write to a symlink:
212             if os.path.isfile(dest) or os.path.islink(dest):
213                 os.unlink(dest)
214             if not os.path.isdir(dest):
215                 open(dest, 'w').write(zf.read(name))
216
217 except:
218     if unzip and zip:
219         zipit = "cd $CD && $ZIP $ZIPFLAGS $( ${TARGET.abspath} $) $PSV"
220         unzipit = "$UNZIP $UNZIPFLAGS $SOURCES"
221
222 def SCons_revision(target, source, env):
223     """Interpolate specific values from the environment into a file.
224     
225     This is used to copy files into a tree that gets packaged up
226     into the source file package.
227     """
228     t = str(target[0])
229     s = source[0].rstr()
230     inf = open(s, 'rb')
231     outf = open(t, 'wb')
232     for line in inf.readlines():
233         # Note:  We construct the __*__ substitution strings here
234         # so that they don't get replaced when this file gets
235         # copied into the tree for packaging.
236         line = string.replace(line, '__BUILD'     + '__', env['BUILD'])
237         line = string.replace(line, '__BUILDSYS'  + '__', env['BUILDSYS'])
238         line = string.replace(line, '__COPYRIGHT' + '__', env['COPYRIGHT'])
239         line = string.replace(line, '__DATE'      + '__', env['DATE'])
240         line = string.replace(line, '__DEVELOPER' + '__', env['DEVELOPER'])
241         line = string.replace(line, '__FILE'      + '__', str(source[0]))
242         line = string.replace(line, '__REVISION'  + '__', env['REVISION'])
243         line = string.replace(line, '__VERSION'   + '__', env['VERSION'])
244         outf.write(line)
245     inf.close()
246     outf.close()
247     os.chmod(t, os.stat(s)[0])
248
249 revbuilder = Builder(action = Action(SCons_revision, varlist=['VERSION']))
250
251 env = Environment(
252                    ENV                 = ENV,
253  
254                    BUILD               = build_id,
255                    BUILDSYS            = build_system,
256                    COPYRIGHT           = copyright,
257                    DATE                = date,
258                    DEVELOPER           = developer,
259                    REVISION            = revision,
260                    VERSION             = version,
261                    DH_COMPAT           = 2,
262
263                    TAR_HFLAG           = tar_hflag,
264
265                    ZIP                 = zip,
266                    ZIPFLAGS            = '-r',
267                    UNZIP               = unzip,
268                    UNZIPFLAGS          = '-o -d $UNPACK_ZIP_DIR',
269
270                    ZCAT                = zcat,
271
272                    RPMBUILD            = rpmbuild,
273                    RPM2CPIO            = 'rpm2cpio',
274
275                    TEST_DEB_DIR        = test_deb_dir,
276                    TEST_RPM_DIR        = test_rpm_dir,
277                    TEST_SRC_TAR_GZ_DIR = test_src_tar_gz_dir,
278                    TEST_SRC_ZIP_DIR    = test_src_zip_dir,
279                    TEST_TAR_GZ_DIR     = test_tar_gz_dir,
280                    TEST_ZIP_DIR        = test_zip_dir,
281
282                    UNPACK_TAR_GZ_DIR   = unpack_tar_gz_dir,
283                    UNPACK_ZIP_DIR      = unpack_zip_dir,
284
285                    BUILDERS            = { 'SCons_revision' : revbuilder },
286
287                    PYTHON              = sys.executable
288                  )
289
290 #
291 # Define SCons packages.
292 #
293 # In the original, more complicated packaging scheme, we were going
294 # to have separate packages for:
295 #
296 #       python-scons    only the build engine
297 #       scons-script    only the script
298 #       scons           the script plus the build engine
299 #
300 # We're now only delivering a single "scons" package, but this is still
301 # "built" as two sub-packages (the build engine and the script), so
302 # the definitions remain here, even though we're not using them for
303 # separate packages.
304 #
305
306 python_scons = {
307         'pkg'           : 'python-' + project,
308         'src_subdir'    : 'engine',
309         'inst_subdir'   : os.path.join('lib', 'python1.5', 'site-packages'),
310
311         'debian_deps'   : [
312                             'debian/changelog',
313                             'debian/control',
314                             'debian/copyright',
315                             'debian/dirs',
316                             'debian/docs',
317                             'debian/postinst',
318                             'debian/prerm',
319                             'debian/rules',
320                           ],
321
322         'files'         : [ 'LICENSE.txt',
323                             'README.txt',
324                             'setup.cfg',
325                             'setup.py',
326                           ],
327
328         'filemap'       : {
329                             'LICENSE.txt' : '../LICENSE.txt'
330                           },
331 }
332
333 #
334 # The original packaging scheme would have have required us to push
335 # the Python version number into the package name (python1.5-scons,
336 # python2.0-scons, etc.), which would have required a definition
337 # like the following.  Leave this here in case we ever decide to do
338 # this in the future, but note that this would require some modification
339 # to src/engine/setup.py before it would really work.
340 #
341 #python2_scons = {
342 #        'pkg'          : 'python2-' + project,
343 #        'src_subdir'   : 'engine',
344 #        'inst_subdir'  : os.path.join('lib', 'python2.1', 'site-packages'),
345 #
346 #        'debian_deps'  : [
347 #                            'debian/changelog',
348 #                            'debian/control',
349 #                            'debian/copyright',
350 #                            'debian/dirs',
351 #                            'debian/docs',
352 #                            'debian/postinst',
353 #                            'debian/prerm',
354 #                            'debian/rules',
355 #                          ],
356 #
357 #        'files'        : [
358 #                            'LICENSE.txt',
359 #                            'README.txt',
360 #                            'setup.cfg',
361 #                            'setup.py',
362 #                          ],
363 #        'filemap'      : {
364 #                            'LICENSE.txt' : '../LICENSE.txt',
365 #                          },
366 #}
367 #
368
369 scons_script = {
370         'pkg'           : project + '-script',
371         'src_subdir'    : 'script',
372         'inst_subdir'   : 'bin',
373
374         'debian_deps'   : [
375                             'debian/changelog',
376                             'debian/control',
377                             'debian/copyright',
378                             'debian/dirs',
379                             'debian/docs',
380                             'debian/postinst',
381                             'debian/prerm',
382                             'debian/rules',
383                           ],
384
385         'files'         : [
386                             'LICENSE.txt',
387                             'README.txt',
388                             'setup.cfg',
389                             'setup.py',
390                           ],
391
392         'filemap'       : {
393                             'LICENSE.txt' : '../LICENSE.txt',
394                             'scons'       : 'scons.py',
395                            }
396 }
397
398 scons = {
399         'pkg'           : project,
400
401         'debian_deps'   : [ 
402                             'debian/changelog',
403                             'debian/control',
404                             'debian/copyright',
405                             'debian/dirs',
406                             'debian/docs',
407                             'debian/postinst',
408                             'debian/prerm',
409                             'debian/rules',
410                           ],
411
412         'files'         : [ 
413                             'CHANGES.txt',
414                             'LICENSE.txt',
415                             'README.txt',
416                             'RELEASE.txt',
417                             'os_spawnv_fix.diff',
418                             'scons.1',
419                             'script/scons.bat',
420                             'setup.cfg',
421                             'setup.py',
422                           ],
423
424         'filemap'       : {
425                             'scons.1' : '../doc/man/scons.1',
426                           },
427
428         'subpkgs'       : [ python_scons, scons_script ],
429
430         'subinst_dirs'  : {
431                              'python-' + project : python_project_subinst_dir,
432                              project + '-script' : project_script_subinst_dir,
433                            },
434 }
435
436 src_deps = []
437 src_files = []
438
439 for p in [ scons ]:
440     #
441     # Initialize variables with the right directories for this package.
442     #
443     pkg = p['pkg']
444     pkg_version = "%s-%s" % (pkg, version)
445
446     src = 'src'
447     if p.has_key('src_subdir'):
448         src = os.path.join(src, p['src_subdir'])
449
450     build = os.path.join('build', pkg)
451
452     tar_gz = os.path.join(build, 'dist', "%s.tar.gz" % pkg_version)
453     platform_tar_gz = os.path.join(build,
454                                    'dist',
455                                    "%s.%s.tar.gz" % (pkg_version, platform))
456     zip = os.path.join(build, 'dist', "%s.zip" % pkg_version)
457     platform_zip = os.path.join(build,
458                                 'dist',
459                                 "%s.%s.zip" % (pkg_version, platform))
460     win32_exe = os.path.join(build, 'dist', "%s.win32.exe" % pkg_version)
461
462     #
463     # Update the environment with the relevant information
464     # for this package.
465     #
466     # We can get away with calling setup.py using a directory path
467     # like this because we put a preamble in it that will chdir()
468     # to the directory in which setup.py exists.
469     #
470     setup_py = os.path.join(build, 'setup.py')
471     env.Update(PKG = pkg,
472                PKG_VERSION = pkg_version,
473                SETUP_PY = setup_py)
474     Local(setup_py)
475
476     #
477     # Read up the list of source files from our MANIFEST.in.
478     # This list should *not* include LICENSE.txt, MANIFEST,
479     # README.txt, or setup.py.  Make a copy of the list for the
480     # destination files.
481     #
482     manifest_in = File(os.path.join(src, 'MANIFEST.in')).rstr()
483     src_files = map(lambda x: x[:-1],
484                     open(manifest_in).readlines())
485     raw_files = src_files[:]
486     dst_files = src_files[:]
487
488     MANIFEST_in_list = []
489
490     if p.has_key('subpkgs'):
491         #
492         # This package includes some sub-packages.  Read up their
493         # MANIFEST.in files, and add them to our source and destination
494         # file lists, modifying them as appropriate to add the
495         # specified subdirs.
496         #
497         for sp in p['subpkgs']:
498             ssubdir = sp['src_subdir']
499             isubdir = p['subinst_dirs'][sp['pkg']]
500             MANIFEST_in = File(os.path.join(src, ssubdir, 'MANIFEST.in')).rstr()
501             MANIFEST_in_list.append(MANIFEST_in)
502             f = map(lambda x: x[:-1], open(MANIFEST_in).readlines())
503             raw_files.extend(f)
504             src_files.extend(map(lambda x, s=ssubdir: os.path.join(s, x), f))
505             if isubdir:
506                 f = map(lambda x, i=isubdir: os.path.join(i, x), f)
507             dst_files.extend(f)
508             for k in sp['filemap'].keys():
509                 f = sp['filemap'][k]
510                 if f:
511                     k = os.path.join(sp['src_subdir'], k)
512                     p['filemap'][k] = os.path.join(sp['src_subdir'], f)
513
514     #
515     # Now that we have the "normal" source files, add those files
516     # that are standard for each distribution.  Note that we don't
517     # add these to dst_files, because they don't get installed.
518     # And we still have the MANIFEST to add.
519     #
520     src_files.extend(p['files'])
521
522     #
523     # Now run everything in src_file through the sed command we
524     # concocted to expand __FILE__, __VERSION__, etc.
525     #
526     for b in src_files:
527         s = p['filemap'].get(b, b)
528         env.SCons_revision(os.path.join(build, b), os.path.join(src, s))
529
530     #
531     # NOW, finally, we can create the MANIFEST, which we do
532     # by having Python spit out the contents of the src_files
533     # array we've carefully created.  After we've added
534     # MANIFEST itself to the array, of course.
535     #
536     src_files.append("MANIFEST")
537     MANIFEST_in_list.append(os.path.join(src, 'MANIFEST.in'))
538
539     def write_src_files(target, source, **kw):
540         global src_files
541         src_files.sort()
542         f = open(str(target[0]), 'wb')
543         for file in src_files:
544             f.write(file + "\n")
545         f.close()
546         return 0
547     env.Command(os.path.join(build, 'MANIFEST'),
548                 MANIFEST_in_list,
549                 write_src_files)
550
551     #
552     # Now go through and arrange to create whatever packages we can.
553     #
554     build_src_files = map(lambda x, b=build: os.path.join(b, x), src_files)
555     apply(Local, build_src_files, {})
556
557     distutils_formats = []
558
559     distutils_targets = [ win32_exe ]
560
561     install_targets = distutils_targets[:]
562
563     if gzip:
564
565         distutils_formats.append('gztar')
566
567         src_deps.append(tar_gz)
568
569         distutils_targets.extend([ tar_gz, platform_tar_gz ])
570         install_targets.extend([ tar_gz, platform_tar_gz ])
571
572         #
573         # Unpack the tar.gz archive created by the distutils into
574         # build/unpack-tar-gz/scons-{version}.
575         #
576         # We'd like to replace the last three lines with the following:
577         #
578         #       tar zxf $SOURCES -C $UNPACK_TAR_GZ_DIR
579         #
580         # but that gives heartburn to Cygwin's tar, so work around it
581         # with separate zcat-tar-rm commands.
582         #
583         unpack_tar_gz_files = map(lambda x, u=unpack_tar_gz_dir, pv=pkg_version:
584                                          os.path.join(u, pv, x),
585                                   src_files)
586         env.Command(unpack_tar_gz_files, tar_gz, [
587                     "rm -rf %s" % os.path.join(unpack_tar_gz_dir, pkg_version),
588                     "$ZCAT $SOURCES > .temp",
589                     "tar xf .temp -C $UNPACK_TAR_GZ_DIR",
590                     "rm -f .temp",
591         ])
592     
593         #
594         # Run setup.py in the unpacked subdirectory to "install" everything
595         # into our build/test subdirectory.  The runtest.py script will set
596         # PYTHONPATH so that the tests only look under build/test-{package},
597         # and under etc (for the testing modules TestCmd.py, TestSCons.py,
598         # and unittest.py).  This makes sure that our tests pass with what
599         # we really packaged, not because of something hanging around in
600         # the development directory.
601         #
602         # We can get away with calling setup.py using a directory path
603         # like this because we put a preamble in it that will chdir()
604         # to the directory in which setup.py exists.
605         #
606         dfiles = map(lambda x, d=test_tar_gz_dir: os.path.join(d, x), dst_files)
607         env.Command(dfiles, unpack_tar_gz_files, [
608             "rm -rf %s" % os.path.join(unpack_tar_gz_dir, pkg_version, 'build'),
609             "rm -rf $TEST_TAR_GZ_DIR",
610             "$PYTHON %s install --prefix=$TEST_TAR_GZ_DIR" % \
611                 os.path.join(unpack_tar_gz_dir, pkg_version, 'setup.py'),
612         ])
613
614     if zipit:
615
616         distutils_formats.append('zip')
617
618         src_deps.append(zip)
619
620         distutils_targets.extend([ zip, platform_zip ])
621         install_targets.extend([ zip, platform_zip ])
622
623         #
624         # Unpack the zip archive created by the distutils into
625         # build/unpack-zip/scons-{version}.
626         #
627         unpack_zip_files = map(lambda x, u=unpack_zip_dir, pv=pkg_version:
628                                       os.path.join(u, pv, x),
629                                src_files)
630
631         env.Command(unpack_zip_files, zip, unzipit)
632
633         #
634         # Run setup.py in the unpacked subdirectory to "install" everything
635         # into our build/test subdirectory.  The runtest.py script will set
636         # PYTHONPATH so that the tests only look under build/test-{package},
637         # and under etc (for the testing modules TestCmd.py, TestSCons.py,
638         # and unittest.py).  This makes sure that our tests pass with what
639         # we really packaged, not because of something hanging around in
640         # the development directory.
641         #
642         # We can get away with calling setup.py using a directory path
643         # like this because we put a preamble in it that will chdir()
644         # to the directory in which setup.py exists.
645         #
646         dfiles = map(lambda x, d=test_zip_dir: os.path.join(d, x), dst_files)
647         env.Command(dfiles, unpack_zip_files, [
648             "rm -rf %s" % os.path.join(unpack_zip_dir, pkg_version, 'build'),
649             "rm -rf $TEST_ZIP_DIR",
650             "$PYTHON %s install --prefix=$TEST_ZIP_DIR" % \
651                 os.path.join(unpack_zip_dir, pkg_version, 'setup.py'),
652         ])
653
654     if rpmbuild:
655         topdir = os.path.join(os.getcwd(), build, 'build',
656                               'bdist.' + platform, 'rpm')
657
658         BUILDdir = os.path.join(topdir, 'BUILD', pkg + '-' + version)
659         RPMSdir = os.path.join(topdir, 'RPMS', 'noarch')
660         SOURCESdir = os.path.join(topdir, 'SOURCES')
661         SPECSdir = os.path.join(topdir, 'SPECS')
662         SRPMSdir = os.path.join(topdir, 'SRPMS')
663
664         specfile = os.path.join(SPECSdir, "%s-1.spec" % pkg_version)
665         sourcefile = os.path.join(SOURCESdir, "%s.tar.gz" % pkg_version);
666         noarch_rpm = os.path.join(RPMSdir, "%s-1.noarch.rpm" % pkg_version)
667         src_rpm = os.path.join(SRPMSdir, "%s-1.src.rpm" % pkg_version)
668
669         env.InstallAs(specfile, os.path.join('rpm', "%s.spec" % pkg))
670         env.InstallAs(sourcefile, tar_gz)
671
672         targets = [ noarch_rpm, src_rpm ]
673         cmd = "$RPMBUILD --define '_topdir $(%s$)' -ba $SOURCES" % topdir
674         if not os.path.isdir(BUILDdir):
675             cmd = ("$( mkdir -p %s; $)" % BUILDdir) + cmd
676         env.Command(targets, specfile, cmd)
677         env.Depends(targets, sourcefile)
678
679         install_targets.extend(targets)
680
681         dfiles = map(lambda x, d=test_rpm_dir: os.path.join(d, 'usr', x),
682                      dst_files)
683         env.Command(dfiles,
684                     noarch_rpm,
685                     "$RPM2CPIO $SOURCES | (cd $TEST_RPM_DIR && cpio -id)")
686
687     if dh_builddeb and fakeroot:
688         # Our Debian packaging builds directly into build/dist,
689         # so we don't need to add the .debs to install_targets.
690         deb = os.path.join('build', 'dist', "%s_%s-1_all.deb" % (pkg, version))
691         for d in p['debian_deps']:
692             b = env.SCons_revision(os.path.join(build, d), d)
693             env.Depends(deb, b)
694             Local(b)
695         env.Command(deb, build_src_files, [
696             "cd %s && fakeroot make -f debian/rules PYTHON=$PYTHON BUILDDEB_OPTIONS=--destdir=../../build/dist binary" % build,
697                     ])
698
699         old = os.path.join('lib', 'scons', '')
700         new = os.path.join('lib', 'python2.1', 'site-packages', '')
701         def xxx(s, old=old, new=new):
702             if s[:len(old)] == old:
703                 s = new + s[len(old):]
704             return os.path.join('usr', s)
705         dfiles = map(lambda x, t=test_deb_dir: os.path.join(t, x),
706                      map(xxx, dst_files))
707         env.Command(dfiles,
708                     deb,
709                     "dpkg --fsys-tarfile $SOURCES | (cd $TEST_DEB_DIR && tar -xf -)")
710
711     #
712     # Use the Python distutils to generate the appropriate packages.
713     #
714     commands = [
715         "rm -rf %s" % os.path.join(build, 'build', 'lib'),
716         "rm -rf %s" % os.path.join(build, 'build', 'scripts'),
717     ]
718
719     if distutils_formats:
720         commands.append("rm -rf %s" % os.path.join(build,
721                                                    'build',
722                                                    'bdist.' + platform,
723                                                    'dumb'))
724         for format in distutils_formats:
725             commands.append("$PYTHON $SETUP_PY bdist_dumb -f %s" % format)
726
727         commands.append("$PYTHON $SETUP_PY sdist --formats=%s" %  \
728                             string.join(distutils_formats, ','))
729
730     commands.append("$PYTHON $SETUP_PY bdist_wininst")
731
732     env.Command(distutils_targets, build_src_files, commands)
733
734     #
735     # Now create local packages for people who want to let people
736     # build their SCons-buildable packages without having to
737     # install SCons.
738     #
739     s_l_v = '%s-local-%s' % (pkg, version)
740
741     local = os.path.join('build', pkg + '-local')
742     cwd_local = os.path.join(os.getcwd(), local)
743     cwd_local_slv = os.path.join(os.getcwd(), local, s_l_v)
744
745     local_tar_gz = os.path.join('build', 'dist', "%s.tar.gz" % s_l_v)
746     local_zip = os.path.join('build', 'dist', "%s.zip" % s_l_v)
747
748     commands = [
749         "rm -rf %s" % local,
750         "$PYTHON $SETUP_PY install --install-script=%s --install-lib=%s --no-compile" % \
751                                                 (cwd_local, cwd_local_slv),
752         "mv %s/scons %s/scons.py" % (local, local),
753     ]
754
755     rf = filter(lambda x: x != "scons", raw_files)
756     rf = map(lambda x, slv=s_l_v: os.path.join(slv, x), rf)
757     rf.append("scons.py")
758     local_targets = map(lambda x, s=local: os.path.join(s, x), rf)
759
760     env.Command(local_targets, build_src_files, commands)
761
762     scons_LICENSE = os.path.join(local, 'scons-LICENSE')
763     env.SCons_revision(scons_LICENSE, 'LICENSE-local')
764     local_targets.append(scons_LICENSE)
765
766     scons_README = os.path.join(local, 'scons-README')
767     env.SCons_revision(scons_README, 'README-local')
768     local_targets.append(scons_README)
769
770     if gzip:
771         env.Command(local_tar_gz,
772                     local_targets,
773                     "cd %s && tar czf $( ${TARGET.abspath} $) *" % local)
774
775         unpack_targets = map(lambda x, d=test_local_tar_gz_dir:
776                                     os.path.join(d, x),
777                              rf)
778         commands = ["rm -rf %s" % test_local_tar_gz_dir,
779                     "mkdir %s" % test_local_tar_gz_dir,
780                     "cd %s && tar xzf $( ${SOURCE.abspath} $)" % test_local_tar_gz_dir]
781
782         env.Command(unpack_targets, local_tar_gz, commands)
783
784     if zipit:
785         zipenv = env.Copy(CD = local, PSV = '.')
786         zipenv.Command(local_zip, local_targets, zipit)
787
788         unpack_targets = map(lambda x, d=test_local_zip_dir:
789                                     os.path.join(d, x),
790                              rf)
791         commands = ["rm -rf %s" % test_local_zip_dir,
792                     "mkdir %s" % test_local_zip_dir,
793                     unzipit]
794
795         zipenv = env.Copy(UNPACK_ZIP_DIR = test_local_zip_dir)
796         zipenv.Command(unpack_targets, local_zip, unzipit)
797
798     #
799     # And, lastly, install the appropriate packages in the
800     # appropriate subdirectory.
801     #
802     b_d_files = env.Install(os.path.join('build', 'dist'), install_targets)
803     Local(b_d_files)
804
805 #
806 #
807 #
808 Export('env')
809
810 SConscript('etc/SConscript')
811
812 #
813 # Documentation.
814 #
815 BuildDir('build/doc', 'doc')
816
817 Export('env', 'whereis')
818
819 SConscript('build/doc/SConscript')
820
821 #
822 # If we're running in the actual Aegis project, pack up a complete
823 # source archive from the project files and files in the change,
824 # so we can share it with helpful developers who don't use Aegis.
825 #
826
827 if change:
828     df = []
829     cmd = "aegis -list -unf -c %s cf 2>/dev/null" % change
830     for line in map(lambda x: x[:-1], os.popen(cmd, "r").readlines()):
831         a = string.split(line)
832         if a[1] == "remove":
833             df.append(a[-1])
834
835     cmd = "aegis -list -terse pf 2>/dev/null"
836     pf = map(lambda x: x[:-1], os.popen(cmd, "r").readlines())
837     cmd = "aegis -list -terse cf 2>/dev/null"
838     cf = map(lambda x: x[:-1], os.popen(cmd, "r").readlines())
839     u = {}
840     for f in pf + cf:
841         u[f] = 1
842     for f in df:
843         del u[f]
844     sfiles = filter(lambda x: x[-9:] != '.aeignore' and x[-9:] != '.sconsign',
845                     u.keys())
846
847     if sfiles:
848         ps = "%s-src" % project
849         psv = "%s-%s" % (ps, version)
850         b_ps = os.path.join('build', ps)
851         b_psv = os.path.join('build', psv)
852         b_psv_stamp = b_psv + '-stamp'
853
854         src_tar_gz = os.path.join('build', 'dist', '%s.tar.gz' % psv)
855         src_zip = os.path.join('build', 'dist', '%s.zip' % psv)
856
857         Local(src_tar_gz, src_zip)
858
859         for file in sfiles:
860             env.SCons_revision(os.path.join(b_ps, file), file)
861
862         b_ps_files = map(lambda x, d=b_ps: os.path.join(d, x), sfiles)
863         cmds = [
864             "rm -rf %s" % b_psv,
865             "cp -rp %s %s" % (b_ps, b_psv),
866             "find %s -name .sconsign -exec rm {} \\;" % b_psv,
867             "touch $TARGET",
868         ]
869
870         env.Command(b_psv_stamp, src_deps + b_ps_files, cmds)
871
872         apply(Local, b_ps_files, {})
873
874         if gzip:
875
876             env.Command(src_tar_gz, b_psv_stamp,
877                         "tar cz${TAR_HFLAG} -f $TARGET -C build %s" % psv)
878     
879             #
880             # Unpack the archive into build/unpack/scons-{version}.
881             #
882             unpack_tar_gz_files = map(lambda x, u=unpack_tar_gz_dir, psv=psv:
883                                              os.path.join(u, psv, x),
884                                       sfiles)
885     
886             #
887             # We'd like to replace the last three lines with the following:
888             #
889             #   tar zxf $SOURCES -C $UNPACK_TAR_GZ_DIR
890             #
891             # but that gives heartburn to Cygwin's tar, so work around it
892             # with separate zcat-tar-rm commands.
893             env.Command(unpack_tar_gz_files, src_tar_gz, [
894                 "rm -rf %s" % os.path.join(unpack_tar_gz_dir, psv),
895                 "$ZCAT $SOURCES > .temp",
896                 "tar xf .temp -C $UNPACK_TAR_GZ_DIR",
897                 "rm -f .temp",
898             ])
899     
900             #
901             # Run setup.py in the unpacked subdirectory to "install" everything
902             # into our build/test subdirectory.  The runtest.py script will set
903             # PYTHONPATH so that the tests only look under build/test-{package},
904             # and under etc (for the testing modules TestCmd.py, TestSCons.py,
905             # and unittest.py).  This makes sure that our tests pass with what
906             # we really packaged, not because of something hanging around in
907             # the development directory.
908             #
909             # We can get away with calling setup.py using a directory path
910             # like this because we put a preamble in it that will chdir()
911             # to the directory in which setup.py exists.
912             #
913             dfiles = map(lambda x, d=test_src_tar_gz_dir: os.path.join(d, x),
914                             dst_files)
915             ENV = env.Dictionary('ENV')
916             ENV['SCONS_LIB_DIR'] = os.path.join(unpack_tar_gz_dir, psv, 'src', 'engine')
917             ENV['USERNAME'] = developer
918             env.Copy(ENV = ENV).Command(dfiles, unpack_tar_gz_files, [
919                 "rm -rf %s" % os.path.join(unpack_tar_gz_dir,
920                                            psv,
921                                            'build',
922                                            'scons',
923                                            'build'),
924                 "rm -rf $TEST_SRC_TAR_GZ_DIR",
925                 "cd %s && $PYTHON %s %s" % \
926                     (os.path.join(unpack_tar_gz_dir, psv),
927                      os.path.join('src', 'script', 'scons.py'),
928                      os.path.join('build', 'scons')),
929                 "$PYTHON %s install --prefix=$TEST_SRC_TAR_GZ_DIR" % \
930                     os.path.join(unpack_tar_gz_dir,
931                                  psv,
932                                  'build',
933                                  'scons',
934                                  'setup.py'),
935             ])
936
937         if zipit:
938
939             zipenv = env.Copy(CD = 'build', PSV = psv)
940             zipenv.Command(src_zip, b_psv_stamp, zipit)
941     
942             #
943             # Unpack the archive into build/unpack/scons-{version}.
944             #
945             unpack_zip_files = map(lambda x, u=unpack_zip_dir, psv=psv:
946                                              os.path.join(u, psv, x),
947                                       sfiles)
948     
949             env.Command(unpack_zip_files, src_zip, unzipit)
950     
951             #
952             # Run setup.py in the unpacked subdirectory to "install" everything
953             # into our build/test subdirectory.  The runtest.py script will set
954             # PYTHONPATH so that the tests only look under build/test-{package},
955             # and under etc (for the testing modules TestCmd.py, TestSCons.py,
956             # and unittest.py).  This makes sure that our tests pass with what
957             # we really packaged, not because of something hanging around in
958             # the development directory.
959             #
960             # We can get away with calling setup.py using a directory path
961             # like this because we put a preamble in it that will chdir()
962             # to the directory in which setup.py exists.
963             #
964             dfiles = map(lambda x, d=test_src_zip_dir: os.path.join(d, x),
965                             dst_files)
966             ENV = env.Dictionary('ENV')
967             ENV['SCONS_LIB_DIR'] = os.path.join(unpack_zip_dir, psv, 'src', 'engine')
968             ENV['USERNAME'] = developer
969             env.Copy(ENV = ENV).Command(dfiles, unpack_zip_files, [
970                 "rm -rf %s" % os.path.join(unpack_zip_dir,
971                                            psv,
972                                            'build',
973                                            'scons',
974                                            'build'),
975                 "rm -rf $TEST_SRC_ZIP_DIR",
976                 "cd %s && $PYTHON %s %s" % \
977                     (os.path.join(unpack_zip_dir, psv),
978                      os.path.join('src', 'script', 'scons.py'),
979                      os.path.join('build', 'scons')),
980                 "$PYTHON %s install --prefix=$TEST_SRC_ZIP_DIR" % \
981                     os.path.join(unpack_zip_dir,
982                                  psv,
983                                  'build',
984                                  'scons',
985                                  'setup.py'),
986             ])