Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix reproducible builds. Restore logic respecting SOURCE_DATE_EPOCH when ↵ | William Deegan | 2021-08-02 | 1 | -1/+1 |
| | | | | set. Fix version tests to work with updated scons --version output. (Date format changed) | ||||
* | fix doc release date to be the same as the format in CHANGES.txt,etc | William Deegan | 2021-07-18 | 1 | -1/+14 |
| | |||||
* | Fix several sider complaints | Mats Wichmann | 2021-05-05 | 1 | -2/+2 |
| | | | | | | | | | | Unfortunately, this made for more reformatting - sider complains in some of these about indent not being a multiple of four because one line of a block was touched, to eliminate had to reindent the whole block, including all the lines not touched by the original commit. Used a tool... Signed-off-by: Mats Wichmann <mats@linux.com> | ||||
* | Fix some imports and other checker warnings | Mats Wichmann | 2021-05-05 | 1 | -3/+3 |
| | | | | | | | | | | | | | * Removed a number of imports reported as unused. * Reorganize imports in a few places. * Checker reported warnings problems ("Instantiating an exception, but not raising it, has no effect"): serveral tool modules instantiated a warning class thinking (?) it would issue the warning; changed these to the standard use - calling the warn() function with the warnclass as an arg. * Tool modules that were touched had the copyright header munging applied. * Removed irritating "####" lines from gettext and msgfmt tools. Signed-off-by: Mats Wichmann <mats@linux.com> | ||||
* | scons.1 sconsign.1 scons-time.1 now make it into zip, tgz sdist and wheel | William Deegan | 2020-10-09 | 1 | -1/+9 |
| | |||||
* | mark SCons/__init__.py as NoClean() so scons -c doesn't leave the tree in a ↵ | William Deegan | 2020-10-09 | 1 | -0/+1 |
| | | | | broken state | ||||
* | Fix version info in scons-local package scripts | William Deegan | 2020-07-06 | 1 | -1/+3 |
| | |||||
* | clean up sider/flake8 warnings | William Deegan | 2020-06-30 | 2 | -1/+2 |
| | |||||
* | have scripts use central SCons.__init__.py's __version__,etc | William Deegan | 2020-06-30 | 1 | -8/+6 |
| | |||||
* | All working except automatic build of wheel and sdist package | William Deegan | 2020-06-30 | 1 | -4/+9 |
| | |||||
* | API doc builds working now. Generating SCons/__versioninfo.py but not yet ↵ | William Deegan | 2020-06-30 | 2 | -0/+14 |
| | | | | using it | ||||
* | cleanup | William Deegan | 2020-06-29 | 1 | -4/+3 |
| | |||||
* | a little clean up | William Deegan | 2020-06-23 | 1 | -3/+2 |
| | |||||
* | Add scons-local-${VERSION}.tar.gz | William Deegan | 2020-06-23 | 1 | -7/+13 |
| | |||||
* | updates. build/dist/scons-local-${VERSION}.zip is now produced | William Deegan | 2020-06-23 | 3 | -5/+41 |
| | |||||
* | add copyright notice | William Deegan | 2020-06-17 | 1 | -0/+61 |
| | |||||
* | classes no longer explicitly inherit from object | Mats Wichmann | 2020-05-24 | 1 | -1/+1 |
| | | | | | | In Python3 this is the default. Signed-off-by: Mats Wichmann <mats@linux.com> | ||||
* | Address github review notes and sider issues | William Deegan | 2020-04-11 | 3 | -5/+10 |
| | |||||
* | First pass of refactor. Moved command line argument processing into ↵ | William Deegan | 2020-04-09 | 3 | -3/+155 |
| | | | | site_scons/BuildCommandLine.py. Sorted out all changes caused by that. | ||||
* | add SKIP_DOC= variable to enable disabling buildign documents. Moved epydoc ↵ | William Deegan | 2020-04-09 | 2 | -1/+102 |
| | | | | setup into site_scons/epydoc.py | ||||
* | [ci skip] Fix SConsRevision.py to properly use with open as f instead of ↵ | William Deegan | 2020-02-05 | 1 | -3/+5 |
| | | | | open, which was throwing warnings when run with newer pythons | ||||
* | syntax fixups suggested by PyCharm | Mats Wichmann | 2019-12-23 | 2 | -2/+2 |
| | | | | | | | | | | | | | | Drop unneeded parens. Drop trailing semicolons. Triple double-quote docstrings. Regexes drop unneeded escapes. Spaces around parens, braces: remove/add. Some one-tuples get their missing closing comma. A couple of sets use set init syntax {foo} instead of set([iter]) now. And a fiddle in Node to reduce lookup time on md5 signature functions (came about because of a line-too-long issue, initially) Signed-off-by: Mats Wichmann <mats@linux.com> | ||||
* | [PY 3.8] test fixes for file closings, rawstrings | Mats Wichmann | 2019-04-25 | 1 | -10/+8 |
| | | | | | | | On a linux host (missing some things that may be on the Travis CI setup), Py3.8a3 now shows 19 fails, 1048 pass, with 84 Warning: messages. Signed-off-by: Mats Wichmann <mats@linux.com> | ||||
* | Simplify main SConstruct. Remove deb and rpm and win executable package ↵ | William Deegan | 2017-10-04 | 4 | -1/+137 |
| | | | | creation as we're moving to pip install being the main install path. | ||||
* | Migrate some logic from SConstruct into site_scons to simplify top level ↵ | William Deegan | 2017-10-03 | 2 | -0/+41 |
SConstruct |