Sebastiaan Couwenberg pushed to branch experimental at Debian GIS Project / proj
Commits: 7ab20946 by Bas Couwenberg at 2018-02-11T16:54:35+01:00 Add patch for missing ! in boolean evaluation. - - - - - 276bf5ed by Bas Couwenberg at 2018-02-11T16:54:49+01:00 Set distribution to experimental. - - - - - 3 changed files: - debian/changelog - + debian/patches/0001-Add-missing-in-boolean-evaluation.-Fixes-780.patch - debian/patches/series Changes: ===================================== debian/changelog ===================================== --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +proj (5.0.0~rc2-1~exp4) experimental; urgency=medium + + * Add patch for missing ! in boolean evaluation. + + -- Bas Couwenberg <[email protected]> Sun, 11 Feb 2018 16:54:36 +0100 + proj (5.0.0~rc2-1~exp3) experimental; urgency=medium * Ignore test failures on problematic architectures only. ===================================== debian/patches/0001-Add-missing-in-boolean-evaluation.-Fixes-780.patch ===================================== --- /dev/null +++ b/debian/patches/0001-Add-missing-in-boolean-evaluation.-Fixes-780.patch @@ -0,0 +1,20 @@ +From 332bf648a65b5a1a6bb1e2f5d7f5c7cca1ce1159 Mon Sep 17 00:00:00 2001 +From: Kristian Evers <[email protected]> +Date: Sun, 11 Feb 2018 16:07:18 +0100 +Subject: Add missing ! in boolean evaluation. Fixes #780. + +--- + src/pj_gridinfo.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- a/src/pj_gridinfo.c ++++ b/src/pj_gridinfo.c +@@ -564,7 +564,7 @@ static int pj_gridinfo_init_ntv2( projCt + + gi->gridname = pj_strdup( gilist->gridname ); + gi->filename = pj_strdup( gilist->filename ); +- if (!gi->gridname || gi->filename) { ++ if (!gi->gridname || !gi->filename) { + pj_gridinfo_free(ctx, gi); + pj_dalloc(ct); + pj_gridinfo_free(ctx, gilist); ===================================== debian/patches/series ===================================== --- a/debian/patches/series +++ b/debian/patches/series @@ -1,3 +1,4 @@ manpage-section.patch avoid-numerical-differences-on-non-amd64-architectures.patch 0001-Avoid-XY-LP-and-UV-datatype-clashes-with-other-libra.patch +0001-Add-missing-in-boolean-evaluation.-Fixes-780.patch View it on GitLab: https://salsa.debian.org/debian-gis-team/proj/compare/bcca210407f15fab82403ea5a04175f766aeb907...276bf5ede7fa4bbd5490b44efe3f0af032a4a7b4 --- View it on GitLab: https://salsa.debian.org/debian-gis-team/proj/compare/bcca210407f15fab82403ea5a04175f766aeb907...276bf5ede7fa4bbd5490b44efe3f0af032a4a7b4 You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ Pkg-grass-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

