Hello community,

here is the log from the commit of package perl-Config-Crontab for 
openSUSE:Factory checked in at 2016-07-03 12:17:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Config-Crontab (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Config-Crontab.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Config-Crontab"

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Config-Crontab/perl-Config-Crontab.changes  
2014-02-12 17:22:24.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Config-Crontab.new/perl-Config-Crontab.changes 
    2016-07-03 12:17:47.000000000 +0200
@@ -1,0 +2,14 @@
+Sat May 28 09:36:36 UTC 2016 - [email protected]
+
+- updated to 1.41
+   see /usr/share/doc/packages/perl-Config-Crontab/Changes
+
+  Release 1.41
+  ----------------------------
+  commit 5ab21cf7b653915d792e76935606bf24462a11fb
+  Author: Scott Wiersdorf <[email protected]>
+  Date:   Thu May 26 19:00:26 2016 -0600
+  
+      RT #114744
+
+-------------------------------------------------------------------

Old:
----
  Config-Crontab-1.40.tar.gz

New:
----
  Config-Crontab-1.41.tar.gz
  cpanspec.yml

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-Config-Crontab.spec ++++++
--- /var/tmp/diff_new_pack.Hx7Pxj/_old  2016-07-03 12:17:48.000000000 +0200
+++ /var/tmp/diff_new_pack.Hx7Pxj/_new  2016-07-03 12:17:48.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Config-Crontab
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,15 @@
 
 
 Name:           perl-Config-Crontab
-Version:        1.40
+Version:        1.41
 Release:        0
 %define cpan_name Config-Crontab
 Summary:        Read/Write Vixie compatible crontab(5) files
 License:        GPL-1.0+ or Artistic-1.0
 Group:          Development/Libraries/Perl
 Url:            http://search.cpan.org/dist/Config-Crontab/
-Source:         
http://www.cpan.org/authors/id/S/SC/SCOTTW/%{cpan_name}-%{version}.tar.gz
+Source0:        
http://www.cpan.org/authors/id/S/SC/SCOTTW/%{cpan_name}-%{version}.tar.gz
+Source1:        cpanspec.yml
 BuildArch:      noarch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -51,7 +52,7 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
-find . -type f -print0 | xargs -0 chmod 644
+find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor

++++++ Config-Crontab-1.40.tar.gz -> Config-Crontab-1.41.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Config-Crontab-1.40/Changes 
new/Config-Crontab-1.41/Changes
--- old/Config-Crontab-1.40/Changes     2014-01-09 05:50:36.000000000 +0100
+++ new/Config-Crontab-1.41/Changes     2016-05-27 03:01:01.000000000 +0200
@@ -1,5 +1,13 @@
 Revision history for Perl extension Config::Crontab.
 
+Release 1.41
+----------------------------
+commit 5ab21cf7b653915d792e76935606bf24462a11fb
+Author: Scott Wiersdorf <[email protected]>
+Date:   Thu May 26 19:00:26 2016 -0600
+
+    RT #114744
+
 Release 1.40
 ----------------------------
 revision 1.8
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Config-Crontab-1.40/Crontab.pm 
new/Config-Crontab-1.41/Crontab.pm
--- old/Config-Crontab-1.40/Crontab.pm  2014-01-09 05:50:04.000000000 +0100
+++ new/Config-Crontab-1.41/Crontab.pm  2016-05-27 02:59:47.000000000 +0200
@@ -3,7 +3,7 @@
 ##
 ## Scott Wiersdorf
 ## Created: Fri May  9 14:03:01 MDT 2003
-## Updated: $Id: Crontab.pm,v 1.8 2014/01/09 04:50:04 scott Exp $
+## Updated: $Id$
 ##
 ## Config::Crontab - a crontab(5) parser
 ##
@@ -39,7 +39,7 @@
 use Fcntl;
 use File::Temp qw(:POSIX);
 
-our $VERSION = '1.40';
+our $VERSION = '1.41';
 
 sub init {
     my $self = shift;
@@ -938,7 +938,7 @@
 
 =head2 read([%args])
 
-Parses the crontab file specifed by B<file>. If B<file> is not set
+Parses the crontab file specified by B<file>. If B<file> is not set
 (or is false in some way), the crontab will be read from a pipe to
 C<crontab -l>. B<read> optionally takes the same arguments as B<new>
 and B<init> in C<key =E<gt> value> style lists.
@@ -1036,7 +1036,7 @@
 Multiple criteria may be specified. If no criteria are specified,
 B<select> returns a list of all lines in the B<Crontab> object.
 
-Field names should be preceeded by a hyphen (though without a hyphen
+Field names should be preceded by a hyphen (though without a hyphen
 is acceptable too).
 
 The following criteria and associated values are available:
@@ -1715,7 +1715,7 @@
 Returns a list of B<Event>, B<Env>, or B<Comment> objects from a block
 that match the specified criteria. Multiple criteria may be specified.
 
-Field names should be preceeded by a hyphen (though without a hyphen
+Field names should be preceded by a hyphen (though without a hyphen
 is acceptable too; we use hyphens to avoid the need for quoting keys
 and avoid potential bareword collisions).
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Config-Crontab-1.40/META.json 
new/Config-Crontab-1.41/META.json
--- old/Config-Crontab-1.40/META.json   2014-01-09 05:51:46.000000000 +0100
+++ new/Config-Crontab-1.41/META.json   2016-05-27 03:05:29.000000000 +0200
@@ -4,7 +4,7 @@
       "Scott Wiersdorf <[email protected]>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter 
version 2.120630",
+   "generated_by" : "ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter 
version 2.133380",
    "license" : [
       "unknown"
    ],
@@ -35,5 +35,5 @@
       }
    },
    "release_status" : "stable",
-   "version" : "1.40"
+   "version" : "1.41"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Config-Crontab-1.40/META.yml 
new/Config-Crontab-1.41/META.yml
--- old/Config-Crontab-1.40/META.yml    2014-01-09 05:51:46.000000000 +0100
+++ new/Config-Crontab-1.41/META.yml    2016-05-27 03:05:28.000000000 +0200
@@ -7,7 +7,7 @@
 configure_requires:
   ExtUtils::MakeMaker: 0
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter 
version 2.120630'
+generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 
2.133380'
 license: unknown
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -18,4 +18,4 @@
     - t
     - inc
 requires: {}
-version: 1.40
+version: 1.41
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Config-Crontab-1.40/README 
new/Config-Crontab-1.41/README
--- old/Config-Crontab-1.40/README      2014-01-09 05:50:44.000000000 +0100
+++ new/Config-Crontab-1.41/README      2016-05-27 03:01:13.000000000 +0200
@@ -1,4 +1,4 @@
-Config/Crontab version 1.40
+Config/Crontab version 1.41
 ===========================
 
 Config::Crontab reads and writes (and pretty-prints) your crontab(5)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Config-Crontab-1.40/example/crontab.cgi 
new/Config-Crontab-1.41/example/crontab.cgi
--- old/Config-Crontab-1.40/example/crontab.cgi 2007-07-18 21:53:31.000000000 
+0200
+++ new/Config-Crontab-1.41/example/crontab.cgi 2016-01-03 04:58:35.000000000 
+0100
@@ -3,7 +3,7 @@
 
 ## Scott Wiersdorf
 ## Created: Mon May 19 11:55:06 MDT 2003
-## $Id: crontab.cgi,v 1.1 2007/07/18 19:53:31 scott Exp $
+## $Id$
 
 ## a simple CGI for crontab editing
 ##

++++++ cpanspec.yml ++++++
---
#description_paragraphs: 3
#description: |-
#  override description from CPAN
#summary: override summary from CPAN
#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_build: |-
# rm unused.files
#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

Reply via email to