This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository libgeo-proj4-perl.
commit 58710cdd32ba22ca102702821360ec9317b4d53a Author: Bas Couwenberg <sebas...@xs4all.nl> Date: Wed Jan 24 17:12:00 2018 +0100 New upstream version 1.09 --- Changes => ChangeLog | 14 ++++++++++++-- INSTALL | 24 ------------------------ MANIFEST | 5 ++--- META.json | 19 +++++++++++++------ META.yml | 17 ++++++++++------- Makefile.PL | 19 ++++++++++++++++--- README | 12 ++++++------ lib/Geo/Proj4.pm | 10 +++++++--- lib/Geo/Proj4.pod | 6 +----- {t => xt}/99pod.t | 0 10 files changed, 67 insertions(+), 59 deletions(-) diff --git a/Changes b/ChangeLog similarity index 91% rename from Changes rename to ChangeLog index b9e2a05..0d91a1d 100644 --- a/Changes +++ b/ChangeLog @@ -1,4 +1,14 @@ -Revision history for Perl extension Geo::Proj4. +== Revision history for Perl extension Geo::Proj4. + +All modifications where created by Mark Overmeer, unless explicitly +stated differently. + +version 1.09: Tue 23 Jan 17:59:12 CET 2018 + + Improvements: + - convert to GIT + - publish via GitHUB + - rename Changes into ChangeLog version 1.08: Thu 28 Dec 11:38:06 CET 2017 @@ -46,7 +56,7 @@ version 1.02: Wed Nov 23 09:24:16 CET 2011 - with Perl 14.2, the XS compile flags changed slightly causing a Dynaloader error. - rt.cpan.org#72626 [Dirk Stöcker] + rt.cpan.org#72626 [Dirk Stöcker] Improvements: diff --git a/INSTALL b/INSTALL deleted file mode 100644 index 5ff250f..0000000 --- a/INSTALL +++ /dev/null @@ -1,24 +0,0 @@ - -== INSTALL - -= Libray from scratch - -Geo::Proj4 uses XS to wrap the PROJ.4 cartographic projections library. -You will need to have at least version 4.4.9 of the PROJ.4 library -installed in order to build and use this module. You can get source -code and binaries for the PROJ.4 library from its home page at -http://www.remotesensing.org/proj/. - -= FWTools - -An other way to get the library is by installing FWTools, available -at http://fwtools.maptools.org/ - -In case you have installed FWTools, set environment variable -GEOPROJ_FWTOOLS_DIR to the right location, before running Makefile.PL - - export GEOPROJ_FWTOOLS_DIR=/home/myself/FWTools - perl Makefile.PL - make - make test - make install diff --git a/MANIFEST b/MANIFEST index 50678e8..458f1a3 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,5 +1,4 @@ -Changes -INSTALL +ChangeLog MANIFEST META.yml Makefile.PL @@ -13,6 +12,6 @@ lib/Geo/Proj4.pod src/4.8.0/projects.h t/10utm.t t/20clark80.t -t/99pod.t typemap +xt/99pod.t META.json Module JSON meta-data (added by MakeMaker) diff --git a/META.json b/META.json index 42ecd85..59b915f 100644 --- a/META.json +++ b/META.json @@ -4,9 +4,10 @@ "Mark Overmeer" ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter version 2.120630", + "generated_by" : "ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 2.150010", "license" : [ - "perl_5" + "perl_5", + "unknown" ], "meta-spec" : { "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", @@ -29,11 +30,17 @@ "requires" : { "ExtUtils::MakeMaker" : "0" } - }, - "runtime" : { - "requires" : {} } }, "release_status" : "stable", - "version" : "1.08" + "resources" : { + "repository" : { + "type" : "git", + "url" : "https://github.com/markov2/perl5-Geo-Proj4.git", + "web" : "https://github.com/markov2/perl5-Geo-Proj4" + } + }, + "version" : "1.09", + "x_homepage" : "http://perl.overmeer.net/CPAN/", + "x_serialization_backend" : "JSON::PP version 2.94" } diff --git a/META.yml b/META.yml index bb385a0..c8ab969 100644 --- a/META.yml +++ b/META.yml @@ -3,19 +3,22 @@ abstract: 'Proj4 library for carthographic projections' author: - 'Mark Overmeer' build_requires: - ExtUtils::MakeMaker: 0 + ExtUtils::MakeMaker: '0' configure_requires: - ExtUtils::MakeMaker: 0 + ExtUtils::MakeMaker: '0' dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter version 2.120630' -license: perl +generated_by: 'ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 2.150010' +license: unknown meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html - version: 1.4 + version: '1.4' name: Geo-Proj4 no_index: directory: - t - inc -requires: {} -version: 1.08 +resources: + repository: https://github.com/markov2/perl5-Geo-Proj4.git +version: '1.09' +x_homepage: http://perl.overmeer.net/CPAN/ +x_serialization_backend: 'CPAN::Meta::YAML version 0.011' diff --git a/Makefile.PL b/Makefile.PL index 743add7..fedddab 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,7 +3,7 @@ use ExtUtils::MakeMaker; require 5.006; # increased per release -my $relversion = '1.08'; +my $relversion = '1.09'; my $libversion = '4.4.9'; @@ -47,12 +47,25 @@ WriteMakefile , INC => "-I$FWTools/include -I." , LIBS => [ "-L$FWTools/lib -lproj" ] , LICENSE => 'perl' + + , META_MERGE => + { 'meta-spec' => { version => 2 } + , resources => + { repository => + { type => 'git' + , url => 'https://github.com/markov2/perl5-Geo-Proj4.git' + , web => 'https://github.com/markov2/perl5-Geo-Proj4' + } + } + , homepage => 'http://perl.overmeer.net/CPAN/' + , license => [ 'http://dev.perl.org/licenses/' ] + } ); ### used by oodist during production of this distribution sub MY::postamble { <<'__POSTAMBLE' } # for DIST, see PODTAIL.txt as well -RAWDIR = ../public_html/geoproj4/raw -DISTDIR = ../public_html/geoproj4/source +RAWDIR = ../public_html/geo-proj4/raw +DISTDIR = ../public_html/geo-proj4/source __POSTAMBLE diff --git a/README b/README index b439cb5..65ffd34 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -=== README for Geo-Proj4 version 1.08 -= Generated on Thu Dec 28 11:39:34 2017 by OODoc 2.02 +=== README for Geo-Proj4 version 1.09 += Generated on Tue Jan 23 17:59:19 2018 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.08.tar.gz - tar -xf Geo-Proj4-1.08.tar - cd Geo-Proj4-1.08 + gzip -d Geo-Proj4-1.09.tar.gz + tar -xf Geo-Proj4-1.09.tar + cd Geo-Proj4-1.09 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.08/ + http://search.cpan.org/dist/Geo-Proj4-1.09/ Please report problems to http://rt.cpan.org/Dist/Display.html?Queue=Geo-Proj4 diff --git a/lib/Geo/Proj4.pm b/lib/Geo/Proj4.pm index 2975bc0..784061d 100644 --- a/lib/Geo/Proj4.pm +++ b/lib/Geo/Proj4.pm @@ -1,10 +1,14 @@ -# Copyrights 2017 by [Mark Overmeer]. -# For other contributors see Changes. +# Copyrights 2018 by [Mark Overmeer]. +# For other contributors see ChangeLog. # See the manual pages for details on the licensing terms. # Pod stripped from pm file by OODoc 2.02. +# This code is part of distribution Geo-Proj4. Meta-POD processed with +# OODoc into POD and HTML manual-pages. See README.md +# Copyright Mark Overmeer. Licensed under the same terms as Perl itself. + package Geo::Proj4; use vars '$VERSION'; -$VERSION = '1.08'; +$VERSION = '1.09'; use strict; diff --git a/lib/Geo/Proj4.pod b/lib/Geo/Proj4.pod index 38513f8..68125d5 100644 --- a/lib/Geo/Proj4.pod +++ b/lib/Geo/Proj4.pod @@ -352,10 +352,6 @@ calculating projections, this is more important than on maps. See the Geo::Point website at L<http://perl.overmeer.net/geo/> for an html version of this and related modules; -L</Geo::GML>, -L</Geo::Point>, -L</Geo::WKT> and -L</Math::Polygon> Effusive thanks to Frank Warmerdam (maintainer of PROJ.4) and Gerald Evenden (main contributor of PROJ.4). Their PROJ.4 library home page: @@ -366,7 +362,7 @@ proj(1), cs2cs(1), pj_init(3). =head1 COPYRIGHTS Developed and maintained by Mark Overmeer E<lt>mar...@cpan.orge<gt>. -Copyright (c) 2004-2017 by the authors. All rights reserved. +Copyright (c) 2004-2018 by the authors. All rights reserved. Originally Written by Schuyler Erle E<lt>schuy...@nocat.nete<gt> and Rich Gibson E<lt>r...@nocat.nete<gt>. Their site: Mapping Hacks home diff --git a/t/99pod.t b/xt/99pod.t similarity index 100% rename from t/99pod.t rename to xt/99pod.t -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/libgeo-proj4-perl.git _______________________________________________ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel