Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-09-13 | Fix flake8 whitespace reports | Jon Turney | 1 | -1/+1 | |
$ flake8 | grep -E '(E203|E221|E226|E303|W291|W293)' ./mesonbuild/build.py:964:5: E303 too many blank lines (2) ./tools/dircondenser.py:70:36: E221 multiple spaces before operator | |||||
2018-07-31 | Add script to condense test directory names. | Jussi Pakkanen | 1 | -0/+82 | |
2017-10-25 | Boost: Add Python libraries | Niklas Claesson | 1 | -0/+3 | |
Fixes: #2507 | |||||
2017-10-12 | Boost: Jamfile has two syntaxes for boost libraries | Niklas Claesson | 1 | -0/+4 | |
Fixes #2456 | |||||
2017-10-01 | Boost: Improve search algorithm | Niklas Claesson | 1 | -0/+180 | |
The new implementation will correctly pick boost from 3 possible locations on windows and two locations on posix compatible OSs. The new search algorithm also differentiates between debug and release builds of Boost and multi or single threading builds. It was also decided to map "Meson modules" to Boost software libraries and not Boost modules since it there are a lot of options regarding linking. Some modules can even be used either as headers-only or with dynamic linking. This commit also fixes a bug that prevented header-only use on Windows. Fixes: #2274 #2239 #1803 #669 | |||||
2017-09-14 | cmake2meson: convert varexp to lowercase | Georg Müller | 1 | -1/+1 | |
since variable names in 'set' statements are converted to lowercase, the variable itself should be converted to lower-case too when used. | |||||
2017-09-14 | cmake2meson: strip comments from statements | Georg Müller | 1 | -1/+4 | |
Without this change, the following correct cmake will cause an error: statement( arg1 # arg2 arg3 ) | |||||
2017-09-14 | cmake2meson: convert statements to lower case | Georg Müller | 1 | -1/+1 | |
cmake does not distinguish between upper and lower case, so convert it to lower case for the later comparisons. | |||||
2017-07-31 | Improve ac_converter to print a help message. | Jussi Pakkanen | 1 | -1/+8 | |
2017-07-16 | Removed unnecessary pass statements. | Jussi Pakkanen | 1 | -1/+0 | |
2017-07-16 | Removed duplicate key in dictionary. | Jussi Pakkanen | 1 | -1/+0 | |
2017-06-04 | A few typo fixes in the converter script. | Jussi Pakkanen | 1 | -2/+2 | |
2017-06-04 | Added more functions to the list of checks. | Jussi Pakkanen | 1 | -0/+143 | |
2017-01-18 | cleanup: Unbound local variable | Mike Sinkovsky | 1 | -0/+1 | |
2017-01-18 | cleanup: Remove redundant parentheses | Mike Sinkovsky | 1 | -3/+3 | |
2017-01-18 | cleanup: Redundant character escape | Mike Sinkovsky | 1 | -1/+1 | |
2017-01-11 | style: [E1**] Indentation | Mike Sinkovsky | 1 | -2/+3 | |
2017-01-11 | style: [E301] expected 1 blank line, found 0 | Mike Sinkovsky | 1 | -0/+1 | |
2017-01-01 | style: fix E703 violations | Igor Gnatenko | 1 | -1/+1 | |
E703: statement ends with a semicolon Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com> | |||||
2017-01-01 | style: fix E124 violations | Igor Gnatenko | 1 | -1/+1 | |
E124: closing bracket does not match visual indentation Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com> | |||||
2017-01-01 | style: fix E265 violations | Igor Gnatenko | 1 | -1/+1 | |
E265: block comment should start with '# ' Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com> | |||||
2017-01-01 | style: fix E226 violations | Igor Gnatenko | 1 | -2/+2 | |
E226: missing whitespace around arithmetic operator Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com> | |||||
2016-12-31 | Fix space before :. | Jussi Pakkanen | 2 | -35/+35 | |
2016-10-19 | Allow id to contain a pipe "|" | Gautier Pelloux-Prayer | 1 | -1/+1 | |
For instance in [color](https://github.com/bagage/color/blob/master/tests/CMakeLists.txt#L26) project tests contains a `|` character. | |||||
2016-10-18 | cmake2meson.py: Fix missing quote around options type/name | Gautier Pelloux-Prayer | 1 | -4/+4 | |
2016-10-07 | tools/ac_converter: couple of trivial fixes (#867) | Igor Gnatenko | 1 | -3/+2 | |
W: 31, 4: Duplicate key 'HAVE_UNSETENV' in dictionary (duplicate-key) Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com> * tools/ac_converter: fix undefined variable 'func' E:283,11: Undefined variable 'func' (undefined-variable) Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com> * tools/ac_converter: use spaces properly in HAVE_SOCKET C: 97, 0: Exactly one space required after comma 'HAVE_SOCKET' : ('socket',' sys/socket.h'), ^ (bad-whitespace) This also might cause some issue after conversion. Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com> | |||||
2016-09-04 | loop over `sizes' | Iain Lane | 1 | -1/+1 | |
I ran `ac_converter.py`, and it crashed ``` Traceback (most recent call last): File "ac_converter.py", line 299, in <module> for elem, typename in size: ``` I think it's a typo like this. | |||||
2016-08-30 | Use context manager in scripts. | Elliott Sales de Andrade | 2 | -65/+97 | |
2016-08-14 | Use our config template rather than Autoconf's. | Jussi Pakkanen | 1 | -1/+1 | |
2016-08-13 | A few more checks for ac converter tool. | Jussi Pakkanen | 1 | -0/+5 | |
2016-07-28 | Convert socket checks. | Jussi Pakkanen | 1 | -0/+1 | |
2015-11-20 | A few more checks for converter. | Jussi Pakkanen | 1 | -0/+4 | |
2015-11-12 | More checks for converter. | Jussi Pakkanen | 1 | -0/+53 | |
2015-09-04 | Moved new ac converter from wrap repo and made shebang line use env. Closes ↵ | Jussi Pakkanen | 3 | -123/+218 | |
#256. | |||||
2014-06-14 | Convert project name. | Jussi Pakkanen | 1 | -0/+6 | |
2014-06-14 | Convert some pkg-config declarations. | Jussi Pakkanen | 1 | -1/+15 | |
2014-06-14 | Some simple autoconf parsing. | Jussi Pakkanen | 1 | -6/+29 | |
2014-06-13 | Simple target converter. | Jussi Pakkanen | 1 | -2/+20 | |
2014-06-13 | Traverse the entire autotools tree. | Jussi Pakkanen | 1 | -2/+14 | |
2014-06-13 | Skeleton for converting autotools projects. | Jussi Pakkanen | 1 | -0/+49 | |
2014-06-04 | Convert test declarations. | Jussi Pakkanen | 1 | -0/+2 | |
2014-06-04 | Convert library targets. | Jussi Pakkanen | 1 | -0/+11 | |
2014-06-04 | Convert executable command. | Jussi Pakkanen | 1 | -0/+2 | |
2014-06-04 | Convert build options. | Jussi Pakkanen | 1 | -0/+31 | |
2014-06-04 | More convertisizising. | Jussi Pakkanen | 1 | -5/+13 | |
2014-06-04 | Working if else indents. | Jussi Pakkanen | 1 | -3/+20 | |
2014-06-04 | Convert function arguments. | Jussi Pakkanen | 1 | -2/+25 | |
2014-06-02 | Convert a few more functions, can generate a simple skeleton. | Jussi Pakkanen | 1 | -3/+19 | |
2014-06-02 | Convert some function types. | Jussi Pakkanen | 1 | -17/+21 | |
2014-06-02 | Comments are converted. Yay! | Jussi Pakkanen | 1 | -7/+23 | |