Hello community,

here is the log from the commit of package perl-DateTime-Format-Mail for 
openSUSE:Factory checked in at 2019-05-06 21:16:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-DateTime-Format-Mail (Old)
 and      /work/SRC/openSUSE:Factory/.perl-DateTime-Format-Mail.new.5148 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-DateTime-Format-Mail"

Mon May  6 21:16:42 2019 rev:1 rq:696903 version:0.403

Changes:
--------
New Changes file:

--- /dev/null   2019-05-02 15:18:01.516169518 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-DateTime-Format-Mail.new.5148/perl-DateTime-Format-Mail.changes
    2019-05-06 21:16:45.916996894 +0200
@@ -0,0 +1,81 @@
+-------------------------------------------------------------------
+Mon Jul  4 12:29:25 UTC 2016 - co...@suse.com
+
+- updated to 0.403
+   see /usr/share/doc/packages/perl-DateTime-Format-Mail/Changes
+
+  0.403   2016-06-27
+  
+  - Use DateTime->set_locale instead of ->set to set the locale. Using ->set 
may
+    actually change the local time unintentionally. Patch by Dave Rolsky. 
GitHub
+    PR #2.
+
+-------------------------------------------------------------------
+Tue Jul  7 08:52:33 UTC 2015 - co...@suse.com
+
+- updated to 0.402
+   see /usr/share/doc/packages/perl-DateTime-Format-Mail/Changes
+
+  0.402   2015-07-06
+  
+  - included META.JSON (closes RT #105633, by ETHER)
+  
+  - added contributors list (and put back SPOON as the main author)
+
+-------------------------------------------------------------------
+Thu Apr 16 20:55:30 UTC 2015 - co...@suse.com
+
+- updated to 0.401
+   see /usr/share/doc/packages/perl-DateTime-Format-Mail/Changes
+
+  0.401   2014-05-03
+  
+  - Fix the tests to accomodate the new 1-digit format for days of month
+    before the tenth. Thanks to Dagfinn Ilmari Mannsåker for the patch.
+  
+  - add some more sample dates to t/sample_dates
+    and run one test per sample date in t/sample.t
+  
+  0.400   2014-04-13
+  
+  - New maintainer - Philippe Bruhat (BooK)
+  
+  - Now depends on DateTime 0.18. RT #74580.
+  
+  - Moved POD tests to the release stage.
+  
+  - format_datetime() now uses 1-digit numbers for day of month < 10.
+    Dates with unrecognized timezones lead to the creation of a DateTime
+    object with a floating timezone.
+    UTC is now formatted as +0000, floating is formatted as -0000.
+    RT #94556.
+  
+  - Now packaged using Dist::Zilla. Moved back to three-digit version numbers.
+
+-------------------------------------------------------------------
+Sat May 11 22:16:54 UTC 2013 - l...@linux-schulserver.de
+
+- specfile cleanup
+- require Module::Metadata for build: fixes build on SLE 11
+
+-------------------------------------------------------------------
+Mon Dec 20 12:24:51 UTC 2010 - vci...@novell.com
+
+- separated perl_requires and the rest required 
+
+-------------------------------------------------------------------
+Thu Dec 16 13:37:07 UTC 2010 - vci...@novell.com
+
+- switch to  %perl_requires macro
+
+-------------------------------------------------------------------
+Mon Nov 29 18:00:13 UTC 2010 - co...@novell.com
+
+- called spec2changelog
+
+-------------------------------------------------------------------
+Sun Jun  8 00:00:00 UTC 2008 - gerrit.be...@gmx.de
+
+- first release 0.3001
+
+

New:
----
  DateTime-Format-Mail-0.403.tar.gz
  cpanspec.yml
  perl-DateTime-Format-Mail.changes
  perl-DateTime-Format-Mail.spec

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

Other differences:
------------------
++++++ perl-DateTime-Format-Mail.spec ++++++
#
# spec file for package perl-DateTime-Format-Mail
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# 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/
#


Name:           perl-DateTime-Format-Mail
Version:        0.403
Release:        0
%define cpan_name DateTime-Format-Mail
Summary:        Convert between DateTime and RFC2822/822 formats
License:        Artistic-1.0 or GPL-1.0+
Group:          Development/Libraries/Perl
Url:            http://search.cpan.org/dist/DateTime-Format-Mail/
Source0:        
http://www.cpan.org/authors/id/B/BO/BOOK/%{cpan_name}-%{version}.tar.gz
Source1:        cpanspec.yml
BuildArch:      noarch
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
BuildRequires:  perl
BuildRequires:  perl-macros
BuildRequires:  perl(DateTime) >= 1.04
BuildRequires:  perl(Params::Validate)
Requires:       perl(DateTime) >= 1.04
Requires:       perl(Params::Validate)
%{perl_requires}

%description
RFCs 2822 and 822 specify date formats to be used by email. This module
parses and emits such dates.

RFC2822 (April 2001) introduces a slightly different format of date than
that used by RFC822 (August 1982). The main correction is that the
preferred format is more limited, and thus easier to parse
programmatically.

Despite the ease of generating and parsing perfectly valid RFC822 and
RFC2822 people still get it wrong. So this module provides four things for
those handling mail dates:

* 1

A strict parser that will only accept RFC2822 dates, so you can see where
you're right.

* 2

A strict formatter, so you can generate the right stuff to begin with.

* 3

A _loose_ parser, so you can take the misbegotten output from other
programs and turn it into something useful. This includes various minor
errors as well as some somewhat more bizarre mistakes. The file
_t/sample_dates_ in this module's distribution should give you an idea of
what's valid, while _t/invalid.t_ should do the same for what's not. Those
regarded as invalid are just a bit *too* strange to allow.

* 4

Interoperation with the rest of the DateTime suite. These are a collection
of modules to handle dates in a modern and accurate fashion. In particular,
they make it trivial to parse, manipulate and then format dates. Shifting
timezones is a doddle, and converting between formats is a cinch.

As a future direction, I'm contemplating an even stricter parser that will
only accept dates with no obsolete elements.

%prep
%setup -q -n %{cpan_name}-%{version}

%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}

%check
%{__make} test

%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist

%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes CREDITS LICENSE README

%changelog
++++++ 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

Reply via email to