-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #159 from naturalatlas/dep-updates
Dep updates
- Loading branch information
Showing
199 changed files
with
10,410 additions
and
3,566 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# -*- coding: utf-8 -*- | ||
""" | ||
collect files for gyp | ||
workaround as "find" that comes with git on Windows seems to walk the whole directory | ||
tree of the current drive (just sometimes) | ||
argument "search pattern" according to | ||
https://docs.python.org/2/library/glob.html | ||
e.g. | ||
"../src/*.cpp" => just look in "src" directory | ||
"../src/*/*.cpp" => look in "src" directory and subdirectories | ||
""" | ||
|
||
import sys | ||
import glob | ||
|
||
if len(sys.argv) < 2: | ||
print 'no argument' | ||
sys.exit(1) | ||
|
||
for f in glob.glob(sys.argv[1]): | ||
# gyp needs either double backslashes (\\) or forward slashes (/) as path separator | ||
# go with forward slashes to be platform independent | ||
# as "print" outputs just single backslashes (\) on Windows | ||
f = f.replace('\\', '/') | ||
# use line feed as delimiter between file names to prevent problems with whitespaces in file names | ||
print f |
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 +1 @@ | ||
2.0.1 | ||
2.0.2 |
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.