diff options
| author | Dominik Picheta <dominikpicheta@gmail.com> | 2016-10-31 20:18:30 +0100 |
|---|---|---|
| committer | Dominik Picheta <dominikpicheta@gmail.com> | 2016-10-31 20:18:30 +0100 |
| commit | 79de16a6acfb56dd1ab951bde9a6c21cfefd5bb1 (patch) | |
| tree | 9ac8050519a7143837a62186faa8f3420ad2b543 | |
| parent | 8b9ee7b455c40087794cbb4b434789c647716e72 (diff) | |
| download | packages-79de16a6acfb56dd1ab951bde9a6c21cfefd5bb1.tar.gz packages-79de16a6acfb56dd1ab951bde9a6c21cfefd5bb1.zip | |
Fixes travis build and adds some new licenses to scanner.
| -rw-r--r-- | package_scanner.nim | 6 | ||||
| -rw-r--r-- | packages.json | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/package_scanner.nim b/package_scanner.nim index e66417f..7d16e0b 100644 --- a/package_scanner.nim +++ b/package_scanner.nim @@ -30,6 +30,7 @@ const "Allegro 4 Giftware", "Apache License 2.0", "BSD", + "BSD2", "BSD3", "CC0", "GPL", @@ -43,7 +44,8 @@ const "WTFPL", "libpng", "zlib", - "ISC" + "ISC", + "Unlicense" ] VCS_TYPES = @["git", "hg"] @@ -59,7 +61,7 @@ proc canFetchNimbleRepository(name: string, urlJson: JsonNode): bool = url = urlJson.str try: - discard getContent(url, timeout=5000) + discard getContent(url, timeout=10000) except HttpRequestError, TimeoutError: echo "E: ", name, ": unable to fetch repository ", url, " ", getCurrentExceptionMsg() diff --git a/packages.json b/packages.json index b4f4d95..c34d682 100644 --- a/packages.json +++ b/packages.json @@ -5383,7 +5383,7 @@ ], "description": "A low level GPIO library for the BeagleBone board family", "license": "MIT", - "web": "https://vimeo.com/134834958" + "web": "https://github.com/xyz32/boneGPIO" }, { "name": "ui", |
