Accepting request 581906 from devel:languages:perl:autoupdate
automatic update OBS-URL: https://build.opensuse.org/request/show/581906 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Date-Manip?expand=0&rev=72
This commit is contained in:
parent
46d843eec3
commit
ef7e4efa99
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:7e20d6ffa0f8e32454098b4d397b8036764e90f171156375a81cc7e55a4f434f
|
|
||||||
size 1824792
|
|
3
Date-Manip-6.70.tar.gz
Normal file
3
Date-Manip-6.70.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:39458c602915b9eba4c1760ed42184ab0326fadd40ab66f086bc27b0ae279364
|
||||||
|
size 1819230
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 2 06:16:53 UTC 2018 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 6.70
|
||||||
|
see /usr/share/doc/packages/perl-Date-Manip/Changes
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Sep 2 05:24:28 UTC 2017 - coolo@suse.com
|
Sat Sep 2 05:24:28 UTC 2017 - coolo@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Date-Manip
|
# spec file for package perl-Date-Manip
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,11 +17,11 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: perl-Date-Manip
|
Name: perl-Date-Manip
|
||||||
Version: 6.60
|
Version: 6.70
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name Date-Manip
|
%define cpan_name Date-Manip
|
||||||
Summary: Date manipulation routines
|
Summary: Date manipulation routines
|
||||||
License: Artistic-1.0 or GPL-1.0+
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/Date-Manip/
|
Url: http://search.cpan.org/dist/Date-Manip/
|
||||||
Source0: https://cpan.metacpan.org/authors/id/S/SB/SBECK/%{cpan_name}-%{version}.tar.gz
|
Source0: https://cpan.metacpan.org/authors/id/S/SB/SBECK/%{cpan_name}-%{version}.tar.gz
|
||||||
@ -46,12 +46,6 @@ to do ANY desired date/time operation easily. Many other modules exist
|
|||||||
which may do a subset of these operations quicker or more efficiently, but
|
which may do a subset of these operations quicker or more efficiently, but
|
||||||
no other module can do all of the operations available in Date::Manip.
|
no other module can do all of the operations available in Date::Manip.
|
||||||
|
|
||||||
Since many other date/time modules exist, some of which may do the specific
|
|
||||||
operation(s) you need faster, be sure to read Date::Manip::Misc/"SHOULD I
|
|
||||||
USE DATE::MANIP" before deciding which of the Date and Time modules from
|
|
||||||
CPAN is for you. However, if you want one module to do it all, Date::Manip
|
|
||||||
is the one to use.
|
|
||||||
|
|
||||||
Date::Manip has functionality to work with several fundamental types of
|
Date::Manip has functionality to work with several fundamental types of
|
||||||
data.
|
data.
|
||||||
|
|
||||||
@ -59,18 +53,21 @@ data.
|
|||||||
|
|
||||||
The word date is used extensively here and is somewhat misleading. In
|
The word date is used extensively here and is somewhat misleading. In
|
||||||
Date::Manip, a date consists of three pieces of information: a calendar
|
Date::Manip, a date consists of three pieces of information: a calendar
|
||||||
date, a time of day, and time zone information. Calendar dates and times
|
date (year, month, day), a time of day (hour, minute, second), and time
|
||||||
are fully handled. Time zones are handled as well, but depending on how you
|
zone information. Calendar dates and times are fully handled. Time zones
|
||||||
use Date::Manip, there may be some limitations as discussed below.
|
are handled as well, but depending on how you use Date::Manip, there may be
|
||||||
|
some limitations as discussed below.
|
||||||
|
|
||||||
* *delta*
|
* *delta*
|
||||||
|
|
||||||
A delta is an amount of time (i.e. the amount of time between two different
|
A delta is an amount of time (i.e. the amount of time between two different
|
||||||
dates). A delta refers only to an amount of time. It includes no
|
dates). Think of it as the duration of an event or the amount of time
|
||||||
information about a starting or ending date/time. Most people will think of
|
between two dates.
|
||||||
a delta as an amount of time, but the term 'time' is already used so much
|
|
||||||
in this module that I didn't want to use it here in order to avoid
|
A delta refers only to an amount of time. It includes no information about
|
||||||
confusion.
|
a starting or ending date/time. Most people will think of a delta as an
|
||||||
|
amount of time, but the term 'time' is already used so much in this module
|
||||||
|
that I didn't want to use it here in order to avoid confusion.
|
||||||
|
|
||||||
* *recurrence*
|
* *recurrence*
|
||||||
|
|
||||||
@ -98,8 +95,8 @@ to the Unix date command.
|
|||||||
|
|
||||||
* ***
|
* ***
|
||||||
|
|
||||||
Determine the amount of time between two dates, or add an amount of time to
|
Determine the amount of time between two dates, or add an amount of time (a
|
||||||
a date to get a second date.
|
delta) to a date to get a second date.
|
||||||
|
|
||||||
* ***
|
* ***
|
||||||
|
|
||||||
@ -108,6 +105,10 @@ names, 12/10/95 referring to October rather than December, etc.).
|
|||||||
|
|
||||||
* ***
|
* ***
|
||||||
|
|
||||||
|
Convert dates from one timezone to another.
|
||||||
|
|
||||||
|
* ***
|
||||||
|
|
||||||
To find a list of dates where a recurring event happens.
|
To find a list of dates where a recurring event happens.
|
||||||
|
|
||||||
Each of these tasks is trivial (one or two lines at most) with this
|
Each of these tasks is trivial (one or two lines at most) with this
|
||||||
|
Loading…
x
Reference in New Issue
Block a user