summaryrefslogtreecommitdiffstats
path: root/SConstruct
Commit message (Collapse)AuthorAgeFilesLines
* post releaseWilliam Deegan2025-03-021-1/+1
|
* Updates for 4.9.0 releaseWilliam Deegan2025-03-021-1/+1
|
* put master branch back in develop modeWilliam Deegan2024-09-041-1/+1
|
* Return master to development mode post releaseWilliam Deegan2024-07-081-1/+1
|
* Updates for SCons 4.8.0 releaseWilliam Deegan2024-07-071-1/+1
|
* Migrate `setup.cfg` logic to `pyproject.toml`Thaddeus Crews2024-05-261-2/+2
|
* Put master back in post release/develop modeWilliam Deegan2024-03-181-1/+1
|
* Rel 4.7.0 final changesWilliam Deegan2024-03-181-1/+1
|
* post release updatesWilliam Deegan2023-11-201-1/+1
|
* Regenerated docs for 4.6.0 release.William Deegan2023-11-191-1/+1
|
* Cleanup the SCons build a bitMats Wichmann2023-07-191-59/+62
| | | | | | | | | | | | | | | | | | | | | | * Removes the old bootstrap.py file. The still-used manifest parser is moved inline into doc/SConscript * Some reformatting and license text updates, as well as fstringinfying. * Help text is modified, adding the recent zipapp option, and indent changes let more stuff fit on the screen. * Aliases added for most of the build targets listed in the help msg. The ones now listed all work when given as cli targets, except the the two full source balls: scons: *** Do not know how to make File target `src-tar-gz' (/home/mats/github/scons/src-tar-gz). Stop. scons: *** Do not know how to make File target `src-zip' (/home/mats/github/scons/src-zip). Stop. Should these two be removed from the listing? I think we get the former directly from github, and the latter hasn't been around for a while. Fixes #4341 Signed-off-by: Mats Wichmann <mats@linux.com>
* Merge pull request #4050 from mwichmann/wip-packages-with-buildWilliam Deegan2023-07-161-9/+20
|\ | | | | build SCons packages with python tool 'build'
| * Add back "sdist" zipfile [skip appveyor]Mats Wichmann2023-03-081-4/+7
| | | | | | | | | | | | | | | | Uncommented the code building a zipfile of the release. This is done "the old way" (calling setup.py with args), since the "build" tool doesn't handle this. Signed-off-by: Mats Wichmann <mats@linux.com>
| * Packaging: don't call setup.py directly, use build [skip appveyor]Mats Wichmann2023-03-081-9/+17
| | | | | | | | Signed-off-by: Mats Wichmann <mats@linux.com>
* | Updates post 4.5.2 releaseWilliam Deegan2023-03-211-1/+1
|/
* Post release changesWilliam Deegan2023-03-071-1/+1
|
* Post release UpdatesWilliam Deegan2023-03-051-1/+1
|
* Post build commits for 4.5.0William Deegan2023-03-051-1/+1
|
* Post release cleanup. back to dev modeWilliam Deegan2022-07-301-1/+1
|
* Updates for 4.4.0 releaseWilliam Deegan2022-07-301-1/+1
|
* fix some issues with current version stringsWilliam Deegan2021-11-221-1/+1
|
* updated CHANGES.txt and RELEASE.txt for releaseWilliam Deegan2021-11-161-1/+1
|
* update packing and build logic to enable distro package maintainers to build ↵William Deegan2021-08-011-2/+6
| | | | their packages from root of repo
* updates for 4.2.0William Deegan2021-07-241-1/+1
|
* removed doc/user/copyright.xml the markup is moved ot doc/user/main.xmlWilliam Deegan2021-07-191-0/+1
|
* fix doc release date to be the same as the format in CHANGES.txt,etcWilliam Deegan2021-07-181-1/+1
|
* [ci skip] update post releaseWilliam Deegan2021-01-191-1/+1
|
* Updated release notes and copyright info for 4.1.0 ReleaseWilliam Deegan2021-01-191-1/+1
|
* scons.1 sconsign.1 scons-time.1 now make it into zip, tgz sdist and wheelWilliam Deegan2020-10-091-5/+14
|
* updates for 4.0.1William Deegan2020-07-171-1/+1
|
* reset to development modeWilliam Deegan2020-07-041-2/+1
|
* updates for 4.0.0 releaseWilliam Deegan2020-07-041-1/+1
|
* Add sepearat pypi README-package.rst for pypi's long description textWilliam Deegan2020-07-041-3/+3
|
* Add logic to build wheel and sdist package for pypiWilliam Deegan2020-06-301-3/+8
|
* All working except automatic build of wheel and sdist packageWilliam Deegan2020-06-301-1/+1
|
* API doc builds working now. Generating SCons/__versioninfo.py but not yet ↵William Deegan2020-06-301-0/+1
| | | | using it
* add some TODOsWilliam Deegan2020-06-231-0/+8
|
* updates. build/dist/scons-local-${VERSION}.zip is now producedWilliam Deegan2020-06-231-19/+17
|
* Address github review notes and sider issuesWilliam Deegan2020-04-111-1/+1
|
* Clean up unused importsWilliam Deegan2020-04-091-3/+1
|
* add logic to not include *Tests.py in wheelWilliam Deegan2020-04-091-640/+0
|
* remove gentoo ebuild logic. distro packager has their ownWilliam Deegan2020-04-091-9/+1
|
* comment out packaging part of buildWilliam Deegan2020-04-091-630/+630
|
* First pass of refactor. Moved command line argument processing into ↵William Deegan2020-04-091-190/+52
| | | | site_scons/BuildCommandLine.py. Sorted out all changes caused by that.
* add SKIP_DOC= variable to enable disabling buildign documents. Moved epydoc ↵William Deegan2020-04-091-298/+252
| | | | setup into site_scons/epydoc.py
* rm-py2: Remove "from __future__" from more placesMats Wichmann2020-02-201-2/+0
| | | | | | | | | | | | | | | A couple of minor reformats along the way, most prominently, in tests, if being edited anyway, make sure the docstring most tests have is actually the docstring (sometimes the __revision__ line came before, which makes the string not be the docstring). Snuck in some minor framework changes that were orphaned when another draft PR was not needed: this almost all docstring changes, the functional part is using casefold instead of lower in a match func - a slightly better approach which is now possible that Py2 compatibility is not needed. Signed-off-by: Mats Wichmann <mats@linux.com>
* Update version stringsWilliam Deegan2019-12-171-2/+2
|
* Changes for 3.1.1 release3.1.1William Deegan2019-08-081-2/+2
|
* changes for release 3.1.0William Deegan2019-07-211-2/+2
|
* [ci skip] re-add generation of src-tar-gz and src-zip files as they're used ↵William Deegan2019-07-131-3/+8
| | | | by debian scons packager