diff options
| author | William Deegan <bill@baddogconsulting.com> | 2020-06-30 12:33:34 -0700 |
|---|---|---|
| committer | William Deegan <bill@baddogconsulting.com> | 2020-06-30 12:33:34 -0700 |
| commit | f2fb4bb5449c1375c0cbde5d15f674a168f2b3bf (patch) | |
| tree | efd80e2bc07bcc19547a4d58eea5d4e8db8c9214 /template | |
| parent | 073c5a23eb8505f68c5d70b92e8a0098d03158d8 (diff) | |
| download | scons-git-f2fb4bb5449c1375c0cbde5d15f674a168f2b3bf.tar.gz | |
API doc builds working now. Generating SCons/__versioninfo.py but not yet using it
Diffstat (limited to 'template')
| -rw-r--r-- | template/__init__.py | 40 |
1 files changed, 35 insertions, 5 deletions
diff --git a/template/__init__.py b/template/__init__.py index 1399f0ba3..56d6e4a59 100644 --- a/template/__init__.py +++ b/template/__init__.py @@ -1,12 +1,35 @@ -"""${subst '/' '.' ${subst '^src/' '' ${subst '/[^/]*$' '' $filename}}} +# +# __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 -XXX +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 @@ -27,9 +50,16 @@ XXX # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # -__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" - +__revision__ = "__REVISION__" __version__ = "__VERSION__" +__build__ = "__BUILD__" +__buildsys__ = "__BUILDSYS__" +__date__ = "__DATE__" +__developer__ = "__DEVELOPER__" +__copyright__ = "__COPYRIGHT__" + +# make sure compatibility is always in place +import SCons.compat # Local Variables: # tab-width:4 |
