diff -Nru libastro-fits-header-perl-3.08/Build.PL libastro-fits-header-perl-3.09/Build.PL --- libastro-fits-header-perl-3.08/Build.PL 2021-02-22 19:03:20.000000000 +0000 +++ libastro-fits-header-perl-3.09/Build.PL 2023-04-17 22:17:33.000000000 +0000 @@ -16,14 +16,14 @@ 'Craig DeForest ', 'Jim Lewis ', ], - dist_version => '3.08', + dist_version => '3.09', meta_merge => { 'meta-spec' => { version => 2, }, resources => { repository => { - url => 'git://github.com/timj/perl-Astro-FITS-Header.git', + url => 'https://github.com/timj/perl-Astro-FITS-Header.git', web => 'https://github.com/timj/perl-Astro-FITS-Header/', type => 'git', }, diff -Nru libastro-fits-header-perl-3.08/Changes libastro-fits-header-perl-3.09/Changes --- libastro-fits-header-perl-3.08/Changes 2021-02-22 19:03:20.000000000 +0000 +++ libastro-fits-header-perl-3.09/Changes 2023-04-17 22:17:33.000000000 +0000 @@ -1,5 +1,9 @@ Revision history for Astro::FITS::Header +3.09 2023-04-17 + + - Minor updates to documentation. + 3.08 2021-02-22 - Starlink::AST recommends prereq changed to suggests. diff -Nru libastro-fits-header-perl-3.08/debian/changelog libastro-fits-header-perl-3.09/debian/changelog --- libastro-fits-header-perl-3.08/debian/changelog 2021-09-25 12:08:47.000000000 +0000 +++ libastro-fits-header-perl-3.09/debian/changelog 2023-04-21 23:29:01.000000000 +0000 @@ -1,3 +1,11 @@ +libastro-fits-header-perl (3.09-1) unstable; urgency=medium + + * Import upstream version 3.09. + * Update debian/upstream/metadata. + * Declare compliance with Debian Policy 4.6.2. + + -- gregor herrmann Sat, 22 Apr 2023 01:29:01 +0200 + libastro-fits-header-perl (3.08-1) unstable; urgency=medium * Team upload diff -Nru libastro-fits-header-perl-3.08/debian/control libastro-fits-header-perl-3.09/debian/control --- libastro-fits-header-perl-3.08/debian/control 2021-09-25 12:08:40.000000000 +0000 +++ libastro-fits-header-perl-3.09/debian/control 2023-04-21 23:29:01.000000000 +0000 @@ -7,9 +7,9 @@ Priority: optional Build-Depends: debhelper-compat (= 13), libmodule-build-perl -Build-Depends-Indep: perl, - libastro-fits-cfitsio-perl -Standards-Version: 4.6.0 +Build-Depends-Indep: libastro-fits-cfitsio-perl , + perl +Standards-Version: 4.6.2 Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libastro-fits-header-perl Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libastro-fits-header-perl.git Homepage: https://metacpan.org/release/Astro-FITS-Header diff -Nru libastro-fits-header-perl-3.08/debian/upstream/metadata libastro-fits-header-perl-3.09/debian/upstream/metadata --- libastro-fits-header-perl-3.08/debian/upstream/metadata 2021-09-25 11:59:53.000000000 +0000 +++ libastro-fits-header-perl-3.09/debian/upstream/metadata 2023-04-21 23:29:01.000000000 +0000 @@ -1,3 +1,4 @@ --- +Archive: CPAN Repository: https://github.com/timj/perl-Astro-FITS-Header.git -Repository-Browse: https://github.com/timj/perl-Astro-FITS-Header +Repository-Browse: https://github.com/timj/perl-Astro-FITS-Header/ diff -Nru libastro-fits-header-perl-3.08/lib/Astro/FITS/Header/AST.pm libastro-fits-header-perl-3.09/lib/Astro/FITS/Header/AST.pm --- libastro-fits-header-perl-3.08/lib/Astro/FITS/Header/AST.pm 2021-02-22 19:03:20.000000000 +0000 +++ libastro-fits-header-perl-3.09/lib/Astro/FITS/Header/AST.pm 2023-04-17 22:17:33.000000000 +0000 @@ -36,7 +36,7 @@ require Starlink::AST; -$VERSION = 3.08; +$VERSION = '3.09'; # C O N S T R U C T O R ---------------------------------------------------- diff -Nru libastro-fits-header-perl-3.08/lib/Astro/FITS/Header/CFITSIO.pm libastro-fits-header-perl-3.09/lib/Astro/FITS/Header/CFITSIO.pm --- libastro-fits-header-perl-3.08/lib/Astro/FITS/Header/CFITSIO.pm 2021-02-22 19:03:20.000000000 +0000 +++ libastro-fits-header-perl-3.09/lib/Astro/FITS/Header/CFITSIO.pm 2023-04-17 22:17:33.000000000 +0000 @@ -40,7 +40,7 @@ use Astro::FITS::CFITSIO qw / :longnames :constants /; use Carp; -$VERSION = 3.08; +$VERSION = '3.09'; # C O N S T R U C T O R ---------------------------------------------------- @@ -172,7 +172,7 @@ Its accepts a FITS identifier or a filename. If both fitsID and File keys exist, fitsID key takes priority. -Returns undef on error, true if the header was written successfully. +Throws an exception (croaks) on error. =cut diff -Nru libastro-fits-header-perl-3.08/lib/Astro/FITS/Header/GSD.pm libastro-fits-header-perl-3.09/lib/Astro/FITS/Header/GSD.pm --- libastro-fits-header-perl-3.08/lib/Astro/FITS/Header/GSD.pm 2021-02-22 19:03:20.000000000 +0000 +++ libastro-fits-header-perl-3.09/lib/Astro/FITS/Header/GSD.pm 2023-04-17 22:17:33.000000000 +0000 @@ -33,7 +33,7 @@ use vars qw/ $VERSION /; -$VERSION = 3.08; +$VERSION = '3.09'; =head1 METHODS diff -Nru libastro-fits-header-perl-3.08/lib/Astro/FITS/Header/Item.pm libastro-fits-header-perl-3.09/lib/Astro/FITS/Header/Item.pm --- libastro-fits-header-perl-3.08/lib/Astro/FITS/Header/Item.pm 2021-02-22 19:03:20.000000000 +0000 +++ libastro-fits-header-perl-3.09/lib/Astro/FITS/Header/Item.pm 2023-04-17 22:17:33.000000000 +0000 @@ -39,7 +39,7 @@ use vars qw/ $VERSION /; use Carp; -$VERSION = 3.08; +$VERSION = '3.09'; =head1 METHODS diff -Nru libastro-fits-header-perl-3.08/lib/Astro/FITS/Header/NDF.pm libastro-fits-header-perl-3.09/lib/Astro/FITS/Header/NDF.pm --- libastro-fits-header-perl-3.08/lib/Astro/FITS/Header/NDF.pm 2021-02-22 19:03:20.000000000 +0000 +++ libastro-fits-header-perl-3.09/lib/Astro/FITS/Header/NDF.pm 2023-04-17 22:17:33.000000000 +0000 @@ -44,7 +44,7 @@ use vars qw/ $VERSION /; -$VERSION = 3.08; +$VERSION = '3.09'; =head1 METHODS diff -Nru libastro-fits-header-perl-3.08/lib/Astro/FITS/Header.pm libastro-fits-header-perl-3.09/lib/Astro/FITS/Header.pm --- libastro-fits-header-perl-3.08/lib/Astro/FITS/Header.pm 2021-02-22 19:03:20.000000000 +0000 +++ libastro-fits-header-perl-3.09/lib/Astro/FITS/Header.pm 2023-04-17 22:17:33.000000000 +0000 @@ -26,7 +26,7 @@ use Astro::FITS::Header::Item; -$VERSION = 3.08; +$VERSION = '3.09'; # Operator overloads use overload '""' => "stringify", @@ -703,7 +703,7 @@ The options hash is itself optional. It contains the following keys: merge_unique - if an item is identical across multiple headers and only - exists in those headers, propogate to the merged header rather + exists in those headers, propagate to the merged header rather than storing it in the difference headers. force_return_diffs - return an empty difference object per input header @@ -933,7 +933,7 @@ Private function used to rebuild the lookup table after modifying the header block, its easier to do it this way than go through and add one -to the indices of all header cards following the modifed card. +to the indices of all header cards following the modified card. =cut @@ -1604,7 +1604,7 @@ use Carp; our $VERSION; -$VERSION = '3.08'; +$VERSION = '3.09'; # Class wrapper for subhdrs tie. Not (yet) a public interface # we simply need a class that we can tie the subhdrs array to. diff -Nru libastro-fits-header-perl-3.08/META.json libastro-fits-header-perl-3.09/META.json --- libastro-fits-header-perl-3.08/META.json 2021-02-22 19:03:20.000000000 +0000 +++ libastro-fits-header-perl-3.09/META.json 2023-04-17 22:17:33.000000000 +0000 @@ -40,31 +40,31 @@ "provides" : { "Astro::FITS::Header" : { "file" : "lib/Astro/FITS/Header.pm", - "version" : "3.08" + "version" : "3.09" }, "Astro::FITS::Header::AST" : { "file" : "lib/Astro/FITS/Header/AST.pm", - "version" : "3.08" + "version" : "3.09" }, "Astro::FITS::Header::CFITSIO" : { "file" : "lib/Astro/FITS/Header/CFITSIO.pm", - "version" : "3.08" + "version" : "3.09" }, "Astro::FITS::Header::GSD" : { "file" : "lib/Astro/FITS/Header/GSD.pm", - "version" : "3.08" + "version" : "3.09" }, "Astro::FITS::Header::Item" : { "file" : "lib/Astro/FITS/Header/Item.pm", - "version" : "3.08" + "version" : "3.09" }, "Astro::FITS::Header::NDF" : { "file" : "lib/Astro/FITS/Header/NDF.pm", - "version" : "3.08" + "version" : "3.09" }, "Astro::FITS::HeaderCollection" : { "file" : "lib/Astro/FITS/Header.pm", - "version" : "3.08" + "version" : "3.09" } }, "release_status" : "stable", @@ -75,9 +75,9 @@ ], "repository" : { "type" : "git", - "url" : "git://github.com/timj/perl-Astro-FITS-Header.git", + "url" : "https://github.com/timj/perl-Astro-FITS-Header.git", "web" : "https://github.com/timj/perl-Astro-FITS-Header/" } }, - "version" : "3.08" + "version" : "3.09" } diff -Nru libastro-fits-header-perl-3.08/META.yml libastro-fits-header-perl-3.09/META.yml --- libastro-fits-header-perl-3.08/META.yml 2021-02-22 19:03:20.000000000 +0000 +++ libastro-fits-header-perl-3.09/META.yml 2023-04-17 22:17:33.000000000 +0000 @@ -20,29 +20,29 @@ provides: Astro::FITS::Header: file: lib/Astro/FITS/Header.pm - version: '3.08' + version: '3.09' Astro::FITS::Header::AST: file: lib/Astro/FITS/Header/AST.pm - version: '3.08' + version: '3.09' Astro::FITS::Header::CFITSIO: file: lib/Astro/FITS/Header/CFITSIO.pm - version: '3.08' + version: '3.09' Astro::FITS::Header::GSD: file: lib/Astro/FITS/Header/GSD.pm - version: '3.08' + version: '3.09' Astro::FITS::Header::Item: file: lib/Astro/FITS/Header/Item.pm - version: '3.08' + version: '3.09' Astro::FITS::Header::NDF: file: lib/Astro/FITS/Header/NDF.pm - version: '3.08' + version: '3.09' Astro::FITS::HeaderCollection: file: lib/Astro/FITS/Header.pm - version: '3.08' + version: '3.09' recommends: Astro::FITS::CFITSIO: '0' resources: homepage: https://github.com/timj/perl-Astro-FITS-Header/ license: http://www.gnu.org/licenses/gpl-3.0.txt - repository: git://github.com/timj/perl-Astro-FITS-Header.git -version: '3.08' + repository: https://github.com/timj/perl-Astro-FITS-Header.git +version: '3.09' diff -Nru libastro-fits-header-perl-3.08/README libastro-fits-header-perl-3.09/README --- libastro-fits-header-perl-3.08/README 2021-02-22 19:03:20.000000000 +0000 +++ libastro-fits-header-perl-3.09/README 2023-04-17 22:17:33.000000000 +0000 @@ -117,7 +117,7 @@ Please use CPAN RT for bug reports and github pull requests for patches. The source code repository is at - git://github.com/timj/perl-Astro-FITS-Header.git + https://github.com/timj/perl-Astro-FITS-Header.git License -------