forked from yocontra/node-gdal-next
-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* upgrade GDAL to 3.10.0 * upgrade Node.js platforms * conform to the new stricter afterEach signature * update the changelog * gti is a separate driver now * fix mitab * fix internal shape * gmutils * files moved to root ogr * add the new files * test leaving the C++ standard to node-gyp * try the magic MSVC option * fix the not so orthodox code * try C++17 only for PROJ * reference directly in the target * add a compilertool section * remove the verbose build * switch to macos-13
- Loading branch information
Showing
2,302 changed files
with
62,622 additions
and
63,361 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
# node-gyp sets the standard for us and ensures that its include file comes last | ||
# this is the only reliable way to override it | ||
'cflags_cc/': [ ['exclude', '^-std=(?!gnu\+\+17)'] ], | ||
'cflags_cc':[ '-std=gnu++17' ], | ||
'xcode_settings': { | ||
'OTHER_CPLUSPLUSFLAGS': [ | ||
'-std=gnu++17' | ||
], | ||
'OTHER_CPLUSPLUSFLAGS/': [ ['exclude', '^-std=(?!gnu\+\+17)'] ], | ||
}, | ||
'msvs_settings': { | ||
'VCCLCompilerTool': { | ||
'AdditionalOptions': [ | ||
'/std:c++17' | ||
], | ||
'AdditionalOptions/': [ | ||
['exclude', '^[/\-]std:(?!c\+\+17)'] | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,37 @@ | ||
[flake8] | ||
max_line_length = 88 | ||
ignore = | ||
C408 # Unnecessary dict/list/tuple call - rewrite as a literal | ||
E203 # whitespace before ':' - doesn't work well with black | ||
E225 # missing whitespace around operator - let black worry about that | ||
E262 # inline comment should start with '# ' | ||
E265 # block comment should start with '# ' | ||
E266 # too many leading '#' for block comment | ||
E302 # expected 2 blank lines, found 1 | ||
E402 # module level import not at top of file | ||
E501 # line too long - let black handle that | ||
E711 # comparison to None should be | ||
E712 # comparison to False/True should be | ||
E741 # ambiguous variable name | ||
F405 # may be undefined, or defined from star imports | ||
W291 # trailing | ||
W503 # line break occurred before a binary operator - let black worry about that | ||
W504 # line break occurred adter a binary operator - let black worry about that | ||
# Unnecessary dict/list/tuple call - rewrite as a literal | ||
C408 | ||
# whitespace before ':' - doesn't work well with black | ||
E203 | ||
# missing whitespace around operator - let black worry about that | ||
E225 | ||
# inline comment should start with '# ' | ||
E262 | ||
# block comment should start with '# ' | ||
E265 | ||
# too many leading '#' for block comment | ||
E266 | ||
# expected 2 blank lines, found 1 | ||
E302 | ||
# module level import not at top of file | ||
E402 | ||
# line too long - let black handle that | ||
E501 | ||
# comparison to None should be | ||
E711 | ||
# comparison to False/True should be | ||
E712 | ||
# ambiguous variable name | ||
E741 | ||
# may be undefined, or defined from star imports | ||
F405 | ||
# trailing | ||
W291 | ||
# line break occurred before a binary operator - let black worry about that | ||
W503 | ||
# line break occurred adter a binary operator - let black worry about that | ||
W504 | ||
per-file-ignores = | ||
.cmake-format.py:F821 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.