-
-
Notifications
You must be signed in to change notification settings - Fork 43
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 #26 from ocefpaf/v4.5.0
V4.5.0
- Loading branch information
Showing
12 changed files
with
61 additions
and
167 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
version: 2 | ||
|
||
jobs: | ||
build: | ||
working_directory: ~/test | ||
machine: true | ||
steps: | ||
- checkout | ||
- run: | ||
name: Fast finish outdated PRs and merge PRs | ||
command: | | ||
./ci_support/fast_finish_ci_pr_build.sh | ||
./ci_support/checkout_merge_commit.sh | ||
- run: | ||
command: docker pull condaforge/linux-anvil | ||
- run: | ||
# Run, test and (if we have a BINSTAR_TOKEN) upload the distributions. | ||
command: ./ci_support/run_docker_build.sh | ||
|
||
workflows: | ||
version: 2 | ||
build_and_test: | ||
jobs: | ||
- build |
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,5 +1,7 @@ | ||
* text=auto | ||
|
||
*.patch binary | ||
*.diff binary | ||
meta.yaml text eol=lf | ||
build.sh text eol=lf | ||
bld.bat text eol=crlf |
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 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- netcdf-c-4.5.0.orig/libdap2/dapcvt.c 2017-10-20 14:20:52.000000000 -0300 | ||
+++ netcdf-c-4.5.0/libdap2/dapcvt.c 2017-10-24 11:06:14.777836188 -0300 | ||
@@ -217,7 +217,8 @@ | ||
#ifdef _MSC_VER | ||
_ASSERTE(_CrtCheckMemory()); | ||
#endif | ||
- if(ival < 0 || ival > NC_MAX_UBYTE) ok = 0; | ||
+ /* For back compatibility, we allow any value, but force conversion */ | ||
+ ival = (ival & 0xFF); | ||
*p = (char)ival; | ||
} break; | ||
case NC_CHAR: { | ||
@@ -246,7 +247,8 @@ | ||
unsigned int uval; | ||
ok = sscanf(s,"%u%n",&uval,&nread); | ||
_ASSERTE(_CrtCheckMemory()); | ||
- if(uval > NC_MAX_UBYTE) ok = 0; | ||
+ /* For back compatibility, we allow any value, but force conversion */ | ||
+ uval = (uval & 0xFF); | ||
*p = (unsigned char)uval; | ||
#else | ||
ok = sscanf(s,"%hhu%n",p,&nread); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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.