summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2019-09-07 16:57:45 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2019-09-07 16:57:45 (GMT)
commit7acbe9f3dc6aa50d92f9851b01b767ef3408b229 (patch)
tree248a1759136a39ed4cc637074e7e8b4ac449b674
parent7476da3ebad128f20368543530120f862ab15d22 (diff)
downloadSCons-7acbe9f3dc6aa50d92f9851b01b767ef3408b229.zip
SCons-7acbe9f3dc6aa50d92f9851b01b767ef3408b229.tar.gz
SCons-7acbe9f3dc6aa50d92f9851b01b767ef3408b229.tar.bz2
remove obsoleted files
-rw-r--r--.hgignore22
-rw-r--r--.svnt/conf24
2 files changed, 0 insertions, 46 deletions
diff --git a/.hgignore b/.hgignore
deleted file mode 100644
index 2323687..0000000
--- a/.hgignore
+++ /dev/null
@@ -1,22 +0,0 @@
-build
-bootstrap
-.idea
-
-syntax:glob
-*.py[co]
-.sconsign*
-.svn
-.git
-*~
-*.xcodeproj
-*.orig
-*.DS_Store
-*\#
-*.swp
-
-doc/user/scons-user
-doc/user/scons_db.xml
-doc/user/scons_ex.xml
-doc/user/scons_exi.xml
-doc/user/scons_xi.xml
-doc/user/index.html
diff --git a/.svnt/conf b/.svnt/conf
deleted file mode 100644
index d4ffcb7..0000000
--- a/.svnt/conf
+++ /dev/null
@@ -1,24 +0,0 @@
-import os
-import sys
-
-python = os.environ.get('PYTHON', sys.executable)
-
-build = [
- '"%(python)s" bootstrap.py %%s' % locals()
-]
-
-build_test_baseline = []
-
-cmd = '"%(python)s" runtest.py -q --noqmtest %%s' % locals()
-
-test_inputs = [
- 'src/*.py',
- 'QMTest/*.py',
-]
-
-tests = (
- ('src/*Tests.py', cmd),
- ('test/*.py', cmd),
-)
-
-valid_regression_results = [0, 2]