summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update release with commit info3.0.3rel_3.0.3William Deegan2019-01-071-1/+1
|
* Fix datestamp for releaseWilliam Deegan2019-01-071-1/+1
|
* Merge remote-tracking branch 'origin/rel_3.0.3' into rel_3.0.3William Deegan2019-01-079-13/+15
|\
| * Merge branch 'rel_3.0.3' of github.com:SCons/scons into rel_3.0.3William Deegan2019-01-072-3/+5
| |\
| | * Update EnsureSConsVersion test expected fail version check from version 3 to ↵William Deegan2019-01-071-1/+1
| | | | | | | | | | | | version 4
| | * Updates for Ubuntu 18.04 LTS build machineWilliam Deegan2019-01-071-2/+4
| | |
| * | Update copyright date to 2019William Deegan2019-01-072-2/+2
| |/
| * Fix date for 3.0.3 in debian/changelogWilliam Deegan2019-01-071-1/+1
| |
| * Updated docs for 3.0.3 ReleaseWilliam Deegan2019-01-074-7/+7
| |
* | Update scons.bat to first look for scons.py and then scons so that a ↵William Deegan2019-01-073-6/+9
|/ | | | universal python wheel can work on windows
* Merge remote-tracking branch 'origin/rel_3.0.3' into rel_3.0.3William Deegan2019-01-073-18/+19
|\
| * add clangCommon to packagingWilliam Deegan2019-01-061-0/+1
| |
| * Add clangCommon to MANIFEST.in so it get's packagedWilliam Deegan2019-01-061-0/+1
| |
| * Fix typoWilliam Deegan2019-01-061-1/+1
| |
| * Fix version strings to be 3.0.3William Deegan2019-01-051-3/+3
| |
| * Minor versioning fixesWilliam Deegan2019-01-051-8/+8
| |
| * Fix version string from 3.1.0 to 3.0.3William Deegan2019-01-051-7/+7
| |
* | update CHANGES.txtWilliam Deegan2019-01-071-2/+3
| |
* | Remove src/engine/MANIFEST-xml.in and logic which refers to it. Can't see ↵William Deegan2019-01-072-13/+2
| | | | | | | | why we had a seperate manifest for just the xml files which were then not included in the package, making docbook builders not work
* | Add clangCommonWilliam Deegan2019-01-071-0/+1
| |
* | Adding docbooks xsl files and clangCommongWilliam Deegan2019-01-071-0/+3
|/
* updates from update-release-info for 3.0.3 releaseWilliam Deegan2019-01-056-14/+14
|
* Updates for 3.0.3 releaseWilliam Deegan2019-01-054-53/+71
|
* Updated for 3.0.3 releaseWilliam Deegan2019-01-052-4/+4
|
* Regenerated docs for 3.0.3 releaseWilliam Deegan2019-01-054-6/+6
|
* Merge pull request #3259 from SCons/rel_3.0.2William Deegan2019-01-051-17/+18
|\ | | | | Updates from Rel_3.0.2
| * Remove setuptools as it changes the contents of the .tar.gz and skips ↵rel_3.0.2William Deegan2019-01-031-17/+18
| | | | | | | | including CHANGES.txt and other .txt files
* | Merge pull request #3258 from mwichmann/map-examplesWilliam Deegan2019-01-043-14/+17
|\ \ | | | | | | Update some doc examples
| * | Update some doc examplesMats Wichmann2019-01-043-14/+17
|/ / | | | | | | | | | | | | | | map() now returns an interable instead of a list, update examples which assumed they could just print() the result of a map(). Signed-off-by: Mats Wichmann <mats@linux.com>
* | Reset release files back to devel modeWilliam Deegan2019-01-014-61/+60
| |
* | Merge pull request #3257 from SCons/rel_3.0.2William Deegan2019-01-01246-3292/+4244
|\ \ | |/ | | Release 3.0.2
| * comment out source package upload to sourceforge3.0.2William Deegan2019-01-011-5/+5
| |
| * Updates for 3.0.2William Deegan2019-01-012-7/+1
| |
| * Updates for 3.0.2 releaseWilliam Deegan2019-01-016-16/+14
| |
| * Updates for release 3.0.2William Deegan2018-12-315-74/+120
| |
| * Regenerated docs for 3.0.2 releaseWilliam Deegan2018-12-31236-3193/+4107
| |
* | Merge branch 'master' of github.com:SCons/sconsWilliam Deegan2018-12-31267-4979/+4451
|\ \ | |/
| * Merge pull request #3183 from mwichmann/typefixesWilliam Deegan2018-12-313-5/+12
| |\ | | | | | | Typefixes
| | * Update comment on typefixes (PR #3183)Mats Wichmann2018-12-171-0/+2
| | | | | | | | | | | | Signed-off-by: Mats Wichmann <mats@linux.com>
| | * Add CHANGES.txt update for previous changesMats Wichmann2018-12-171-0/+1
| | | | | | | | | | | | | | | | | | | | | also fixed previous entry that was no longer correct (closing open files no longer done by atexit after patch was modified) Signed-off-by: Mats Wichmann <mats@linux.com>
| | * small type-related cleanupsMats Wichmann2018-12-172-5/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Two files in packaging: ipk.py indexed off the result of running filter, but in Python 3 filter returns an iterable, not a list. Convert to a list first. msi.py removes forbidden characters using a list comprehension, but the result is a list, so when it then calls upper() on it that's a method that does not exist on a list. Join it back into a string. Found another place in the same file that also assumed the list comprehension leaves a string, not a list, although it doesn't then call a nonexistent method on it. Signed-off-by: Mats Wichmann <mats@linux.com>
| * | Merge pull request #3256 from ztessler/listcomps-in-funcactionWilliam Deegan2018-12-254-41/+53
| |\ \ | | | | | | | | fix missing code contents that should be included in signature of a f…
| | * | fix missing code contents that should be included in signature of a function ↵Zachary Tessler2018-12-224-41/+53
| |/ / | | | | | | | | | action
| * | Merge pull request #3249 from mwichmann/doc-install-updateWilliam Deegan2018-12-172-242/+50
| |\ \ | | |/ | |/| Update docs about installing scons3 (issue #3037)
| | * More requested changes to install doc (PR #3249)Mats Wichmann2018-12-171-17/+7
| | | | | | | | | | | | Signed-off-by: Mats Wichmann <mats@linux.com>
| | * PR #3249 typo fixMats Wichmann2018-12-031-1/+1
| | | | | | | | | | | | Signed-off-by: Mats Wichmann <mats@linux.com>
| | * A few more wording tweaks on scons/python installMats Wichmann2018-12-022-14/+19
| | | | | | | | | | | | Signed-off-by: Mats Wichmann <mats@linux.com>
| | * Update docs about installing scons3Mats Wichmann2018-12-012-239/+52
| | | | | | | | | | | | | | | | | | | | | | | | Installing via pip now preferred; no more native-type packages (rpm, msi). Python 3 is supported - seemed one more place was missed that said it had to be Py2. Signed-off-by: Mats Wichmann <mats@linux.com>
| * | Merge pull request #3251 from bdbaddog/fix_mac_shlibversion_gh_issue_3241William Deegan2018-12-11261-4682/+4332
| |\ \ | | | | | | | | Add support for SHLIBVERSION and related apple linker flags Fix GH Issue #3241
| | * \ Merge branch 'fix_mac_shlibversion_gh_issue_3241' of ↵William Deegan2018-12-102-10/+5
| | |\ \ | | | | | | | | | | | | | | | github.com:bdbaddog/scons into fix_mac_shlibversion_gh_issue_3241