summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2020-11-10 20:22:07 (GMT)
committerMats Wichmann <mats@linux.com>2020-11-10 20:22:07 (GMT)
commitaa11aea5e433b4d37739130774394288a906c6c5 (patch)
tree255899d4e0bb1517234708f98f9211bb6d38d09f /template
parentab4deb9ac4054236cace895def8db64f7da8d43c (diff)
downloadSCons-aa11aea5e433b4d37739130774394288a906c6c5.zip
SCons-aa11aea5e433b4d37739130774394288a906c6c5.tar.gz
SCons-aa11aea5e433b4d37739130774394288a906c6c5.tar.bz2
Update templates [ci skip]
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'template')
-rw-r--r--template/Tests.py9
-rw-r--r--template/__init__.py68
-rw-r--r--template/file.py17
-rw-r--r--template/test.py10
4 files changed, 17 insertions, 87 deletions
diff --git a/template/Tests.py b/template/Tests.py
index 4d62e0a..a615314 100644
--- a/template/Tests.py
+++ b/template/Tests.py
@@ -1,5 +1,6 @@
+# MIT License
#
-# __COPYRIGHT__
+# Copyright The SCons Foundation
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
@@ -19,9 +20,11 @@
# 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.
-#
-__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
+"""
+Template for unit-test file.
+Replace this with a description of the test.
+"""
import unittest
diff --git a/template/__init__.py b/template/__init__.py
deleted file mode 100644
index caae1ba..0000000
--- a/template/__init__.py
+++ /dev/null
@@ -1,68 +0,0 @@
-#
-# __COPYRIGHT__
-#
-# 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.
-#
-
-"""SCons
-
-The main package for the SCons software construction utility.
-
-"""
-
-#
-# __COPYRIGHT__
-#
-# 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.
-#
-
-__revision__ = "__REVISION__"
-__version__ = "__VERSION__"
-__build__ = "__BUILD__"
-__buildsys__ = "__BUILDSYS__"
-__date__ = "__DATE__"
-__developer__ = "__DEVELOPER__"
-__copyright__ = "__COPYRIGHT__"
-
-# make sure compatibility is always in place
-import SCons.compat # noqa
-
-# Local Variables:
-# tab-width:4
-# indent-tabs-mode:nil
-# End:
-# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/template/file.py b/template/file.py
index f506de4..8c95d01 100644
--- a/template/file.py
+++ b/template/file.py
@@ -1,11 +1,6 @@
-"""${subst '/' '.' ${subst '^src/' '' ${subst '\.py$' '' $filename}}}
-
-XXX
-
-"""
-
+# MIT License
#
-# __COPYRIGHT__
+# Copyright The SCons Foundation
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
@@ -25,11 +20,11 @@ XXX
# 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.
-#
-
-__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
-
+"""
+Template for an SCons source file.
+Replace this with the purpose of the file.
+"""
import XXX
diff --git a/template/test.py b/template/test.py
index 0463cbf..b60f40f 100644
--- a/template/test.py
+++ b/template/test.py
@@ -1,6 +1,8 @@
#!/usr/bin/env python
#
-# __COPYRIGHT__
+# MIT License
+#
+# Copyright The SCons Foundation
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
@@ -20,12 +22,10 @@
# 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.
-#
-
-__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
"""
-XXX Put a description of the test here.
+Template for end-to-end test file.
+Replace this with a description of the test.
"""
import TestSCons