diff options
author | Steven Knight <knight@baldmt.com> | 2002-12-04 14:07:45 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-12-04 14:07:45 (GMT) |
commit | 1974e3b981c83ab735d03798d4bf77906097d7fc (patch) | |
tree | f28cd2e24d605e5832faf1ba48c1ab1172b394fb /README | |
parent | cf8c7c1a70d630deb1d1f7c0e43b40a783787e10 (diff) | |
download | SCons-1974e3b981c83ab735d03798d4bf77906097d7fc.zip SCons-1974e3b981c83ab735d03798d4bf77906097d7fc.tar.gz SCons-1974e3b981c83ab735d03798d4bf77906097d7fc.tar.bz2 |
Package a standalone scons-local package.
Diffstat (limited to 'README')
-rw-r--r-- | README | 45 |
1 files changed, 26 insertions, 19 deletions
@@ -60,12 +60,12 @@ In this case, your options are: -- (Optional.) Install from a pre-packaged SCons package that does not require distutils: - Red Hat Linux scons-0.08-1.noarch.rpm + Red Hat Linux scons-0.09-1.noarch.rpm - Debian GNU/Linux scons_0.08-1_all.deb + Debian GNU/Linux scons_0.09-1_all.deb (or use apt-get) - Windows scons-0.08.win32.exe + Windows scons-0.09.win32.exe -- (Recommended.) Download the latest distutils package from the following URL: @@ -178,16 +178,18 @@ more typing: Depending on the utilities installed on your system, any or all of the following packages will be built: - build/dist/scons-0.08-1.noarch.rpm - build/dist/scons-0.08-1.src.rpm - build/dist/scons-0.08.linux-i686.tar.gz - build/dist/scons-0.08.tar.gz - build/dist/scons-0.08.win32.exe - build/dist/scons-0.08.zip - build/dist/scons-doc-0.08.tar.gz - build/dist/scons-src-0.08.tar.gz - build/dist/scons-src-0.08.zip - build/dist/scons_0.08-1_all.deb + build/dist/scons-0.09-1.noarch.rpm + build/dist/scons-0.09-1.src.rpm + build/dist/scons-0.09.linux-i686.tar.gz + build/dist/scons-0.09.tar.gz + build/dist/scons-0.09.win32.exe + build/dist/scons-0.09.zip + build/dist/scons-doc-0.09.tar.gz + build/dist/scons-local-0.09.tar.gz + build/dist/scons-local-0.09.zip + build/dist/scons-src-0.09.tar.gz + build/dist/scons-src-0.09.zip + build/dist/scons_0.09-1_all.deb The SConstruct file is supposed to be smart enough to avoid trying to build packages for which you don't have the proper utilities installed. @@ -204,17 +206,22 @@ will also unpack one or more of the packages for testing. TESTING PACKAGES ================ -A full build will unpack and/or install any .deb, .rpm., .src.tar.gz, -.src.zip, .tar.gz, and .zip packages into separate build/test-*/ -subdirectories. (Of course, if a package was not built on your system, -it should not try to install it.) The runtest.py script supports a -p -option that will run the specified tests (individually or collectively -via the -a option) against the unpacked build/test-/* subdirectory: +A full build will unpack and/or install any .deb, .rpm., .local.tar.gz, +.local.zip, .src.tar.gz, .src.zip, .tar.gz, and .zip packages into +separate build/test-*/ subdirectories. (Of course, if a package was +not built on your system, it should not try to install it.) The +runtest.py script supports a -p option that will run the specified tests +(individually or collectively via the -a option) against the unpacked +build/test-/* subdirectory: $ python runtest.py -p deb $ python runtest.py -p rpm + $ python runtest.py -p local-tar-gz + + $ python runtest.py -p local-zip + $ python runtest.py -p src-tar-gz $ python runtest.py -p src-zip |