Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (6)
New upstream version 1.08
· 2698b39f
Bas Couwenberg
authored
Dec 28, 2017
2698b39f
Merge tag 'upstream/1.08'
· 0fd675b8
Bas Couwenberg
authored
Dec 28, 2017
Upstream version 1.08
0fd675b8
New upstream release.
· 88b69124
Bas Couwenberg
authored
Dec 28, 2017
88b69124
Bump Standards-Version to 4.1.2, no changes.
· b107277e
Bas Couwenberg
authored
Dec 28, 2017
b107277e
Update copyright years for Mark Overmeer.
· 2ca3caa6
Bas Couwenberg
authored
Dec 28, 2017
2ca3caa6
Set distribution to unstable.
· bb5104e9
Bas Couwenberg
authored
Dec 28, 2017
bb5104e9
Show whitespace changes
Inline
Side-by-side
Changes
View file @
bb5104e9
Revision history for Perl extension Geo::Proj4.
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
version 1.07: Wed 8 Nov 10:57:23 CET 2017
Fixes:
Fixes:
...
...
META.json
View file @
bb5104e9
...
@@ -35,5 +35,5 @@
...
@@ -35,5 +35,5 @@
}
}
},
},
"release_status"
:
"stable"
,
"release_status"
:
"stable"
,
"version"
:
"1.0
7
"
"version"
:
"1.0
8
"
}
}
META.yml
View file @
bb5104e9
...
@@ -18,4 +18,4 @@ no_index:
...
@@ -18,4 +18,4 @@ no_index:
-
t
-
t
-
inc
-
inc
requires
:
{}
requires
:
{}
version
:
1.0
7
version
:
1.0
8
Makefile.PL
View file @
bb5104e9
...
@@ -3,7 +3,7 @@ use ExtUtils::MakeMaker;
...
@@ -3,7 +3,7 @@ use ExtUtils::MakeMaker;
require
5.006
;
require
5.006
;
# increased per release
# increased per release
my
$relversion
=
'
1.0
7
';
my
$relversion
=
'
1.0
8
';
my
$libversion
=
'
4.4.9
';
my
$libversion
=
'
4.4.9
';
...
@@ -53,7 +53,6 @@ WriteMakefile
...
@@ -53,7 +53,6 @@ WriteMakefile
sub
MY
::postamble {
<<
'
__POSTAMBLE
'
}
sub
MY
::postamble {
<<
'
__POSTAMBLE
'
}
# for DIST, see PODTAIL.txt as well
# for DIST, see PODTAIL.txt as well
LICENSE
=
artistic
RAWDIR
=
..
/public_html/g
eoproj4
/
raw
RAWDIR
=
..
/public_html/g
eoproj4
/
raw
DISTDIR
=
..
/public_html/g
eoproj4
/
source
DISTDIR
=
..
/public_html/g
eoproj4
/
source
__POSTAMBLE
__POSTAMBLE
Proj4.xs
View file @
bb5104e9
...
@@ -166,7 +166,7 @@ transform_proj4(proj_from, proj_to, points, degrees)
...
@@ -166,7 +166,7 @@ transform_proj4(proj_from, proj_to, points, degrees)
x[p] = SvNV(*av_fetch(point, 0, 0));
x[p] = SvNV(*av_fetch(point, 0, 0));
y[p] = SvNV(*av_fetch(point, 1, 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]); */
/* fprintf(stderr, "point=%f %f %f\n", x[p], y[p], z[p]); */
if(degrees && pj_is_latlong(proj_from))
if(degrees && pj_is_latlong(proj_from))
...
@@ -192,7 +192,7 @@ transform_proj4(proj_from, proj_to, points, degrees)
...
@@ -192,7 +192,7 @@ transform_proj4(proj_from, proj_to, points, degrees)
av_push(res, newSVnv(x[p]));
av_push(res, newSVnv(x[p]));
av_push(res, newSVnv(y[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));
av_push(retlist, newRV((SV *)res));
}
}
...
...
README
View file @
bb5104e9
=== README for Geo-Proj4 version 1.0
7
=== README for Geo-Proj4 version 1.0
8
= Generated on
Wed Nov 8 10:57
:3
7
2017 by OODoc 2.02
= Generated on
Thu Dec 28 11:39
:3
4
2017 by OODoc 2.02
There are various ways to install this module:
There are various ways to install this module:
...
@@ -9,16 +9,16 @@ 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/
(2) if you use Windows, have a look at http://ppm.activestate.com/
(3) if you have downloaded this module manually (as root/administrator)
(3) if you have downloaded this module manually (as root/administrator)
gzip -d Geo-Proj4-1.0
7
.tar.gz
gzip -d Geo-Proj4-1.0
8
.tar.gz
tar -xf Geo-Proj4-1.0
7
.tar
tar -xf Geo-Proj4-1.0
8
.tar
cd Geo-Proj4-1.0
7
cd Geo-Proj4-1.0
8
perl Makefile.PL
perl Makefile.PL
make # optional
make # optional
make test # optional
make test # optional
make install
make install
For usage, see the included manual-pages or
For usage, see the included manual-pages or
http://search.cpan.org/dist/Geo-Proj4-1.0
7
/
http://search.cpan.org/dist/Geo-Proj4-1.0
8
/
Please report problems to
Please report problems to
http://rt.cpan.org/Dist/Display.html?Queue=Geo-Proj4
http://rt.cpan.org/Dist/Display.html?Queue=Geo-Proj4
...
...
debian/changelog
View file @
bb5104e9
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@debian.org> Thu, 28 Dec 2017 17:09:31 +0100
libgeo-proj4-perl (1.07-1) unstable; urgency=medium
libgeo-proj4-perl (1.07-1) unstable; urgency=medium
* New upstream release.
* New upstream release.
...
...
debian/control
View file @
bb5104e9
...
@@ -8,7 +8,7 @@ Build-Depends: debhelper (>= 9),
...
@@ -8,7 +8,7 @@ Build-Depends: debhelper (>= 9),
perl,
perl,
proj-bin,
proj-bin,
libproj-dev
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-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
Vcs-Git: https://anonscm.debian.org/git/pkg-grass/libgeo-proj4-perl.git
Homepage: https://metacpan.org/release/Geo-Proj4
Homepage: https://metacpan.org/release/Geo-Proj4
...
...
debian/copyright
View file @
bb5104e9
...
@@ -4,7 +4,7 @@ Upstream-Contact: Mark Overmeer <mark@overmeer.net>
...
@@ -4,7 +4,7 @@ Upstream-Contact: Mark Overmeer <mark@overmeer.net>
Source: https://metacpan.org/release/Geo-Proj4
Source: https://metacpan.org/release/Geo-Proj4
Files: *
Files: *
Copyright: © 2004-
2012,
2017, Mark Overmeer <geo@overmeer.net>
Copyright: © 2004-2017, Mark Overmeer <geo@overmeer.net>
License: Artistic or GPL-1+
License: Artistic or GPL-1+
Files: examples/use_epsg.pl
Files: examples/use_epsg.pl
...
...
lib/Geo/Proj4.pm
View file @
bb5104e9
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Pod stripped from pm file by OODoc 2.02.
# Pod stripped from pm file by OODoc 2.02.
package
Geo::
Proj4
;
package
Geo::
Proj4
;
use
vars
'
$VERSION
';
use
vars
'
$VERSION
';
$VERSION
=
'
1.0
7
';
$VERSION
=
'
1.0
8
';
use
strict
;
use
strict
;
...
...
lib/Geo/Proj4.pod
View file @
bb5104e9
...
@@ -365,8 +365,8 @@ proj(1), cs2cs(1), pj_init(3).
...
@@ -365,8 +365,8 @@ proj(1), cs2cs(1), pj_init(3).
=head1 COPYRIGHTS
=head1 COPYRIGHTS
Developed and maintained by Mark Overmeer E<lt>
geo@overmeer.net
E<gt>.
Developed and maintained by Mark Overmeer E<lt>
markov@cpan.org
E<gt>.
Copyright (c) 2004-20
0
7 by the authors. All rights reserved.
Copyright (c) 2004-20
1
7 by the authors. All rights reserved.
Originally Written by Schuyler Erle E<lt>schuyler@nocat.netE<gt> and
Originally Written by Schuyler Erle E<lt>schuyler@nocat.netE<gt> and
Rich Gibson E<lt>rich@nocat.netE<gt>. Their site: Mapping Hacks home
Rich Gibson E<lt>rich@nocat.netE<gt>. Their site: Mapping Hacks home
...
...