Upstream changes:
0.3800 2016-05-23
- doc patch, by Lucas Kanashiro.
0.3700 2016-05-17
- end() / max() and start() / min() are aliases to the same method in all classes.
Added docs and tests. Reported by Vincent Berger.
Upstream changes:
0.3600 2015-11-11
- move t/22intersects.t to DT::Event::Recurrence module
0.3500 2015-11-10
- [rt.cpan.org #108633] Recurrent event does not intersect indefinite future,
test contributed by Brett Watson.
- documentation - intersects() returns 0 for false, and 'undef' for
undecidable.
Problems found with mismatching existing digests for:
distfiles/asclock-classic-1.0.tar.gz
distfiles/asclock-gtk-2.1.10beta.tar.gz
distfiles/asclock-xlib-2.0.11.tar.gz
distfiles/emiclock-2.0.2.tar.gz
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
- documentation and packaging fixes - by David Steinbrunner.
- version number using 4 digits - requested by David Marshall.
0.33 2013-09-15
- bugfix in SpanSet->grep. Reported by Andreas Isberg
Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.
Upstream changes:
0.32 2013-08-27
- ignore duration signal in DateTime::Span->from_datetime_and_duration()
and use the 'end'/'start' parameters as a cue for the time direction,
suggested by David Pottage
- more tests of intersections with open/closed ended spans
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package
Like last time, where this caused no complaints.
Changes from previous:
0.31
- more tests of intersections with open/closed ended spans
0.30 2011-04-11
- new test file t/21from_recurrence.t
Contributed by Olivier Mengue
0.29 2011-04-01
- new method is_empty_set - bug #50750
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.
The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.
sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!
- Updating package for p5 module DateTime::Set from 0.27 to 0.28
- Setting license to ${PERL5_LICENSE} according to module POD
Upstream changes:
0.28 2009-07-19
- optimized DateTime::Set->as_list().
This works around a segfault reported by Nils Grunwald.
Approved by MAINTAINER.
Pkgsrc changes:
- set MAINTAINER to pkgsrc-users@ on (previous) MAINTAINER's
request
Upstream changes:
0.27 2009-04-02
- fixed DateTime::Spanset duration() method.
Reported by Anton Berezin <tobez@tobez.org>
0.26 2008-12-25
- fixed DateTime::Spanset current() and set_time_zone() methods.
Report and tests by Elliot Shank.
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0.
The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=...").
0.25 2005-10-05
- t/15time_zone.t does it's own time zone "add_duration" handling
0.24 2005-10-03
- _recurrence.pm warned when the recurrence didn't have occurrences before
a given start date. Reported by Mark D. Anderson.
0.23 2005-10-03
- _recurrence.pm died when the recurrence didn't have occurrences before
a given start date. Reported by Mark D. Anderson.
0.22 2005-05-06
- DateTime::Set 0.21 dies when as_list is asked to produce a list from
outside the range of the set. Patch contributed by Stephen Gowing.
0.21 2005-04-06
- no hard limit in count() and as_list(); removed the warnings from the docs.
0.20 2005-02-28
- changed tests to use en_US instead of pt_BR (which changes every year)
by Dave Rolsky.
- optimized SpanSet methods for special cases:
start_set()
end_set()
contains( $dt )
intersects( $dt )
- added an example to count(), by David Nicol.
- added a note about how the result of min()/max() is just a copy of the
actual set boundary. Reported by Ron Hill.
Collection.
DateTime::Set is a module for date/time sets. It can be used to handle two
different types of sets.
The first is a fixed set of predefined datetime objects. For example, if we
wanted to create a set of dates containing the birthdays of people in our
family.
The second type of set that it can handle is one based on the idea of a
recurrence, such as "every Wednesday", or "noon on the 15th day of every
month". This type of set can have fixed starting and ending datetimes, but
neither is required. So our "every Wednesday set" could be "every Wednesday
from the beginning of time until the end of time", or "every Wednesday after
2003-03-05 until the end of time", or "every Wednesday between 2003-03-05 and
2004-01-07".