1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386
|
#
# SConstruct file to build scons packages during development.
#
# See the README.rst file for an overview of how SCons is built and tested.
copyright_years = '2001 - 2016'
# This gets inserted into the man pages to reflect the month of release.
month_year = 'November 2016'
#
# Copyright (c) 2001 - 2016 The SCons Foundation
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
import distutils.util
import fnmatch
import os
import os.path
import re
import stat
import sys
import tempfile
import bootstrap
project = 'scons'
default_version = '2.5.1'
copyright = "Copyright (c) %s The SCons Foundation" % copyright_years
platform = distutils.util.get_platform()
def is_windows():
if platform.startswith('win'):
return True
else:
return False
SConsignFile()
#
# An internal "whereis" routine to figure out if a given program
# is available on this system.
#
def whereis(file):
exts = ['']
if is_windows():
exts += ['.exe']
for dir in os.environ['PATH'].split(os.pathsep):
f = os.path.join(dir, file)
for ext in exts:
f_ext = f + ext
if os.path.isfile(f_ext):
try:
st = os.stat(f_ext)
except:
continue
if stat.S_IMODE(st[stat.ST_MODE]) & 0111:
return f_ext
return None
#
# We let the presence or absence of various utilities determine whether
# or not we bother to build certain pieces of things. This should allow
# people to still do SCons packaging work even if they don't have all
# of the utilities installed (e.g. RPM).
#
dh_builddeb = whereis('dh_builddeb')
fakeroot = whereis('fakeroot')
gzip = whereis('gzip')
rpmbuild = whereis('rpmbuild')
hg = os.path.exists('.hg') and whereis('hg')
unzip = whereis('unzip')
zip = whereis('zip')
#
# Now grab the information that we "build" into the files.
#
date = ARGUMENTS.get('DATE')
if not date:
import time
date = time.strftime("%Y/%m/%d %H:%M:%S", time.localtime(time.time()))
developer = ARGUMENTS.get('DEVELOPER')
if not developer:
for variable in ['USERNAME', 'LOGNAME', 'USER']:
developer = os.environ.get(variable)
if developer:
break
build_system = ARGUMENTS.get('BUILD_SYSTEM')
if not build_system:
import socket
build_system = socket.gethostname().split('.')[0]
version = ARGUMENTS.get('VERSION', '')
if not version:
version = default_version
hg_status_lines = []
if hg:
cmd = "%s status --all 2> /dev/null" % hg
hg_status_lines = os.popen(cmd, "r").readlines()
revision = ARGUMENTS.get('REVISION', '')
def generate_build_id(revision):
return revision
if not revision and hg:
hg_heads = os.popen("%s heads 2> /dev/null" % hg, "r").read()
cs = re.search('changeset:\s+(\S+)', hg_heads)
if cs:
revision = cs.group(1)
b = re.search('branch:\s+(\S+)', hg_heads)
if b:
revision = b.group(1) + ':' + revision
def generate_build_id(revision):
result = revision
if [l for l in hg_status_lines if l[0] in 'AMR!']:
result = result + '[MODIFIED]'
return result
checkpoint = ARGUMENTS.get('CHECKPOINT', '')
if checkpoint:
if checkpoint == 'd':
import time
checkpoint = time.strftime('%Y%m%d', time.localtime(time.time()))
elif checkpoint == 'r':
checkpoint = 'r' + revision
version = version + '.beta.' + checkpoint
build_id = ARGUMENTS.get('BUILD_ID')
if build_id is None:
if revision:
build_id = generate_build_id(revision)
else:
build_id = ''
import os.path
import distutils.command
no_winpack_templates = not os.path.exists(os.path.join(os.path.split(distutils.command.__file__)[0],'wininst-9.0.exe'))
skip_win_packages = ARGUMENTS.get('SKIP_WIN_PACKAGES',False) or no_winpack_templates
if skip_win_packages:
print "Skipping the build of Windows packages..."
python_ver = sys.version[0:3]
#
# Adding some paths to sys.path, this is mainly needed
# for the doc toolchain.
#
addpaths = [os.path.abspath(os.path.join(os.getcwd(), 'bin')),
os.path.abspath(os.path.join(os.getcwd(), 'QMTest'))]
for a in addpaths:
if a not in sys.path:
sys.path.append(a)
# Re-exporting LD_LIBRARY_PATH is necessary if the Python version was
# built with the --enable-shared option.
ENV = { 'PATH' : os.environ['PATH'] }
for key in ['LOGNAME', 'PYTHONPATH', 'LD_LIBRARY_PATH']:
if key in os.environ:
ENV[key] = os.environ[key]
build_dir = ARGUMENTS.get('BUILDDIR', 'build')
if not os.path.isabs(build_dir):
build_dir = os.path.normpath(os.path.join(os.getcwd(), build_dir))
command_line_variables = [
("BUILDDIR=", "The directory in which to build the packages. " +
"The default is the './build' subdirectory."),
("BUILD_ID=", "An identifier for the specific build." +
"The default is the Subversion revision number."),
("BUILD_SYSTEM=", "The system on which the packages were built. " +
"The default is whatever hostname is returned " +
"by socket.gethostname()."),
("CHECKPOINT=", "The specific checkpoint release being packaged, " +
"which will be appended to the VERSION string. " +
"A value of CHECKPOINT=d will generate a string " +
"of 'd' plus today's date in the format YYYMMDD. " +
"A value of CHECKPOINT=r will generate a " +
"string of 'r' plus the Subversion revision " +
"number. Any other CHECKPOINT= string will be " +
"used as is. There is no default value."),
("DATE=", "The date string representing when the packaging " +
"build occurred. The default is the day and time " +
"the SConstruct file was invoked, in the format " +
"YYYY/MM/DD HH:MM:SS."),
("DEVELOPER=", "The developer who created the packages. " +
"The default is the first set environment " +
"variable from the list $USERNAME, $LOGNAME, $USER."),
("REVISION=", "The revision number of the source being built. " +
"The default is the Subversion revision returned " +
"'hg heads', with an appended string of " +
"'[MODIFIED]' if there are any changes in the " +
"working copy."),
("VERSION=", "The SCons version being packaged. The default " +
"is the hard-coded value '%s' " % default_version +
"from this SConstruct file."),
("SKIP_WIN_PACKAGES=", "If set, skip building win32 and win64 packages."),
]
Default('.', build_dir)
packaging_flavors = [
('deb', "A .deb package. (This is currently not supported.)"),
('rpm', "A RedHat Package Manager file."),
('tar-gz', "The normal .tar.gz file for end-user installation."),
('src-tar-gz', "A .tar.gz file containing all the source " +
"(including tests and documentation)."),
('local-tar-gz', "A .tar.gz file for dropping into other software " +
"for local use."),
('zip', "The normal .zip file for end-user installation."),
('src-zip', "A .zip file containing all the source " +
"(including tests and documentation)."),
('local-zip', "A .zip file for dropping into other software " +
"for local use."),
]
test_deb_dir = os.path.join(build_dir, "test-deb")
test_rpm_dir = os.path.join(build_dir, "test-rpm")
test_tar_gz_dir = os.path.join(build_dir, "test-tar-gz")
test_src_tar_gz_dir = os.path.join(build_dir, "test-src-tar-gz")
test_local_tar_gz_dir = os.path.join(build_dir, "test-local-tar-gz")
test_zip_dir = os.path.join(build_dir, "test-zip")
test_src_zip_dir = os.path.join(build_dir, "test-src-zip")
test_local_zip_dir = os.path.join(build_dir, "test-local-zip")
unpack_tar_gz_dir = os.path.join(build_dir, "unpack-tar-gz")
unpack_zip_dir = os.path.join(build_dir, "unpack-zip")
if is_windows():
tar_hflag = ''
python_project_subinst_dir = os.path.join("Lib", "site-packages", project)
project_script_subinst_dir = 'Scripts'
else:
tar_hflag = 'h'
python_project_subinst_dir = os.path.join("lib", project)
project_script_subinst_dir = 'bin'
import textwrap
indent_fmt = ' %-26s '
Help("""\
The following aliases build packages of various types, and unpack the
contents into build/test-$PACKAGE subdirectories, which can be used by the
runtest.py -p option to run tests against what's been actually packaged:
""")
aliases = sorted(packaging_flavors + [('doc', 'The SCons documentation.')])
for alias, help_text in aliases:
tw = textwrap.TextWrapper(
width = 78,
initial_indent = indent_fmt % alias,
subsequent_indent = indent_fmt % '' + ' ',
)
Help(tw.fill(help_text) + '\n')
Help("""
The following command-line variables can be set:
""")
for variable, help_text in command_line_variables:
tw = textwrap.TextWrapper(
width = 78,
initial_indent = indent_fmt % variable,
subsequent_indent = indent_fmt % '' + ' ',
)
Help(tw.fill(help_text) + '\n')
zcat = 'gzip -d -c'
#
# Figure out if we can handle .zip files.
#
zipit = None
unzipit = None
try:
import zipfile
def zipit(env, target, source):
print "Zipping %s:" % str(target[0])
def visit(arg, dirname, names):
for name in names:
path = os.path.join(dirname, name)
if os.path.isfile(path):
arg.write(path)
# default ZipFile compression is ZIP_STORED
zf = zipfile.ZipFile(str(target[0]), 'w', compression=zipfile.ZIP_DEFLATED)
olddir = os.getcwd()
os.chdir(env['CD'])
try: os.path.walk(env['PSV'], visit, zf)
finally: os.chdir(olddir)
zf.close()
def unzipit(env, target, source):
print "Unzipping %s:" % str(source[0])
zf = zipfile.ZipFile(str(source[0]), 'r')
for name in zf.namelist():
dest = os.path.join(env['UNPACK_ZIP_DIR'], name)
dir = os.path.dirname(dest)
try:
os.makedirs(dir)
except:
pass
print dest,name
# if the file exists, then delete it before writing
# to it so that we don't end up trying to write to a symlink:
if os.path.isfile(dest) or os.path.islink(dest):
os.unlink(dest)
if not os.path.isdir(dest):
open(dest, 'wb').write(zf.read(name))
except ImportError:
if unzip and zip:
zipit = "cd $CD && $ZIP $ZIPFLAGS $( ${TARGET.abspath} $) $PSV"
unzipit = "$UNZIP $UNZIPFLAGS $SOURCES"
def SCons_revision(target, source, env):
"""Interpolate specific values from the environment into a file.
This is used to copy files into a tree that gets packaged up
into the source file package.
"""
t = str(target[0])
s = source[0].rstr()
contents = open(s, 'rb').read()
# Note: We construct the __*__ substitution strings here
# so that they don't get replaced when this file gets
# copied into the tree for packaging.
contents = contents.replace('__BUILD' + '__', env['BUILD'])
contents = contents.replace('__BUILDSYS' + '__', env['BUILDSYS'])
contents = contents.replace('__COPYRIGHT' + '__', env['COPYRIGHT'])
contents = contents.replace('__DATE' + '__', env['DATE'])
contents = contents.replace('__DEVELOPER' + '__', env['DEVELOPER'])
contents = contents.replace('__FILE' + '__', str(source[0]).replace('\\', '/'))
contents = contents.replace('__MONTH_YEAR'+ '__', env['MONTH_YEAR'])
contents = contents.replace('__REVISION' + '__', env['REVISION'])
contents = contents.replace('__VERSION' + '__', env['VERSION'])
contents = contents.replace('__NULL' + '__', '')
open(t, 'wb').write(contents)
os.chmod(t, os.stat(s)[0])
revaction = SCons_revision
revbuilder = Builder(action = Action(SCons_revision,
varlist=['COPYRIGHT', 'VERSION']))
def soelim(target, source, env):
"""
Interpolate files included in [gnt]roff source files using the
.so directive.
This behaves somewhat like the soelim(1) wrapper around groff, but
makes us independent of whether the actual underlying implementation
includes an soelim() command or the corresponding command-line option
to groff(1). The key behavioral difference is that this doesn't
recursively include .so files from the include file. Not yet, anyway.
"""
t = str(target[0])
s = str(source[0])
dir, f = os.path.split(s)
tfp = open(t, 'w')
sfp = open(s, 'r')
for line in sfp.readlines():
if line[:4] in ['.so ', "'so "]:
sofile = os.path.join(dir, line[4:-1])
tfp.write(open(sofile, 'r').read())
else:
tfp.write(line)
sfp.close()
tfp.close()
def soscan(node, env, path):
c = node.get_text_contents()
return re.compile(r"^[\.']so\s+(\S+)", re.M).findall(c)
soelimbuilder = Builder(action = Action(soelim),
source_scanner = Scanner(soscan))
# When copying local files from a Repository (Aegis),
# just make copies, don't symlink them.
SetOption('duplicate', 'copy')
env = Environment(
ENV = ENV,
BUILD = build_id,
BUILDDIR = build_dir,
BUILDSYS = build_system,
COPYRIGHT = copyright,
DATE = date,
DEVELOPER = developer,
DISTDIR = os.path.join(build_dir, 'dist'),
MONTH_YEAR = month_year,
REVISION = revision,
VERSION = version,
DH_COMPAT = 2,
TAR_HFLAG = tar_hflag,
ZIP = zip,
ZIPFLAGS = '-r',
UNZIP = unzip,
UNZIPFLAGS = '-o -d $UNPACK_ZIP_DIR',
ZCAT = zcat,
RPMBUILD = rpmbuild,
RPM2CPIO = 'rpm2cpio',
TEST_DEB_DIR = test_deb_dir,
TEST_RPM_DIR = test_rpm_dir,
TEST_SRC_TAR_GZ_DIR = test_src_tar_gz_dir,
TEST_SRC_ZIP_DIR = test_src_zip_dir,
TEST_TAR_GZ_DIR = test_tar_gz_dir,
TEST_ZIP_DIR = test_zip_dir,
UNPACK_TAR_GZ_DIR = unpack_tar_gz_dir,
UNPACK_ZIP_DIR = unpack_zip_dir,
BUILDERS = { 'SCons_revision' : revbuilder,
'SOElim' : soelimbuilder },
PYTHON = '"%s"' % sys.executable,
PYTHONFLAGS = '-tt',
)
Version_values = [Value(version), Value(build_id)]
#
# Define SCons packages.
#
# In the original, more complicated packaging scheme, we were going
# to have separate packages for:
#
# python-scons only the build engine
# scons-script only the script
# scons the script plus the build engine
#
# We're now only delivering a single "scons" package, but this is still
# "built" as two sub-packages (the build engine and the script), so
# the definitions remain here, even though we're not using them for
# separate packages.
#
from distutils.sysconfig import get_python_lib;
python_scons = {
'pkg' : 'python-' + project,
'src_subdir' : 'engine',
'inst_subdir' : get_python_lib(),
'rpm_dir' : '/usr/lib/scons',
'debian_deps' : [
'debian/changelog',
'debian/control',
'debian/copyright',
'debian/dirs',
'debian/docs',
'debian/postinst',
'debian/prerm',
'debian/rules',
],
'files' : [ 'LICENSE.txt',
'README.txt',
'setup.cfg',
'setup.py',
],
'filemap' : {
'LICENSE.txt' : '../LICENSE.txt'
},
'buildermap' : {},
'extra_rpm_files' : [],
'explicit_deps' : {
'SCons/__init__.py' : Version_values,
},
}
# Figure out the name of a .egg-info file that might be generated
# as part of the RPM package. There are two complicating factors.
#
# First, the RPM spec file we generate will just execute "python", not
# necessarily the one in sys.executable. If *that* version of python has
# a distutils that knows about Python eggs, then setup.py will generate a
# .egg-info file, so we have to execute any distutils logic in a subshell.
#
# Second, we can't just have the subshell check for the existence of the
# distutils.command.install_egg_info module and generate the expected
# file name by hand, the way we used to, because different systems can
# have slightly different .egg-info naming conventions. (Specifically,
# Ubuntu overrides the default behavior to remove the Python version
# string from the .egg-info file name.) The right way to do this is to
# actually call into the install_egg_info() class to have it generate
# the expected name for us.
#
# This is all complicated enough that we do it by writing an in-line
# script to a temporary file and then feeding it to a separate invocation
# of "python" to tell us the actual name of the generated .egg-info file.
print_egg_info_name = """
try:
from distutils.dist import Distribution
from distutils.command.install_egg_info import install_egg_info
except ImportError:
pass
else:
dist = Distribution({'name' : "scons", 'version' : '%s'})
i = install_egg_info(dist)
i.finalize_options()
import os.path
print os.path.split(i.outputs[0])[1]
""" % version
try:
fd, tfname = tempfile.mkstemp()
tfp = os.fdopen(fd, "w")
tfp.write(print_egg_info_name)
tfp.close()
egg_info_file = os.popen("python %s" % tfname).read()[:-1]
if egg_info_file:
python_scons['extra_rpm_files'].append(egg_info_file)
finally:
try:
os.unlink(tfname)
except EnvironmentError:
pass
#
# The original packaging scheme would have have required us to push
# the Python version number into the package name (python1.5-scons,
# python2.0-scons, etc.), which would have required a definition
# like the following. Leave this here in case we ever decide to do
# this in the future, but note that this would require some modification
# to src/engine/setup.py before it would really work.
#
#python2_scons = {
# 'pkg' : 'python2-' + project,
# 'src_subdir' : 'engine',
# 'inst_subdir' : os.path.join('lib', 'python2.2', 'site-packages'),
#
# 'debian_deps' : [
# 'debian/changelog',
# 'debian/control',
# 'debian/copyright',
# 'debian/dirs',
# 'debian/docs',
# 'debian/postinst',
# 'debian/prerm',
# 'debian/rules',
# ],
#
# 'files' : [
# 'LICENSE.txt',
# 'README.txt',
# 'setup.cfg',
# 'setup.py',
# ],
# 'filemap' : {
# 'LICENSE.txt' : '../LICENSE.txt',
# },
# 'buildermap' : {},
#}
#
scons_script = {
'pkg' : project + '-script',
'src_subdir' : 'script',
'inst_subdir' : 'bin',
'rpm_dir' : '/usr/bin',
'debian_deps' : [
'debian/changelog',
'debian/control',
'debian/copyright',
'debian/dirs',
'debian/docs',
'debian/postinst',
'debian/prerm',
'debian/rules',
],
'files' : [
'LICENSE.txt',
'README.txt',
'setup.cfg',
'setup.py',
],
'filemap' : {
'LICENSE.txt' : '../LICENSE.txt',
'scons' : 'scons.py',
'sconsign' : 'sconsign.py',
'scons-time' : 'scons-time.py',
'scons-configure-cache' : 'scons-configure-cache.py',
},
'buildermap' : {},
'extra_rpm_files' : [
'scons-' + version,
'sconsign-' + version,
'scons-time-' + version,
'scons-configure-cache-' + version,
],
'explicit_deps' : {
'scons' : Version_values,
'sconsign' : Version_values,
},
}
scons = {
'pkg' : project,
'debian_deps' : [
'debian/changelog',
'debian/control',
'debian/copyright',
'debian/dirs',
'debian/docs',
'debian/postinst',
'debian/prerm',
'debian/rules',
],
'files' : [
'CHANGES.txt',
'LICENSE.txt',
'README.txt',
'RELEASE.txt',
'scons.1',
'sconsign.1',
'scons-time.1',
'script/scons.bat',
#'script/scons-post-install.py',
'setup.cfg',
'setup.py',
],
'filemap' : {
'scons.1' : '$BUILDDIR/doc/man/scons.1',
'sconsign.1' : '$BUILDDIR/doc/man/sconsign.1',
'scons-time.1' : '$BUILDDIR/doc/man/scons-time.1',
},
'buildermap' : {
'scons.1' : env.SOElim,
'sconsign.1' : env.SOElim,
'scons-time.1' : env.SOElim,
},
'subpkgs' : [ python_scons, scons_script ],
'subinst_dirs' : {
'python-' + project : python_project_subinst_dir,
project + '-script' : project_script_subinst_dir,
},
}
scripts = ['scons', 'sconsign', 'scons-time', 'scons-configure-cache']
src_deps = []
src_files = []
for p in [ scons ]:
#
# Initialize variables with the right directories for this package.
#
pkg = p['pkg']
pkg_version = "%s-%s" % (pkg, version)
src = 'src'
if 'src_subdir' in p:
src = os.path.join(src, p['src_subdir'])
build = os.path.join(build_dir, pkg)
tar_gz = os.path.join(build, 'dist', "%s.tar.gz" % pkg_version)
platform_tar_gz = os.path.join(build,
'dist',
"%s.%s.tar.gz" % (pkg_version, platform))
zip = os.path.join(build, 'dist', "%s.zip" % pkg_version)
platform_zip = os.path.join(build,
'dist',
"%s.%s.zip" % (pkg_version, platform))
#
# Update the environment with the relevant information
# for this package.
#
# We can get away with calling setup.py using a directory path
# like this because we put a preamble in it that will chdir()
# to the directory in which setup.py exists.
#
setup_py = os.path.join(build, 'setup.py')
env.Replace(PKG = pkg,
PKG_VERSION = pkg_version,
SETUP_PY = '"%s"' % setup_py)
Local(setup_py)
#
# Read up the list of source files from our MANIFEST.in.
# This list should *not* include LICENSE.txt, MANIFEST,
# README.txt, or setup.py. Make a copy of the list for the
# destination files.
#
manifest_in = File(os.path.join(src, 'MANIFEST.in')).rstr()
src_files = bootstrap.parseManifestLines(src, open(manifest_in).readlines())
raw_files = src_files[:]
dst_files = src_files[:]
rpm_files = []
MANIFEST_in_list = []
if 'subpkgs' in p:
#
# This package includes some sub-packages. Read up their
# MANIFEST.in files, and add them to our source and destination
# file lists, modifying them as appropriate to add the
# specified subdirs.
#
for sp in p['subpkgs']:
ssubdir = sp['src_subdir']
isubdir = p['subinst_dirs'][sp['pkg']]
MANIFEST_in = File(os.path.join(src, ssubdir, 'MANIFEST.in')).rstr()
MANIFEST_in_list.append(MANIFEST_in)
files = bootstrap.parseManifestLines(os.path.join(src, ssubdir), open(MANIFEST_in).readlines())
raw_files.extend(files)
src_files.extend([os.path.join(ssubdir, x) for x in files])
for f in files:
r = os.path.join(sp['rpm_dir'], f)
rpm_files.append(r)
if f[-3:] == ".py":
rpm_files.append(r + 'c')
for f in sp.get('extra_rpm_files', []):
r = os.path.join(sp['rpm_dir'], f)
rpm_files.append(r)
files = [os.path.join(isubdir, x) for x in files]
dst_files.extend(files)
for k, f in sp['filemap'].items():
if f:
k = os.path.join(ssubdir, k)
p['filemap'][k] = os.path.join(ssubdir, f)
for f, deps in sp['explicit_deps'].items():
f = os.path.join(build, ssubdir, f)
env.Depends(f, deps)
#
# Now that we have the "normal" source files, add those files
# that are standard for each distribution. Note that we don't
# add these to dst_files, because they don't get installed.
# And we still have the MANIFEST to add.
#
src_files.extend(p['files'])
#
# Now run everything in src_file through the sed command we
# concocted to expand SConstruct, 2.5.1, etc.
#
for b in src_files:
s = p['filemap'].get(b, b)
if not s[0] == '$' and not os.path.isabs(s):
s = os.path.join(src, s)
builder = p['buildermap'].get(b, env.SCons_revision)
x = builder(os.path.join(build, b), s)
Local(x)
#
# NOW, finally, we can create the MANIFEST, which we do
# by having Python spit out the contents of the src_files
# array we've carefully created. After we've added
# MANIFEST itself to the array, of course.
#
src_files.append("MANIFEST")
MANIFEST_in_list.append(os.path.join(src, 'MANIFEST.in'))
def write_src_files(target, source, **kw):
global src_files
src_files.sort()
f = open(str(target[0]), 'wb')
for file in src_files:
f.write(file + "\n")
f.close()
return 0
env.Command(os.path.join(build, 'MANIFEST'),
MANIFEST_in_list,
write_src_files)
#
# Now go through and arrange to create whatever packages we can.
#
build_src_files = [os.path.join(build, x) for x in src_files]
Local(*build_src_files)
distutils_formats = []
distutils_targets = []
if not skip_win_packages:
win64_exe = os.path.join(build, 'dist', "%s.win-amd64.exe" % pkg_version)
win32_exe = os.path.join(build, 'dist', "%s.win32.exe" % pkg_version)
distutils_targets.extend([ win32_exe , win64_exe ])
dist_distutils_targets = []
for target in distutils_targets:
dist_target = env.Install('$DISTDIR', target)
AddPostAction(dist_target, Chmod(dist_target, 0644))
dist_distutils_targets += dist_target
if not gzip:
print "gzip not found in %s; skipping .tar.gz package for %s." % (os.environ['PATH'], pkg)
else:
distutils_formats.append('gztar')
src_deps.append(tar_gz)
distutils_targets.extend([ tar_gz, platform_tar_gz ])
dist_tar_gz = env.Install('$DISTDIR', tar_gz)
dist_platform_tar_gz = env.Install('$DISTDIR', platform_tar_gz)
Local(dist_tar_gz, dist_platform_tar_gz)
AddPostAction(dist_tar_gz, Chmod(dist_tar_gz, 0644))
AddPostAction(dist_platform_tar_gz, Chmod(dist_platform_tar_gz, 0644))
#
# Unpack the tar.gz archive created by the distutils into
# build/unpack-tar-gz/scons-{version}.
#
# We'd like to replace the last three lines with the following:
#
# tar zxf $SOURCES -C $UNPACK_TAR_GZ_DIR
#
# but that gives heartburn to Cygwin's tar, so work around it
# with separate zcat-tar-rm commands.
#
unpack_tar_gz_files = [os.path.join(unpack_tar_gz_dir, pkg_version, x)
for x in src_files]
env.Command(unpack_tar_gz_files, dist_tar_gz, [
Delete(os.path.join(unpack_tar_gz_dir, pkg_version)),
"$ZCAT $SOURCES > .temp",
"tar xf .temp -C $UNPACK_TAR_GZ_DIR",
Delete(".temp"),
])
#
# Run setup.py in the unpacked subdirectory to "install" everything
# into our build/test subdirectory. The runtest.py script will set
# PYTHONPATH so that the tests only look under build/test-{package},
# and under QMTest (for the testing modules TestCmd.py, TestSCons.py,
# etc.). This makes sure that our tests pass with what
# we really packaged, not because of something hanging around in
# the development directory.
#
# We can get away with calling setup.py using a directory path
# like this because we put a preamble in it that will chdir()
# to the directory in which setup.py exists.
#
dfiles = [os.path.join(test_tar_gz_dir, x) for x in dst_files]
env.Command(dfiles, unpack_tar_gz_files, [
Delete(os.path.join(unpack_tar_gz_dir, pkg_version, 'build')),
Delete("$TEST_TAR_GZ_DIR"),
'$PYTHON $PYTHONFLAGS "%s" install "--prefix=$TEST_TAR_GZ_DIR" --standalone-lib' % \
os.path.join(unpack_tar_gz_dir, pkg_version, 'setup.py'),
])
#
# Generate portage files for submission to Gentoo Linux.
#
gentoo = os.path.join(build, 'gentoo')
ebuild = os.path.join(gentoo, 'scons-%s.ebuild' % version)
digest = os.path.join(gentoo, 'files', 'digest-scons-%s' % version)
env.Command(ebuild, os.path.join('gentoo', 'scons.ebuild.in'), SCons_revision)
def Digestify(target, source, env):
import md5
src = source[0].rfile()
contents = open(str(src)).read()
sig = md5.new(contents).hexdigest()
bytes = os.stat(str(src))[6]
open(str(target[0]), 'w').write("MD5 %s %s %d\n" % (sig,
src.name,
bytes))
env.Command(digest, tar_gz, Digestify)
if not zipit:
print "zip not found; skipping .zip package for %s." % pkg
else:
distutils_formats.append('zip')
src_deps.append(zip)
distutils_targets.extend([ zip, platform_zip ])
dist_zip = env.Install('$DISTDIR', zip)
dist_platform_zip = env.Install('$DISTDIR', platform_zip)
Local(dist_zip, dist_platform_zip)
AddPostAction(dist_zip, Chmod(dist_zip, 0644))
AddPostAction(dist_platform_zip, Chmod(dist_platform_zip, 0644))
#
# Unpack the zip archive created by the distutils into
# build/unpack-zip/scons-{version}.
#
unpack_zip_files = [os.path.join(unpack_zip_dir, pkg_version, x)
for x in src_files]
env.Command(unpack_zip_files, dist_zip, [
Delete(os.path.join(unpack_zip_dir, pkg_version)),
unzipit,
])
#
# Run setup.py in the unpacked subdirectory to "install" everything
# into our build/test subdirectory. The runtest.py script will set
# PYTHONPATH so that the tests only look under build/test-{package},
# and under QMTest (for the testing modules TestCmd.py, TestSCons.py,
# etc.). This makes sure that our tests pass with what
# we really packaged, not because of something hanging around in
# the development directory.
#
# We can get away with calling setup.py using a directory path
# like this because we put a preamble in it that will chdir()
# to the directory in which setup.py exists.
#
dfiles = [os.path.join(test_zip_dir, x) for x in dst_files]
env.Command(dfiles, unpack_zip_files, [
Delete(os.path.join(unpack_zip_dir, pkg_version, 'build')),
Delete("$TEST_ZIP_DIR"),
'$PYTHON $PYTHONFLAGS "%s" install "--prefix=$TEST_ZIP_DIR" --standalone-lib' % \
os.path.join(unpack_zip_dir, pkg_version, 'setup.py'),
])
if not rpmbuild:
msg = "@echo \"Warning: Can not build 'rpm': no rpmbuild utility found\""
AlwaysBuild(Alias('rpm', [], msg))
else:
topdir = os.path.join(build, 'build',
'bdist.' + platform, 'rpm')
buildroot = os.path.join(build_dir, 'rpm-buildroot')
BUILDdir = os.path.join(topdir, 'BUILD', pkg + '-' + version)
RPMSdir = os.path.join(topdir, 'RPMS', 'noarch')
SOURCESdir = os.path.join(topdir, 'SOURCES')
SPECSdir = os.path.join(topdir, 'SPECS')
SRPMSdir = os.path.join(topdir, 'SRPMS')
specfile_in = os.path.join('rpm', "%s.spec.in" % pkg)
specfile = os.path.join(SPECSdir, "%s-1.spec" % pkg_version)
sourcefile = os.path.join(SOURCESdir, "%s.tar.gz" % pkg_version);
noarch_rpm = os.path.join(RPMSdir, "%s-1.noarch.rpm" % pkg_version)
src_rpm = os.path.join(SRPMSdir, "%s-1.src.rpm" % pkg_version)
def spec_function(target, source, env):
"""Generate the RPM .spec file from the template file.
This fills in the %files portion of the .spec file with a
list generated from our MANIFEST(s), so we don't have to
maintain multiple lists.
"""
c = open(str(source[0]), 'rb').read()
c = c.replace('__VERSION' + '__', env['VERSION'])
c = c.replace('__RPM_FILES' + '__', env['RPM_FILES'])
open(str(target[0]), 'wb').write(c)
rpm_files.sort()
rpm_files_str = "\n".join(rpm_files) + "\n"
rpm_spec_env = env.Clone(RPM_FILES = rpm_files_str)
rpm_spec_action = Action(spec_function, varlist=['RPM_FILES'])
rpm_spec_env.Command(specfile, specfile_in, rpm_spec_action)
env.InstallAs(sourcefile, tar_gz)
Local(sourcefile)
targets = [ noarch_rpm, src_rpm ]
cmd = "$RPMBUILD --define '_topdir $(%s$)' --buildroot %s -ba $SOURCES" % (topdir, buildroot)
if not os.path.isdir(BUILDdir):
cmd = ("$( mkdir -p %s; $)" % BUILDdir) + cmd
t = env.Command(targets, specfile, cmd)
env.Depends(t, sourcefile)
dist_noarch_rpm = env.Install('$DISTDIR', noarch_rpm)
dist_src_rpm = env.Install('$DISTDIR', src_rpm)
Local(dist_noarch_rpm, dist_src_rpm)
AddPostAction(dist_noarch_rpm, Chmod(dist_noarch_rpm, 0644))
AddPostAction(dist_src_rpm, Chmod(dist_src_rpm, 0644))
dfiles = [os.path.join(test_rpm_dir, 'usr', x) for x in dst_files]
env.Command(dfiles,
dist_noarch_rpm,
"$RPM2CPIO $SOURCES | (cd $TEST_RPM_DIR && cpio -id)")
if dh_builddeb and fakeroot:
# Our Debian packaging builds directly into build/dist,
# so we don't need to Install() the .debs.
# The built deb is called just x.y.z, not x.y.z.final.0 so strip those off:
deb_version = '.'.join(version.split('.')[0:3])
deb = os.path.join(build_dir, 'dist', "%s_%s_all.deb" % (pkg, deb_version))
# print "Building deb into %s (version=%s)"%(deb, deb_version)
for d in p['debian_deps']:
b = env.SCons_revision(os.path.join(build, d), d)
env.Depends(deb, b)
Local(b)
env.Command(deb, build_src_files, [
"cd %s && fakeroot make -f debian/rules PYTHON=$PYTHON BUILDDEB_OPTIONS=--destdir=../../build/dist binary" % build,
])
old = os.path.join('lib', 'scons', '')
new = os.path.join('lib', 'python' + python_ver, 'site-packages', '')
def xxx(s, old=old, new=new):
if s[:len(old)] == old:
s = new + s[len(old):]
return os.path.join('usr', s)
dfiles = [os.path.join(test_deb_dir, xxx(x)) for x in dst_files]
env.Command(dfiles,
deb,
"dpkg --fsys-tarfile $SOURCES | (cd $TEST_DEB_DIR && tar -xf -)")
#
# Use the Python distutils to generate the appropriate packages.
#
commands = [
Delete(os.path.join(build, 'build', 'lib')),
Delete(os.path.join(build, 'build', 'scripts')),
]
if distutils_formats:
commands.append(Delete(os.path.join(build,
'build',
'bdist.' + platform,
'dumb')))
for format in distutils_formats:
commands.append("$PYTHON $PYTHONFLAGS $SETUP_PY bdist_dumb -f %s" % format)
commands.append("$PYTHON $PYTHONFLAGS $SETUP_PY sdist --formats=%s" % \
','.join(distutils_formats))
if not skip_win_packages:
commands.append("$PYTHON $PYTHONFLAGS $SETUP_PY bdist_wininst --plat-name=win32 --user-access-control auto")
commands.append("$PYTHON $PYTHONFLAGS $SETUP_PY bdist_wininst --plat-name=win-amd64 --user-access-control auto")
env.Command(distutils_targets, build_src_files, commands)
#
# Now create local packages for people who want to let people
# build their SCons-buildable packages without having to
# install SCons.
#
s_l_v = '%s-local-%s' % (pkg, version)
local = pkg + '-local'
build_dir_local = os.path.join(build_dir, local)
build_dir_local_slv = os.path.join(build_dir, local, s_l_v)
dist_local_tar_gz = os.path.join("$DISTDIR/%s.tar.gz" % s_l_v)
dist_local_zip = os.path.join("$DISTDIR/%s.zip" % s_l_v)
AddPostAction(dist_local_tar_gz, Chmod(dist_local_tar_gz, 0644))
AddPostAction(dist_local_zip, Chmod(dist_local_zip, 0644))
commands = [
Delete(build_dir_local),
'$PYTHON $PYTHONFLAGS $SETUP_PY install "--install-script=%s" "--install-lib=%s" --no-install-man --no-compile --standalone-lib --no-version-script' % \
(build_dir_local, build_dir_local_slv),
]
for script in scripts:
# add .py extension for scons-local scripts on non-windows platforms
if is_windows():
break
local_script = os.path.join(build_dir_local, script)
commands.append(Move(local_script + '.py', local_script))
rf = [x for x in raw_files if not x in scripts]
rf = [os.path.join(s_l_v, x) for x in rf]
for script in scripts:
rf.append("%s.py" % script)
local_targets = [os.path.join(build_dir_local, x) for x in rf]
env.Command(local_targets, build_src_files, commands)
scons_LICENSE = os.path.join(build_dir_local, 'scons-LICENSE')
l = env.SCons_revision(scons_LICENSE, 'LICENSE-local')
local_targets.append(l)
Local(l)
scons_README = os.path.join(build_dir_local, 'scons-README')
l = env.SCons_revision(scons_README, 'README-local')
local_targets.append(l)
Local(l)
if gzip:
if is_windows():
# avoid problem with tar interpreting c:/ as a remote machine
tar_cargs = '-cz --force-local -f'
else:
tar_cargs = '-czf'
env.Command(dist_local_tar_gz,
local_targets,
"cd %s && tar %s $( ${TARGET.abspath} $) *" % (build_dir_local, tar_cargs))
unpack_targets = [os.path.join(test_local_tar_gz_dir, x) for x in rf]
commands = [Delete(test_local_tar_gz_dir),
Mkdir(test_local_tar_gz_dir),
"cd %s && tar xzf $( ${SOURCE.abspath} $)" % test_local_tar_gz_dir]
env.Command(unpack_targets, dist_local_tar_gz, commands)
if zipit:
env.Command(dist_local_zip, local_targets, zipit,
CD = build_dir_local, PSV = '.')
unpack_targets = [os.path.join(test_local_zip_dir, x) for x in rf]
commands = [Delete(test_local_zip_dir),
Mkdir(test_local_zip_dir),
unzipit]
env.Command(unpack_targets, dist_local_zip, unzipit,
UNPACK_ZIP_DIR = test_local_zip_dir)
#
#
#
Export('build_dir', 'env')
SConscript('QMTest/SConscript')
#
#
#
files = [
'runtest.py',
]
def copy(target, source, env):
t = str(target[0])
s = str(source[0])
open(t, 'wb').write(open(s, 'rb').read())
for file in files:
# Guarantee that real copies of these files always exist in
# build/. If there's a symlink there, then this is an Aegis
# build and we blow them away now so that they'll get "built" later.
p = os.path.join(build_dir, file)
if os.path.islink(p):
os.unlink(p)
if not os.path.isabs(p):
p = '#' + p
sp = env.Command(p, file, copy)
Local(sp)
#
# Documentation.
#
Export('build_dir', 'env', 'whereis', 'revaction')
SConscript('doc/SConscript')
#
# If we're running in a Subversion working directory, pack up a complete
# source archive from the project files and files in the change.
#
sfiles = None
if hg_status_lines:
slines = [l for l in hg_status_lines if l[0] in 'ACM']
sfiles = [l.split()[-1] for l in slines]
else:
print "Not building in a Mercurial tree; skipping building src package."
if sfiles:
remove_patterns = [
'.hgt/*',
'.svnt/*',
'*.aeignore',
'*.hgignore',
'www/*',
]
for p in remove_patterns:
sfiles = [s for s in sfiles if not fnmatch.fnmatch(s, p)]
if sfiles:
ps = "%s-src" % project
psv = "%s-%s" % (ps, version)
b_ps = os.path.join(build_dir, ps)
b_psv = os.path.join(build_dir, psv)
b_psv_stamp = b_psv + '-stamp'
src_tar_gz = os.path.join(build_dir, 'dist', '%s.tar.gz' % psv)
src_zip = os.path.join(build_dir, 'dist', '%s.zip' % psv)
Local(src_tar_gz, src_zip)
for file in sfiles:
env.SCons_revision(os.path.join(b_ps, file), file)
b_ps_files = [os.path.join(b_ps, x) for x in sfiles]
cmds = [
Delete(b_psv),
Copy(b_psv, b_ps),
Touch("$TARGET"),
]
env.Command(b_psv_stamp, src_deps + b_ps_files, cmds)
Local(*b_ps_files)
if gzip:
env.Command(src_tar_gz, b_psv_stamp,
"tar cz${TAR_HFLAG} -f $TARGET -C build %s" % psv)
#
# Unpack the archive into build/unpack/scons-{version}.
#
unpack_tar_gz_files = [os.path.join(unpack_tar_gz_dir, psv, x)
for x in sfiles]
#
# We'd like to replace the last three lines with the following:
#
# tar zxf $SOURCES -C $UNPACK_TAR_GZ_DIR
#
# but that gives heartburn to Cygwin's tar, so work around it
# with separate zcat-tar-rm commands.
env.Command(unpack_tar_gz_files, src_tar_gz, [
Delete(os.path.join(unpack_tar_gz_dir, psv)),
"$ZCAT $SOURCES > .temp",
"tar xf .temp -C $UNPACK_TAR_GZ_DIR",
Delete(".temp"),
])
#
# Run setup.py in the unpacked subdirectory to "install" everything
# into our build/test subdirectory. The runtest.py script will set
# PYTHONPATH so that the tests only look under build/test-{package},
# and under QMTest (for the testing modules TestCmd.py,
# TestSCons.py, etc.). This makes sure that our tests pass with
# what we really packaged, not because of something hanging around
# in the development directory.
#
# We can get away with calling setup.py using a directory path
# like this because we put a preamble in it that will chdir()
# to the directory in which setup.py exists.
#
dfiles = [os.path.join(test_src_tar_gz_dir, x) for x in dst_files]
scons_lib_dir = os.path.join(unpack_tar_gz_dir, psv, 'src', 'engine')
ENV = env.Dictionary('ENV').copy()
ENV['SCONS_LIB_DIR'] = scons_lib_dir
ENV['USERNAME'] = developer
env.Command(dfiles, unpack_tar_gz_files,
[
Delete(os.path.join(unpack_tar_gz_dir,
psv,
'build',
'scons',
'build')),
Delete("$TEST_SRC_TAR_GZ_DIR"),
'cd "%s" && $PYTHON $PYTHONFLAGS "%s" "%s" VERSION="$VERSION"' % \
(os.path.join(unpack_tar_gz_dir, psv),
os.path.join('src', 'script', 'scons.py'),
os.path.join('build', 'scons')),
'$PYTHON $PYTHONFLAGS "%s" install "--prefix=$TEST_SRC_TAR_GZ_DIR" --standalone-lib' % \
os.path.join(unpack_tar_gz_dir,
psv,
'build',
'scons',
'setup.py'),
],
ENV = ENV)
if zipit:
env.Command(src_zip, b_psv_stamp, zipit, CD = 'build', PSV = psv)
#
# Unpack the archive into build/unpack/scons-{version}.
#
unpack_zip_files = [os.path.join(unpack_zip_dir, psv, x)
for x in sfiles]
env.Command(unpack_zip_files, src_zip, [
Delete(os.path.join(unpack_zip_dir, psv)),
unzipit
])
#
# Run setup.py in the unpacked subdirectory to "install" everything
# into our build/test subdirectory. The runtest.py script will set
# PYTHONPATH so that the tests only look under build/test-{package},
# and under QMTest (for the testing modules TestCmd.py,
# TestSCons.py, etc.). This makes sure that our tests pass with
# what we really packaged, not because of something hanging
# around in the development directory.
#
# We can get away with calling setup.py using a directory path
# like this because we put a preamble in it that will chdir()
# to the directory in which setup.py exists.
#
dfiles = [os.path.join(test_src_zip_dir, x) for x in dst_files]
scons_lib_dir = os.path.join(unpack_zip_dir, psv, 'src', 'engine')
ENV = env.Dictionary('ENV').copy()
ENV['SCONS_LIB_DIR'] = scons_lib_dir
ENV['USERNAME'] = developer
env.Command(dfiles, unpack_zip_files,
[
Delete(os.path.join(unpack_zip_dir,
psv,
'build',
'scons',
'build')),
Delete("$TEST_SRC_ZIP_DIR"),
'cd "%s" && $PYTHON $PYTHONFLAGS "%s" "%s" VERSION="$VERSION"' % \
(os.path.join(unpack_zip_dir, psv),
os.path.join('src', 'script', 'scons.py'),
os.path.join('build', 'scons')),
'$PYTHON $PYTHONFLAGS "%s" install "--prefix=$TEST_SRC_ZIP_DIR" --standalone-lib' % \
os.path.join(unpack_zip_dir,
psv,
'build',
'scons',
'setup.py'),
],
ENV = ENV)
for pf, help_text in packaging_flavors:
Alias(pf, [
os.path.join(build_dir, 'test-'+pf),
os.path.join(build_dir, 'QMTest'),
os.path.join(build_dir, 'runtest.py'),
])
|