[Git][debian-gis-team/libgeo-proj4-perl][master] 6 commits: New upstream version 1.08
Sebastiaan Couwenberg
gitlab at salsa.debian.org
Thu Dec 28 16:26:06 UTC 2017
Sebastiaan Couwenberg pushed to branch master at Debian GIS Project / libgeo-proj4-perl
Commits:
2698b39f by Bas Couwenberg at 2017-12-28T17:07:24+01:00
New upstream version 1.08
- - - - -
0fd675b8 by Bas Couwenberg at 2017-12-28T17:07:26+01:00
Merge tag 'upstream/1.08'
Upstream version 1.08
- - - - -
88b69124 by Bas Couwenberg at 2017-12-28T17:07:36+01:00
New upstream release.
- - - - -
b107277e by Bas Couwenberg at 2017-12-28T17:08:10+01:00
Bump Standards-Version to 4.1.2, no changes.
- - - - -
2ca3caa6 by Bas Couwenberg at 2017-12-28T17:09:29+01:00
Update copyright years for Mark Overmeer.
- - - - -
bb5104e9 by Bas Couwenberg at 2017-12-28T17:09:47+01:00
Set distribution to unstable.
- - - - -
11 changed files:
- Changes
- META.json
- META.yml
- Makefile.PL
- Proj4.xs
- README
- debian/changelog
- debian/control
- debian/copyright
- lib/Geo/Proj4.pm
- lib/Geo/Proj4.pod
Changes:
=====================================
Changes
=====================================
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
Revision history for Perl extension Geo::Proj4.
+version 1.08: Thu 28 Dec 11:38:06 CET 2017
+
+ Fixes:
+ - revert change of 1.07, because it breaks people's code, and make
+ it harder to use transform() rt.cpan.org#123950 [Salven Rezic]
+
version 1.07: Wed 8 Nov 10:57:23 CET 2017
Fixes:
=====================================
META.json
=====================================
--- a/META.json
+++ b/META.json
@@ -35,5 +35,5 @@
}
},
"release_status" : "stable",
- "version" : "1.07"
+ "version" : "1.08"
}
=====================================
META.yml
=====================================
--- a/META.yml
+++ b/META.yml
@@ -18,4 +18,4 @@ no_index:
- t
- inc
requires: {}
-version: 1.07
+version: 1.08
=====================================
Makefile.PL
=====================================
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -3,7 +3,7 @@ use ExtUtils::MakeMaker;
require 5.006;
# increased per release
-my $relversion = '1.07';
+my $relversion = '1.08';
my $libversion = '4.4.9';
@@ -53,7 +53,6 @@ WriteMakefile
sub MY::postamble { <<'__POSTAMBLE' }
# for DIST, see PODTAIL.txt as well
-LICENSE = artistic
RAWDIR = ../public_html/geoproj4/raw
DISTDIR = ../public_html/geoproj4/source
__POSTAMBLE
=====================================
Proj4.xs
=====================================
--- a/Proj4.xs
+++ b/Proj4.xs
@@ -166,7 +166,7 @@ transform_proj4(proj_from, proj_to, points, degrees)
x[p] = SvNV(*av_fetch(point, 0, 0));
y[p] = SvNV(*av_fetch(point, 1, 0));
- z[p] = av_len(point) < 2 ? NAN : SvNV(*av_fetch(point, 2, 0));
+ z[p] = av_len(point) < 2 ? 0.0 : SvNV(*av_fetch(point, 2, 0));
/* fprintf(stderr, "point=%f %f %f\n", x[p], y[p], z[p]); */
if(degrees && pj_is_latlong(proj_from))
@@ -192,7 +192,7 @@ transform_proj4(proj_from, proj_to, points, degrees)
av_push(res, newSVnv(x[p]));
av_push(res, newSVnv(y[p]));
- if(!isnan(z[p])) av_push(res, newSVnv(z[p]));
+ if(z[p]!=0.0) av_push(res, newSVnv(z[p]));
av_push(retlist, newRV((SV *)res));
}
=====================================
README
=====================================
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-=== README for Geo-Proj4 version 1.07
-= Generated on Wed Nov 8 10:57:37 2017 by OODoc 2.02
+=== README for Geo-Proj4 version 1.08
+= Generated on Thu Dec 28 11:39:34 2017 by OODoc 2.02
There are various ways to install this module:
@@ -9,16 +9,16 @@ There are various ways to install this module:
(2) if you use Windows, have a look at http://ppm.activestate.com/
(3) if you have downloaded this module manually (as root/administrator)
- gzip -d Geo-Proj4-1.07.tar.gz
- tar -xf Geo-Proj4-1.07.tar
- cd Geo-Proj4-1.07
+ gzip -d Geo-Proj4-1.08.tar.gz
+ tar -xf Geo-Proj4-1.08.tar
+ cd Geo-Proj4-1.08
perl Makefile.PL
make # optional
make test # optional
make install
For usage, see the included manual-pages or
- http://search.cpan.org/dist/Geo-Proj4-1.07/
+ http://search.cpan.org/dist/Geo-Proj4-1.08/
Please report problems to
http://rt.cpan.org/Dist/Display.html?Queue=Geo-Proj4
=====================================
debian/changelog
=====================================
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+libgeo-proj4-perl (1.08-1) unstable; urgency=medium
+
+ * New upstream release.
+ * Bump Standards-Version to 4.1.2, no changes.
+ * Update copyright years for Mark Overmeer.
+
+ -- Bas Couwenberg <sebastic at debian.org> Thu, 28 Dec 2017 17:09:31 +0100
+
libgeo-proj4-perl (1.07-1) unstable; urgency=medium
* New upstream release.
=====================================
debian/control
=====================================
--- a/debian/control
+++ b/debian/control
@@ -8,7 +8,7 @@ Build-Depends: debhelper (>= 9),
perl,
proj-bin,
libproj-dev
-Standards-Version: 4.1.1
+Standards-Version: 4.1.2
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-grass/libgeo-proj4-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-grass/libgeo-proj4-perl.git
Homepage: https://metacpan.org/release/Geo-Proj4
=====================================
debian/copyright
=====================================
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,7 +4,7 @@ Upstream-Contact: Mark Overmeer <mark at overmeer.net>
Source: https://metacpan.org/release/Geo-Proj4
Files: *
-Copyright: © 2004-2012, 2017, Mark Overmeer <geo at overmeer.net>
+Copyright: © 2004-2017, Mark Overmeer <geo at overmeer.net>
License: Artistic or GPL-1+
Files: examples/use_epsg.pl
=====================================
lib/Geo/Proj4.pm
=====================================
--- a/lib/Geo/Proj4.pm
+++ b/lib/Geo/Proj4.pm
@@ -4,7 +4,7 @@
# Pod stripped from pm file by OODoc 2.02.
package Geo::Proj4;
use vars '$VERSION';
-$VERSION = '1.07';
+$VERSION = '1.08';
use strict;
=====================================
lib/Geo/Proj4.pod
=====================================
--- a/lib/Geo/Proj4.pod
+++ b/lib/Geo/Proj4.pod
@@ -365,8 +365,8 @@ proj(1), cs2cs(1), pj_init(3).
=head1 COPYRIGHTS
-Developed and maintained by Mark Overmeer E<lt>geo at overmeer.netE<gt>.
-Copyright (c) 2004-2007 by the authors. All rights reserved.
+Developed and maintained by Mark Overmeer E<lt>markov at cpan.orgE<gt>.
+Copyright (c) 2004-2017 by the authors. All rights reserved.
Originally Written by Schuyler Erle E<lt>schuyler at nocat.netE<gt> and
Rich Gibson E<lt>rich at nocat.netE<gt>. Their site: Mapping Hacks home
View it on GitLab: https://salsa.debian.org/debian-gis-team/libgeo-proj4-perl/compare/4ffa2fa9738d233b54981ce5d13b415ed4046486...bb5104e9c2203aa7c89a3f92db998f286634385b
---
View it on GitLab: https://salsa.debian.org/debian-gis-team/libgeo-proj4-perl/compare/4ffa2fa9738d233b54981ce5d13b415ed4046486...bb5104e9c2203aa7c89a3f92db998f286634385b
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.alioth.debian.org/pipermail/pkg-grass-devel/attachments/20171228/911f3db5/attachment-0001.html>
More information about the Pkg-grass-devel
mailing list