Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Add upstream patch to fix gie test failures for missing grids.
· 3d39849b
Bas Couwenberg
authored
Feb 23, 2018
3d39849b
Set distribution to experimental.
· a32b3fc1
Bas Couwenberg
authored
Feb 23, 2018
a32b3fc1
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
a32b3fc1
proj (5.0.0~rc5-1
) UNRELEASED
; urgency=medium
proj (5.0.0~rc5-1
~exp1) experimental
; urgency=medium
* New upstream release candidate.
* Drop install-nad-gtx.patch, applied upstream.
* Update copyright years for Charles Karney.
* Add upstream patch to fix gie test failures for missing grids.
-- Bas Couwenberg <sebastic@debian.org> Fri, 23 Feb 2018 2
0:40:32
+0100
-- Bas Couwenberg <sebastic@debian.org> Fri, 23 Feb 2018 2
2:13:06
+0100
proj (5.0.0~rc4-1~exp2) experimental; urgency=medium
...
...
debian/patches/Dont-reset-errno-when-skipping-tests.patch
0 → 100644
View file @
a32b3fc1
Description: Don't reset errno when skipping tests.
The error number should not be reset until a new instance of "operation
..." is reached. The ignore-feature initially worked by accident since
pj_errno was not being reset when calling proj_errno_reset. This was
fixed in #808, which subsequently caused ignored tests to fail.
Author: Kristian Evers <kristianevers@gmail.com>
Origin: https://github.com/OSGeo/proj.4/pull/820/commits/ad4b6e12f137817217058f60c36ad51a4d29e417
Bug: https://github.com/OSGeo/proj.4/issues/819
--- a/src/gie.c
+++ b/src/gie.c
@@ -332,7 +332,6 @@
static int another_failure (void) {
static int another_skip (void) {
T.op_skip++;
T.total_skip++;
- proj_errno_reset (T.P);
return 0;
}
debian/patches/series
0 → 100644
View file @
a32b3fc1
Dont-reset-errno-when-skipping-tests.patch