commit perl-Email-Date-Format for openSUSE:Factory

2019-06-12 Thread root
Hello community,

here is the log from the commit of package perl-Email-Date-Format for 
openSUSE:Factory checked in at 2019-06-12 13:17:06

Comparing /work/SRC/openSUSE:Factory/perl-Email-Date-Format (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Email-Date-Format.new.4811 (New)


Package is "perl-Email-Date-Format"

Wed Jun 12 13:17:06 2019 rev:24 rq:709098 version:1.005

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Email-Date-Format/perl-Email-Date-Format.changes
2015-04-15 16:25:14.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Email-Date-Format.new.4811/perl-Email-Date-Format.changes
  2019-06-12 13:17:10.556635685 +0200
@@ -1,0 +2,12 @@
+Tue Jun 11 09:08:36 UTC 2019 - Pedro Monreal Gonzalez 

+
+- Updated spec file with spec-cleaner
+- Added required dependencies
+- Capitalize summary
+
+---
+Sun Jun  9 12:40:54 UTC 2019 - Bernhard Wiedemann 
+
+- Add fix-time-local.patch to call Time::Local correctly
+
+---

New:

  fix-time-local.patch



Other differences:
--
++ perl-Email-Date-Format.spec ++
--- /var/tmp/diff_new_pack.0Yt2QH/_old  2019-06-12 13:17:10.912635311 +0200
+++ /var/tmp/diff_new_pack.0Yt2QH/_new  2019-06-12 13:17:10.916635307 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Email-Date-Format
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -12,24 +12,30 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
+%define cpan_name Email-Date-Format
 Name:   perl-Email-Date-Format
 Version:1.005
 Release:0
-%define cpan_name Email-Date-Format
-Summary:produce RFC 2822 date strings
-License:Artistic-1.0 or GPL-1.0+
+Summary:Produce RFC 2822 date strings
+License:Artistic-1.0 OR GPL-1.0-or-later
 Group:  Development/Libraries/Perl
-Url:http://search.cpan.org/dist/Email-Date-Format/
-Source: 
http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
-BuildArch:  noarch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+URL:https://metacpan.org/release/%{cpan_name}
+Source: 
https://cpan.metacpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
+Patch0: fix-time-local.patch
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(Test::More) >= 0.96
+BuildRequires:  perl(Test::Pod) >= 1.41
+Requires:   perl(Exporter) >= 5.57
+Requires:   perl(Time::Local)
+Requires:   perl(strict)
+Requires:   perl(warnings)
+BuildArch:  noarch
 %{perl_requires}
 
 %description
@@ -39,13 +45,14 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
+%patch0 -p1
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-%{__make} %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
 
 %check
-%{__make} test
+make %{?_smp_mflags} test
 
 %install
 %perl_make_install
@@ -54,6 +61,7 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes LICENSE README
+%license LICENSE
+%doc Changes README
 
 %changelog

++ fix-time-local.patch ++
Author: Bernhard M. Wiedemann 
Date: 2018-02-23

https://rt.cpan.org/Public/Bug/Display.html?id=124530 

Index: Email-Date-Format-1.005/lib/Email/Date/Format.pm
===
--- Email-Date-Format-1.005.orig/lib/Email/Date/Format.pm
+++ Email-Date-Format-1.005/lib/Email/Date/Format.pm
@@ -54,8 +54,12 @@ use Time::Local ();
 sub _tz_diff {
   my ($time) = @_;
 
-  my $diff  =   Time::Local::timegm(localtime $time)
-  - Time::Local::timegm(gmtime$time);
+  my @localtime = localtime $time;
+  my @gmtime= gmtime$time;
+  $localtime[5] += 1900;
+  $gmtime[5]+= 1900;
+  my $diff  =   Time::Local::timegm(@localtime)
+  - Time::Local::timegm(@gmtime);
 
   my $direc = $diff < 0 ? '-' : '+';
   $diff  = abs $diff;
Index: Email-Date-Format-1.005/t/basic.t
===
--- Email-Date-Format-1.005.orig/t/basic.t
+++ Email-Date-Format-1.005/t/basic.t
@@ -1,4 +1,4 @@
-use Test::More tests => 3;
+use Test::More tests => 7;
 use strict;
 $^W = 1;
 
@@ -12,7 +12,10 @@ is(
 
 my $birthday = 11

commit perl-Email-Date-Format for openSUSE:Factory

2015-04-15 Thread h_root
Hello community,

here is the log from the commit of package perl-Email-Date-Format for 
openSUSE:Factory checked in at 2015-04-15 16:25:13

Comparing /work/SRC/openSUSE:Factory/perl-Email-Date-Format (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Email-Date-Format.new (New)


Package is "perl-Email-Date-Format"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Email-Date-Format/perl-Email-Date-Format.changes
2013-08-13 10:18:50.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Email-Date-Format.new/perl-Email-Date-Format.changes
   2015-04-15 16:25:14.0 +0200
@@ -1,0 +2,9 @@
+Tue Apr 14 20:14:55 UTC 2015 - co...@suse.com
+
+- updated to 1.005
+   see /usr/share/doc/packages/perl-Email-Date-Format/Changes
+
+  1.005 2014-10-13 08:32:03-04:00 America/New_York
+fix documentation of export names (thanks, Thomas Klausner!)
+
+---

Old:

  Email-Date-Format-1.004.tar.gz

New:

  Email-Date-Format-1.005.tar.gz



Other differences:
--
++ perl-Email-Date-Format.spec ++
--- /var/tmp/diff_new_pack.ihr18J/_old  2015-04-15 16:25:14.0 +0200
+++ /var/tmp/diff_new_pack.ihr18J/_new  2015-04-15 16:25:14.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Email-Date-Format
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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,10 +17,10 @@
 
 
 Name:   perl-Email-Date-Format
-Version:1.004
+Version:1.005
 Release:0
 %define cpan_name Email-Date-Format
-Summary:Produce RFC 2822 date strings
+Summary:produce RFC 2822 date strings
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Email-Date-Format/
@@ -29,9 +29,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Capture::Tiny)
 BuildRequires:  perl(Test::More) >= 0.96
-#BuildRequires: perl(Email::Date::Format)
 %{perl_requires}
 
 %description

++ Email-Date-Format-1.004.tar.gz -> Email-Date-Format-1.005.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Email-Date-Format-1.004/Changes 
new/Email-Date-Format-1.005/Changes
--- old/Email-Date-Format-1.004/Changes 2013-08-05 14:09:17.0 +0200
+++ new/Email-Date-Format-1.005/Changes 2014-10-13 14:32:05.0 +0200
@@ -1,5 +1,8 @@
 Revision history for Email-Date-Format
 
+1.005 2014-10-13 08:32:03-04:00 America/New_York
+  fix documentation of export names (thanks, Thomas Klausner!)
+
 1.004 2013-08-05 08:09:14 America/New_York
   fix repo and bugtracker link (stupid case sensitivity!)
   (thanks, Slaven Rezic!)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Email-Date-Format-1.004/LICENSE 
new/Email-Date-Format-1.005/LICENSE
--- old/Email-Date-Format-1.004/LICENSE 2013-08-05 14:09:17.0 +0200
+++ new/Email-Date-Format-1.005/LICENSE 2014-10-13 14:32:05.0 +0200
@@ -22,7 +22,7 @@
  Version 1, February 1989
 
  Copyright (C) 1989 Free Software Foundation, Inc.
- 51 Franklin St, Suite 500, Boston, MA  02110-1335  USA
+ 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
  Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowed.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Email-Date-Format-1.004/MANIFEST 
new/Email-Date-Format-1.005/MANIFEST
--- old/Email-Date-Format-1.004/MANIFEST2013-08-05 14:09:17.0 
+0200
+++ new/Email-Date-Format-1.005/MANIFEST2014-10-13 14:32:05.0 
+0200
@@ -1,3 +1,4 @@
+# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v5.020.
 Changes
 LICENSE
 MANIFEST
@@ -7,7 +8,6 @@
 README
 dist.ini
 lib/Email/Date/Format.pm
-t/00-compile.t
 t/000-report-versions-tiny.t
 t/basic.t
 xt/release/changes_has_content.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Email-Date-Format-1.004/META.json 
new/Email-Date-Format-1.005/META.json
--- old/Email-Date-Format-1.004/META.json   2013-08-05 14:09:17.0 
+0200
+++ new/Email-Date-Format-1.005/META.json   2014-10-13 14:32:05.0 
+0200
@@ -5,7 +5,7 @@
   "Ricardo SIGNES "
],
"dynamic_config" : 0,
-   "generated_by" : "Dist::Zilla version 4.3

commit perl-Email-Date-Format for openSUSE:Factory

2013-08-13 Thread h_root
Hello community,

here is the log from the commit of package perl-Email-Date-Format for 
openSUSE:Factory checked in at 2013-08-13 10:18:48

Comparing /work/SRC/openSUSE:Factory/perl-Email-Date-Format (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Email-Date-Format.new (New)


Package is "perl-Email-Date-Format"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Email-Date-Format/perl-Email-Date-Format.changes
2013-08-05 20:49:41.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Email-Date-Format.new/perl-Email-Date-Format.changes
   2013-08-13 10:18:50.0 +0200
@@ -1,0 +2,7 @@
+Tue Aug  6 17:49:05 UTC 2013 - co...@suse.com
+
+- updated to 1.004
+  fix repo and bugtracker link (stupid case sensitivity!)
+  (thanks, Slaven Rezic!)
+
+---

Old:

  Email-Date-Format-1.003.tar.gz

New:

  Email-Date-Format-1.004.tar.gz



Other differences:
--
++ perl-Email-Date-Format.spec ++
--- /var/tmp/diff_new_pack.Gr0EAt/_old  2013-08-13 10:18:51.0 +0200
+++ /var/tmp/diff_new_pack.Gr0EAt/_new  2013-08-13 10:18:51.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Email-Date-Format
-Version:1.003
+Version:1.004
 Release:0
 %define cpan_name Email-Date-Format
 Summary:Produce RFC 2822 date strings

++ Email-Date-Format-1.003.tar.gz -> Email-Date-Format-1.004.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Email-Date-Format-1.003/Changes 
new/Email-Date-Format-1.004/Changes
--- old/Email-Date-Format-1.003/Changes 2013-08-03 00:05:51.0 +0200
+++ new/Email-Date-Format-1.004/Changes 2013-08-05 14:09:17.0 +0200
@@ -1,5 +1,9 @@
 Revision history for Email-Date-Format
 
+1.004 2013-08-05 08:09:14 America/New_York
+  fix repo and bugtracker link (stupid case sensitivity!)
+  (thanks, Slaven Rezic!)
+
 1.003 2013-08-02 18:05:49 America/New_York
   new repo, new bugtracker
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Email-Date-Format-1.003/META.json 
new/Email-Date-Format-1.004/META.json
--- old/Email-Date-Format-1.003/META.json   2013-08-03 00:05:51.0 
+0200
+++ new/Email-Date-Format-1.004/META.json   2013-08-05 14:09:17.0 
+0200
@@ -46,16 +46,16 @@
"release_status" : "stable",
"resources" : {
   "bugtracker" : {
- "web" : "https://github.com/rjbs/email-date-format/issues";
+ "web" : "https://github.com/rjbs/Email-Date-Format/issues";
   },
-  "homepage" : "https://github.com/rjbs/email-date-format";,
+  "homepage" : "https://github.com/rjbs/Email-Date-Format";,
   "repository" : {
  "type" : "git",
- "url" : "https://github.com/rjbs/email-date-format.git";,
- "web" : "https://github.com/rjbs/email-date-format";
+ "url" : "https://github.com/rjbs/Email-Date-Format.git";,
+ "web" : "https://github.com/rjbs/Email-Date-Format";
   }
},
-   "version" : "1.003",
+   "version" : "1.004",
"x_Dist_Zilla" : {
   "perl" : {
  "version" : "5.019002"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Email-Date-Format-1.003/META.yml 
new/Email-Date-Format-1.004/META.yml
--- old/Email-Date-Format-1.003/META.yml2013-08-03 00:05:51.0 
+0200
+++ new/Email-Date-Format-1.004/META.yml2013-08-05 14:09:17.0 
+0200
@@ -23,10 +23,10 @@
   strict: 0
   warnings: 0
 resources:
-  bugtracker: https://github.com/rjbs/email-date-format/issues
-  homepage: https://github.com/rjbs/email-date-format
-  repository: https://github.com/rjbs/email-date-format.git
-version: 1.003
+  bugtracker: https://github.com/rjbs/Email-Date-Format/issues
+  homepage: https://github.com/rjbs/Email-Date-Format
+  repository: https://github.com/rjbs/Email-Date-Format.git
+version: 1.004
 x_Dist_Zilla:
   perl:
 version: 5.019002
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Email-Date-Format-1.003/Makefile.PL 
new/Email-Date-Format-1.004/Makefile.PL
--- old/Email-Date-Format-1.003/Makefile.PL 2013-08-03 00:05:51.0 
+0200
+++ new/Email-Date-Format-1.004/Makefile.PL 2013-08-05 14:09:17.0 
+0200
@@ -30,7 +30,7 @@
 "Test::More" => "0.96",
 "blib" => "0"
   },
-  "VERSION" => "1.003",
+  "VERSION" => "1.004",
   "test" => {
 "TESTS" => "t/*.t"
   }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Email-Date-Format-1.003/README 
new/Email-Date-Format-1.004/README
--- old/Email-Date-Format-1.003/README  201

commit perl-Email-Date-Format for openSUSE:Factory

2013-08-05 Thread h_root
Hello community,

here is the log from the commit of package perl-Email-Date-Format for 
openSUSE:Factory checked in at 2013-08-05 20:49:40

Comparing /work/SRC/openSUSE:Factory/perl-Email-Date-Format (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Email-Date-Format.new (New)


Package is "perl-Email-Date-Format"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Email-Date-Format/perl-Email-Date-Format.changes
2011-11-21 12:39:30.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Email-Date-Format.new/perl-Email-Date-Format.changes
   2013-08-05 20:49:41.0 +0200
@@ -1,0 +2,6 @@
+Sun Aug  4 15:29:14 UTC 2013 - co...@suse.com
+
+- updated to 1.003
+  new repo, new bugtracker
+
+---

Old:

  Email-Date-Format-1.002.tar.gz

New:

  Email-Date-Format-1.003.tar.gz



Other differences:
--
++ perl-Email-Date-Format.spec ++
--- /var/tmp/diff_new_pack.dZxaQi/_old  2013-08-05 20:49:41.0 +0200
+++ /var/tmp/diff_new_pack.dZxaQi/_new  2013-08-05 20:49:41.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Email-Date-Format
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,43 +15,30 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-%bcond_with pod
 
 Name:   perl-Email-Date-Format
+Version:1.003
+Release:0
 %define cpan_name Email-Date-Format
 Summary:Produce RFC 2822 date strings
-Version:1.002
-Release:12
-License:GPL-1.0+ or Artistic-1.0
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Email-Date-Format/
-#Source: 
http://www.cpan.org/authors/id/R/RJ/RJBS/Email-Date-Format-1.002.tar.gz
-Source: %{cpan_name}-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
-%if %{with pod}
-BuildRequires:  perl(Test::Pod) >= 1.14
-BuildRequires:  perl(Test::Pod::Coverage) >= 1.08
-%endif
-BuildRequires:  perl(Test::More) >= 0.47
-BuildRequires:  perl(Time::Local)
-Requires:   perl(Time::Local)
+BuildRequires:  perl(Capture::Tiny)
+BuildRequires:  perl(Test::More) >= 0.96
+#BuildRequires: perl(Email::Date::Format)
+%{perl_requires}
 
 %description
 This module provides a simple means for generating an RFC 2822 compliant
 datetime string. (In case you care, they're not RFC 822 dates, because they
 use a four digit year, which is not allowed in RFC 822.)
 
-Authors:
-
- Ricardo SIGNES, <_rjbs@cpan.org_>.
- Adapted from Email::Date, by Casey West.
-
 %prep
 %setup -q -n %{cpan_name}-%{version}
 
@@ -64,24 +51,11 @@
 
 %install
 %perl_make_install
-### since 11.4 perl_process_packlist
-### removes .packlist, perllocal.pod files
-%if 0%{?suse_version} > 1130
 %perl_process_packlist
-%else
-# do not perl_process_packlist
-# remove .packlist file
-%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
-# remove perllocal.pod file
-%{__rm} -f $RPM_BUILD_ROOT%perl_archlib/perllocal.pod
-%endif
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf $RPM_BUILD_ROOT
-
 %files -f %{name}.files
-%defattr(-,root,root,-)
+%defattr(-,root,root,755)
 %doc Changes LICENSE README
 
 %changelog

++ Email-Date-Format-1.002.tar.gz -> Email-Date-Format-1.003.tar.gz ++
 1739 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit perl-Email-Date-Format for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package perl-Email-Date-Format for 
openSUSE:Factory checked in at 2011-12-06 18:40:47

Comparing /work/SRC/openSUSE:Factory/perl-Email-Date-Format (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Email-Date-Format.new (New)


Package is "perl-Email-Date-Format", Maintainer is "vci...@suse.com"

Changes:




Other differences:
--
++ perl-Email-Date-Format.spec ++
--- /var/tmp/diff_new_pack.LxqCry/_old  2011-12-06 19:07:57.0 +0100
+++ /var/tmp/diff_new_pack.LxqCry/_new  2011-12-06 19:07:57.0 +0100
@@ -24,7 +24,7 @@
 Summary:Produce RFC 2822 date strings
 Version:1.002
 Release:12
-License:GPL+ or Artistic
+License:GPL-1.0+ or Artistic-1.0
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Email-Date-Format/
 #Source: 
http://www.cpan.org/authors/id/R/RJ/RJBS/Email-Date-Format-1.002.tar.gz

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit perl-Email-Date-Format for openSUSE:Factory

2011-11-21 Thread h_root
Hello community,

here is the log from the commit of package perl-Email-Date-Format for 
openSUSE:Factory checked in at 2011-11-21 12:39:29

Comparing /work/SRC/openSUSE:Factory/perl-Email-Date-Format (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Email-Date-Format.new (New)


Package is "perl-Email-Date-Format", Maintainer is "vci...@suse.com"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Email-Date-Format/perl-Email-Date-Format.changes
2011-09-23 12:36:55.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Email-Date-Format.new/perl-Email-Date-Format.changes
   2011-11-21 12:39:30.0 +0100
@@ -1,0 +2,5 @@
+Fri Nov 18 11:09:11 UTC 2011 - co...@suse.com
+
+- use original .tar.gz
+
+---

Old:

  Email-Date-Format-1.002.tar.bz2

New:

  Email-Date-Format-1.002.tar.gz



Other differences:
--
++ perl-Email-Date-Format.spec ++
--- /var/tmp/diff_new_pack.8Y7mV4/_old  2011-11-21 12:39:34.0 +0100
+++ /var/tmp/diff_new_pack.8Y7mV4/_new  2011-11-21 12:39:34.0 +0100
@@ -28,7 +28,7 @@
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Email-Date-Format/
 #Source: 
http://www.cpan.org/authors/id/R/RJ/RJBS/Email-Date-Format-1.002.tar.gz
-Source: %{cpan_name}-%{version}.tar.bz2
+Source: %{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org