Hello community,
here is the log from the commit of package perl-Math-Base-Convert for
openSUSE:Factory checked in at 2015-11-11 10:31:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Math-Base-Convert (Old)
and /work/SRC/openSUSE:Factory/.perl-Math-Base-Convert.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Math-Base-Convert"
Changes:
--------
---
/work/SRC/openSUSE:Factory/perl-Math-Base-Convert/perl-Math-Base-Convert.changes
2015-11-08 11:25:50.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.perl-Math-Base-Convert.new/perl-Math-Base-Convert.changes
2015-11-11 10:36:06.000000000 +0100
@@ -1,0 +2,16 @@
+Mon Nov 9 09:53:25 UTC 2015 - [email protected]
+
+- updated to 0.11
+ see /usr/share/doc/packages/perl-Math-Base-Convert/Changes
+
+ 0.11 Thu Oct 22 15:31:10 PDT 2015
+ fix one more typo
+
+ 0.10 Wed Oct 21 19:56:19 PDT 2015
+ finish the typo corrections started in 0.09, sigh...
+
+ 0.09 Wed Oct 21 18:53:44 PDT 2015
+ corrected numerous typos thanks to patch by
+ gregor herrmann <[email protected]>
+
+-------------------------------------------------------------------
Old:
----
Math-Base-Convert-0.08.tar.gz
New:
----
Math-Base-Convert-0.11.tar.gz
cpanspec.yml
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-Math-Base-Convert.spec ++++++
--- /var/tmp/diff_new_pack.m701gm/_old 2015-11-11 10:36:07.000000000 +0100
+++ /var/tmp/diff_new_pack.m701gm/_new 2015-11-11 10:36:07.000000000 +0100
@@ -17,7 +17,7 @@
Name: perl-Math-Base-Convert
-Version: 0.08
+Version: 0.11
Release: 0
%define cpan_name Math-Base-Convert
Summary: Very Fast Base to Base Conversion
@@ -25,6 +25,7 @@
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Math-Base-Convert/
Source0:
http://www.cpan.org/authors/id/M/MI/MIKER/%{cpan_name}-%{version}.tar.gz
+Source1: cpanspec.yml
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
++++++ Math-Base-Convert-0.08.tar.gz -> Math-Base-Convert-0.11.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Math-Base-Convert-0.08/Changes
new/Math-Base-Convert-0.11/Changes
--- old/Math-Base-Convert-0.08/Changes 2014-01-27 22:39:20.000000000 +0100
+++ new/Math-Base-Convert-0.11/Changes 2015-10-23 00:31:40.000000000 +0200
@@ -1,5 +1,15 @@
Revision history for Perl extension Math::Base::Convert
+0.11 Thu Oct 22 15:31:10 PDT 2015
+ fix one more typo
+
+0.10 Wed Oct 21 19:56:19 PDT 2015
+ finish the typo corrections started in 0.09, sigh...
+
+0.09 Wed Oct 21 18:53:44 PDT 2015
+ corrected numerous typos thanks to patch by
+ gregor herrmann <[email protected]>
+
0.08 Mon Jan 27 11:59:58 PST 2014
modify Makefile.PL to bypass missing 'pod2text'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Math-Base-Convert-0.08/Convert.pm
new/Math-Base-Convert-0.11/Convert.pm
--- old/Math-Base-Convert-0.08/Convert.pm 2014-01-27 22:39:59.000000000
+0100
+++ new/Math-Base-Convert-0.11/Convert.pm 2015-10-23 00:30:44.000000000
+0200
@@ -19,7 +19,7 @@
Exporter
);
-$VERSION = do { my @r = (q$Revision: 0.08 $ =~ /\d+/g); sprintf "%d."."%02d" x
$#r, @r };
+$VERSION = do { my @r = (q$Revision: 0.11 $ =~ /\d+/g); sprintf "%d."."%02d" x
$#r, @r };
@EXPORT_OK = ( qw( cnv cnvpre cnvabs basemap ), @BASES );
%EXPORT_TAGS = (
@@ -325,7 +325,7 @@
m64 base 64 0-63 from MIME::Base64
iru base 64 P10 protocol - IRCu daemon
url base 64 url with no %2B %2F expansion of + - /
- rex base 64 regular expression varient
+ rex base 64 regular expression variant
id0 base 64 IDentifier style 0
id1 base 64 IDentifier style 1
xnt base 64 XML Name Tokens (Nmtoken)
@@ -364,7 +364,7 @@
=head1 BUILT IN NUMBER SETS
-Number set varients courtesy of the authors of Math::Base:Cnv and
+Number set variants courtesy of the authors of Math::Base:Cnv and
Math::BaseConvert.
The functions below return a reference to an array
@@ -383,7 +383,7 @@
m64 => ['A'..'Z', 'a'..'z', '0'..'9', '+', '/'] # MIMI::Base64
iru => ['A'..'Z', 'a'..'z', '0'..'9', '[', ']'] # P10 - IRCu
url => ['A'..'Z', 'a'..'z', '0'..'9', '*', '-'] # url no %2B %2F
- rex => ['A'..'Z', 'a'..'z', '0'..'9', '!', '-'] # regex varient
+ rex => ['A'..'Z', 'a'..'z', '0'..'9', '!', '-'] # regex variant
id0 => ['A'..'Z', 'a'..'z', '0'..'9', '_', '-'] # ID 0
id1 => ['A'..'Z', 'a'..'z', '0'..'9', '.', '_'] # ID 1
xnt => ['A'..'Z', 'a'..'z', '0'..'9', '.', '-'] # XML (Nmtoken)
@@ -442,7 +442,7 @@
base as text
$converted = convbase($number,'oct');
-Conversion to/from arbitary bases i.e.
+Conversion to/from arbitrary bases i.e.
$converted = cnv($number); # dec -> hex (default)
$converted = cnv($number,oct); # oct to HEX
@@ -517,7 +517,7 @@
numeric value for base conversion. It accepts B<base> in any of the forms
described for B<cnv>.
-The return basemap includes upper and lower case varients of the the number
+The return basemap includes upper and lower case variants of the the number
base in cases such as B<hex> where upper and lower case a..f, A..F map to
the same numeric value for base conversion.
@@ -638,7 +638,7 @@
=head1 COPYRIGHT
-Copyright 2012-2014, Michael Robinton
+Copyright 2012-2015, Michael Robinton
This program is free software; you may redistribute it and/or modify it
under the same terms as Perl itself.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Math-Base-Convert-0.08/META.yml
new/Math-Base-Convert-0.11/META.yml
--- old/Math-Base-Convert-0.08/META.yml 2014-01-27 22:40:24.000000000 +0100
+++ new/Math-Base-Convert-0.11/META.yml 2015-10-23 00:32:14.000000000 +0200
@@ -1,6 +1,6 @@
--- #YAML:1.0
name: Math-Base-Convert
-version: 0.08
+version: 0.11
abstract: ~
license: ~
author: ~
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Math-Base-Convert-0.08/README
new/Math-Base-Convert-0.11/README
--- old/Math-Base-Convert-0.08/README 2014-01-27 22:40:13.000000000 +0100
+++ new/Math-Base-Convert-0.11/README 2015-10-23 00:31:48.000000000 +0200
@@ -25,7 +25,7 @@
m64 base 64 0-63 from MIME::Base64
iru base 64 P10 protocol - IRCu daemon
url base 64 url with no %2B %2F expansion of + - /
- rex base 64 regular expression varient
+ rex base 64 regular expression variant
id0 base 64 IDentifier style 0
id1 base 64 IDentifier style 1
xnt base 64 XML Name Tokens (Nmtoken)
@@ -63,7 +63,7 @@
sub-directory in this distribution.
BUILT IN NUMBER SETS
- Number set varients courtesy of the authors of Math::Base:Cnv and
+ Number set variants courtesy of the authors of Math::Base:Cnv and
Math::BaseConvert.
The functions below return a reference to an array
@@ -82,7 +82,7 @@
m64 => ['A'..'Z', 'a'..'z', '0'..'9', '+', '/'] # MIMI::Base64
iru => ['A'..'Z', 'a'..'z', '0'..'9', '[', ']'] # P10 - IRCu
url => ['A'..'Z', 'a'..'z', '0'..'9', '*', '-'] # url no %2B %2F
- rex => ['A'..'Z', 'a'..'z', '0'..'9', '!', '-'] # regex varient
+ rex => ['A'..'Z', 'a'..'z', '0'..'9', '!', '-'] # regex variant
id0 => ['A'..'Z', 'a'..'z', '0'..'9', '_', '-'] # ID 0
id1 => ['A'..'Z', 'a'..'z', '0'..'9', '.', '_'] # ID 1
xnt => ['A'..'Z', 'a'..'z', '0'..'9', '.', '-'] # XML (Nmtoken)
@@ -137,7 +137,7 @@
base as text
$converted = convbase($number,'oct');
- Conversion to/from arbitary bases i.e.
+ Conversion to/from arbitrary bases i.e.
$converted = cnv($number); # dec -> hex (default)
$converted = cnv($number,oct); # oct to HEX
@@ -205,7 +205,7 @@
keys of a base to its numeric value for base conversion. It accepts
base in any of the forms described for cnv.
- The return basemap includes upper and lower case varients of the the
+ The return basemap includes upper and lower case variants of the the
number base in cases such as hex where upper and lower case a..f,
A..F map to the same numeric value for base conversion.
@@ -317,7 +317,7 @@
Michael Robinton, <[email protected]>
COPYRIGHT
- Copyright 2012-2014, Michael Robinton
+ Copyright 2012-2015, Michael Robinton
This program is free software; you may redistribute it and/or modify it
under the same terms as Perl itself.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Math-Base-Convert-0.08/bitmaps
new/Math-Base-Convert-0.11/bitmaps
--- old/Math-Base-Convert-0.08/bitmaps 2013-01-08 20:49:09.000000000 +0100
+++ new/Math-Base-Convert-0.11/bitmaps 2015-10-22 03:16:47.000000000 +0200
@@ -6,7 +6,7 @@
# will update the Bitmaps module version below
#
-my $VERSION = do { my @r = (q$Revision: 0.01 $ =~ /\d+/g); sprintf
"%d."."%02d" x $#r, @r };
+my $VERSION = do { my @r = (q$Revision: 0.02 $ =~ /\d+/g); sprintf
"%d."."%02d" x $#r, @r };
my $bases = Math::Base::Convert->_bases;
@@ -132,7 +132,7 @@
=head1 NAME
-Math::Base::Convert::Bitmaps
+Math::Base::Convert::Bitmaps - pregenerated bit pattern to base power of 2
translation tables
This package contains no documentation
@@ -142,7 +142,7 @@
=head1 COPYRIGHT
-Copyright 2012, Michael Robinton
+Copyright 2012-2015, Michael Robinton
This program is free software; you may redistribute it and/or modify it
under the same terms as Perl itself.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/Math-Base-Convert-0.08/lib/Math/Base/Convert/Bases.pm
new/Math-Base-Convert-0.11/lib/Math/Base/Convert/Bases.pm
--- old/Math-Base-Convert-0.08/lib/Math/Base/Convert/Bases.pm 2012-12-26
17:49:12.000000000 +0100
+++ new/Math-Base-Convert-0.11/lib/Math/Base/Convert/Bases.pm 2015-10-22
03:17:48.000000000 +0200
@@ -2,7 +2,7 @@
package Math::Base::Convert::Bases;
-$VERSION = 0.02;
+$VERSION = 0.03;
package Math::Base::Convert; # into the main package
@@ -133,7 +133,11 @@
__END__
-=head1 NAME - Math::Base::Convert::Bases
+=head1 NAME
+
+Math::Base::Convert::Bases - helper module for bases
+
+=head1 DESCRIPTION
This package contains no documentation
@@ -145,7 +149,7 @@
=head1 COPYRIGHT
-Copyright 2012, Michael Robinton
+Copyright 2012-2015, Michael Robinton
This program is free software; you may redistribute it and/or modify it
under the same terms as Perl itself.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/Math-Base-Convert-0.08/lib/Math/Base/Convert/CalcPP.pm
new/Math-Base-Convert-0.11/lib/Math/Base/Convert/CalcPP.pm
--- old/Math-Base-Convert-0.08/lib/Math/Base/Convert/CalcPP.pm 2012-12-23
07:33:11.000000000 +0100
+++ new/Math-Base-Convert-0.11/lib/Math/Base/Convert/CalcPP.pm 2015-10-22
03:10:12.000000000 +0200
@@ -5,7 +5,7 @@
use strict;
use vars qw($VERSION);
-$VERSION = do { my @r = (q$Revision: 0.02 $ =~ /\d+/g); sprintf "%d."."%02d" x
$#r, @r };
+$VERSION = do { my @r = (q$Revision: 0.03 $ =~ /\d+/g); sprintf "%d."."%02d" x
$#r, @r };
# test number < 2^32 is NOT power of 2
#
@@ -162,7 +162,7 @@
=head1 NAME
-Math::Base::Convert::CalcPP
+Math::Base::Convert::CalcPP - standard methods used by Math::Base::Convert
=head1 DESCRIPTION
@@ -209,13 +209,15 @@
}
return $output;
+=back
+
=head1 AUTHOR
Michael Robinton, [email protected]
=head1 COPYRIGHT
-Copyright 2012, Michael Robinton
+Copyright 2012-15, Michael Robinton
This program is free software; you may redistribute it and/or modify it
under the same terms as Perl itself.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/Math-Base-Convert-0.08/lib/Math/Base/Convert/Shortcuts.pm
new/Math-Base-Convert-0.11/lib/Math/Base/Convert/Shortcuts.pm
--- old/Math-Base-Convert-0.08/lib/Math/Base/Convert/Shortcuts.pm
2013-01-08 22:46:04.000000000 +0100
+++ new/Math-Base-Convert-0.11/lib/Math/Base/Convert/Shortcuts.pm
2015-10-22 05:00:02.000000000 +0200
@@ -3,7 +3,7 @@
use vars qw($VERSION);
use strict;
-$VERSION = do { my @r = (q$Revision: 0.03 $ =~ /\d+/g); sprintf "%d."."%02d" x
$#r, @r };
+$VERSION = do { my @r = (q$Revision: 0.05 $ =~ /\d+/g); sprintf "%d."."%02d" x
$#r, @r };
# load bitmaps
@@ -387,7 +387,7 @@
}
$map = $bc->{tmap};
}
- elsif ($bp == 3) { # octal varient?
+ elsif ($bp == 3) { # octal variant?
$map = $xlt->[$bp];
} else {
$map = $xlt->[0]->{$bname}; # standard map
@@ -419,7 +419,7 @@
=head1 NAME
-Math::Base::Convert::Shortcuts
+Math::Base::Convert::Shortcuts - methods for converting powers of 2 bases
=head1 DESCRIPTION
@@ -448,7 +448,7 @@
=head1 COPYRIGHT
-Copyright 2012, Michael Robinton
+Copyright 2012-2015, Michael Robinton
This program is free software; you may redistribute it and/or modify it
under the same terms as Perl itself.
++++++ cpanspec.yml ++++++
---
#description_paragraphs: 3
#no_testing: broken upstream
#sources:
# - source1
# - source2
#patches:
# foo.patch: -p1
# bar.patch:
#preamble: |-
# BuildRequires: gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module