| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| | |
|
| |
|
|
| |
universal python wheel can work on windows
|
| |\ |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| |
| |
| | |
why we had a seperate manifest for just the xml files which were then not included in the package, making docbook builders not work
|
| | | |
|
| |/ |
|
| | |
|
| | |
|
| | |
|
| |\
| |
| | |
Updates from Rel_3.0.2
|
| | |
| |
| |
| | |
including CHANGES.txt and other .txt files
|
| | |
| |
| |
| |
| |
| |
| |
| | |
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>
|
| |/ |
|
| | |
|
| | |
|
| | |
|
| |\
| |
| | |
Typefixes
|
| | |
| |
| |
| | |
Signed-off-by: Mats Wichmann <mats@linux.com>
|
| | |
| |
| |
| |
| |
| |
| | |
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>
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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>
|
| |/
|
|
| |
action
|
| |\
| |
| |
| | |
github.com:bdbaddog/scons into fix_mac_shlibversion_gh_issue_3241
|
| | |\ |
|
| | | |\
| | | |
| | | | |
Fix GH issue #3136 No need to explicitly set file handles to non-sharable. Py 3.4 and above do this by default
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | | |
Py 3.4 and above do this by default
|
| | | | |
| | | |
| | | |
| | | | |
APPLELINK_CURRENT_VERSION to APPLELINK_NO_CURRENT_VERSION
|
| | | | |
| | | |
| | | |
| | | | |
_APPLELINK_CURRENT_VERSION macros
|
| |/ / /
| | |
| | |
| | | |
allow user to disable generating either or both -current_version and/or -compatibility_version to the applelink linker. Updates to docs. Add docstrings to generator functions
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | |
| | |
| | | |
flags propagating to linker for shared libraries. Derive them from SHLIBVERSION if not independantly specified
|
| | | | |
|
| | | | |
|
| |\ \ \
| |/ /
| | |
| | | |
fix_mac_shlibversion_gh_issue_3241
|
| | | | |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Rather than just silently moving on, emit warning messages
if id count does not match signature count; summarize at the
end if there were any warnings.
Signed-off-by: Mats Wichmann <mats@linux.com>
|
| | | |
| | |
| | |
| | | |
Signed-off-by: Mats Wichmann <mats@linux.com>
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The previous fix changed a failing line that printed something that
could be bytes in Py3 to do a decode. But it turned out that value can
be either str or bytes and the change failed the sconsign tests.
Use a try block instead of unconditionally calling decode.
Signed-off-by: Mats Wichmann <mats@linux.com>
|
| | |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Two locations which attempt to directly print an item tipped over on py3,
so they now decode().
There seem to be cases where implicit dependencies do not have signatures,
so instead of looping through the dep list and indexing into the signature
list (IndexError), the two lists are now zipped, which means nothing is
printed, but sconsign does not die (the zip technique is used in FS.py
in the engine).
Minor PEP8 changes: spaces around operators; shorter lines; two-blanks
rule around classes/functions. Also unused args changed to _ to show
it was intentional.
Manpage updated slightly - the internal whichdb function explicitly
looks for the .dblite suffix, so the claim that if it's not .dbm it
is assumed to be dblite was not true.
sconsign still will not work on a dblite file which is not suffixed
.dblite, but that is an existing problem, not a newly introduced one.
Signed-off-by: Mats Wichmann <mats@linux.com>
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Existing Textfile and Substfile builders (and tool textfile)
are added to the defaults, so they do not need to be explicitly
specified in the tools list. The documentation sort of
implies these are default builders (by not saying anything)
so no doc change is made.
Fixes issue #3147
Signed-off-by: Mats Wichmann <mats@linux.com>
|