Commit graph

2573 commits

Author SHA1 Message Date
wen
58e23d3cb5 Update to 1.54
Upstream changes:
1.54   2020-12-04

- This release contains a lot of small documentation revisions, both to
  formatting and content.


1.53   2020-11-08

- Added a $dt->rfc3339 method. Based on discussion in GH #109 by worthmine.
2021-05-29 10:25:21 +00:00
wen
b940a188bf Update to 0.08
Add LICENSE

Upstream changes:
0.08  2020-12-18

 - (Update) Add 'strict' option to require timezone in time components (PR
   #3 from @timgimyee).
 - (Update) Updated Makefile.PL with new metadata.
2021-05-29 10:15:42 +00:00
wen
3919360030 Update to 1.79
Upstream changes:
1.79     2021-05-02

* Fix too-strict type checking for time zones. This module now uses the same
  check as DateTime itself, which allows for things that don't subclass
  DateTime::TimeZone as long as they provide the same API. Reported by
  E. Choroba. GH #30.
2021-05-29 10:08:44 +00:00
wen
ffea49d196 Update to 0.0701
Upstream changes:
0.0701  2021-05-22

- Fix versioning, reindex

0.07    2021-05-21

- if microseconds are set on provided DateTime object to time_format,
  use them. Fixes RT #136549
2021-05-29 01:32:22 +00:00
wiz
6eae1297d5 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
adam
3d8e86bbc5 py-cftime: updated to 1.5.0
version 1.5.0 (release tag v1.5.0.rel)
======================================
* clean-up deprecated calendar specific subclasses.
* added string formatting support to `cftime.datetime` objects
  (via `cftime.datetime.__format__`).
* add support for astronomical year numbering (including year zero) for
  real-world calendars using 'has_year_zero' cftime.datetime kwarg.
  Default is False for 'real-world' calendars ('julian', 'gregorian'/'standard',
  'proleptic_gregorian'). Ignored for idealized calendars like '360_day
  (they always have year zero).
* add "change_calendar" cftime.datetime method to switch to another
  'real-world' calendar. Enable comparison of cftime.datetime instances
  with different 'real-world' calendars (using the new change_calendar method)
* remove legacy `utime` class, and legacy `JulianDayFromDate` and
  `DateFromJulianDay` functions (replaced by `cftime.datetime.toordinal`
  and `cftime.datetime.fromordinal`).
* Change ValueError to TypeError in __sub__
2021-05-21 08:37:49 +00:00
adam
bd2b933ffa py-aniso8601: updated to 9.0.1
aniso8601 9.0.1
===============

Added
-----
* Development requirements handled by :code:`extras_require` (install with :code:`pip install -e .[dev]`)
* Pre-commit hooks, managed with `pre-commit <https://pre-commit.com/>`_ (install with :code:`pre-commit install`)
* Add :code:`readthedocs.yaml` to make configuration explicit

Changed
-------
* Code formatted with `Black <https://black.readthedocs.io/en/stable/index.html>`_
* Imports sorted with `isort <https://pycqa.github.io/isort/>`_
* Following `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_ for this and future CHANGELOG entries
* Removed python-dateutil from :code:`BuildRequires` in specfile as they are no longer required since calendar level duration building was split to a separate project (6.0.0)
* Heading level of top of CHANGELOG

Fixed
-----
* Parsing prescribed durations with only hour and second time components (see `PR 14 <https://bitbucket.org/nielsenb/aniso8601/pull-requests/14>`_)
* Parsing prescribed durations with only year and day components

aniso8601 9.0.0
===============

Changes
-------
* Add support for concise interval format (see `27 <https://bitbucket.org/nielsenb/aniso8601/issues/27/support-for-short-syntax-for-intervals>`_)
* Add explicit bounds of [000, 366] to day of year component :code:`_parse_ordinal_date`, this adds the same limits to dates of the format YYYYDDD or YYYY-DDD when using :code:`parse_date`
* Add :code:`range_check_date`, :code:`range_check_time`, :code:`range_check_duration`, :code:`range_check_repeating_interval`, and :code:`range_check_timezone` range checking class methods to :code:`BaseTimeBuilder` there are no datetime or non-repeating interval check function as they are made of already checked parts
* :code:`PythonTimeBuilder` now calls the appropriate range check functions using the :code:`range_check_date`, :code:`range_check_time`, :code:`range_check_duration`, :code:`range_check_repeating_interval`, and :code:`range_check_timezone` methods defined in :code:`aniso8601.builders`
* Add :code:`range_check_duration` to :code:`PythonTimeBuilder` which calls :code:`BaseTimeBuilder.range_check_duration` and performs additional checks against maximum timedelta size
* Add :code:`range_check_interval` to :code:`PythonTimeBuilder` which handles building concise dates and performs additional checks against maximum timedelta size
* Add :code:`get_datetime_resolution` which behaves like :code:`get_time_resolution` but accepts a ISO 8601 date time as an argument, return value is a :code:`TimeResolution`
* Add :code:`exceptions.RangeCheckError` as a parent type of all failures in the range check methods, it descends from :code:`ValueError`
* Add :code:`get_duration_resolution` which behaves like other resolution helpers, return value is a :code:`DurationResolution`
* Add :code:`get_interval_resolution` which behaves like other resolution helpers, return value is a :code:`IntervalResolution`
* Negative durations now fail at the parse step and simply raise :code:`ISOFormatError`, calling a :code:`PythonTimeBuilder.build_duration` directly with a negative duration component will yield an :code:`ISOFormatError` in the range check
* Raise :code:`DayOutOfBoundsError` if calendar day exceeds number of days in calendar month
* Raise :code:`DayOutOfBoundsError` if ordinal day exceeds number of days in calendar year (366 now raises :code:`DayOutOfBoundsError` in non-leap year)
* Raise :code:`ISOFormatError` when date or time string contains extra whitespace
* Raise :code:`ISOFormatError` on multiple fraction separators (comma, full-stop) in a time string
* Raise :code:`ISOFormatError` when duration contains multiple duration designators ("P"), or time designators ("T")
* :code:`PythonTimeBuilder.build_duration` raises :code:`YearOutOfBoundsError`, :code:`MonthOutOfBoundsError`, :code:`WeekOutOfBoundsError`, :code:`HoursOutOfBoundsError`, :code:`MinutesOutOfBoundsError`, or :code:`SecondsOutOfBoundsError` when a given duration component would result in a :code:`timedelta` that would exceed the maximum size
* Raise :code:`ISOFormatError` if number of delimiters is not exactly 1 in :code:`parse_interval`
* Raise :code:`ISOFormatError` when either part of an interval string before of after the delimiter is empty
* Raise :code:`YearOutOfBoundsError` in :code:`PythonTimeBuilder.build_interval` if an interval with a duration would exceed the maximum or minimum years for Python date objects
* Simplify :code:`parse_date`, :code:`build_date` will now be called with explicit :code:`None` arguments instead of date components not in the parsed string excluded from the call
* Change :code:`get_date_resolution` to call :code:`parse_date` and return the resolution based on the smallest parsed component
* Simplify :code:`parse_time`, :code:`build_time` will now be called with explicit :code:`None` arguments instead of date components not in the parsed string excluded from the call
* Change :code:`get_time_resolution` to call :code:`parse_time` and return the resolution based on the smallest parsed component
* :code:`TupleBuilder` now builds :code:`DateTuple`, :code:`TimeTuple`, :code:`DatetimeTuple`, :code:`DurationTuple`, :code:`IntervalTuple`, :code:`RepeatingIntervalTuple` and :code:`TimezoneTuple` namedtuples
* Simplify :code:`parse_duration`, :code:`build_duration` will now be called with explicit :code:`None` arguments when components of a prescribed duration are not present in the ISO 8601 duration string instead of being excluded from the call
* Remove unused :code:`decimalfraction.find_separator`
* Remove unused :code:`PythonTimeBuilder._split_to_microseconds`
* Removed :code:`NegativeDurationError`

Deprecation
-----------
* **Update on Python 2 support**: Python 2 support was slated to be removed in 7.0.0 but was not, it will remain until a test fails on Python 2 but not Python 3
* Using Setuptools to run tests (:code:`python setup.py tests`) will be removed in the next major or minor version (either 9.1.0, 10.0.0)
2021-05-19 11:08:08 +00:00
nia
4728e705ad plan: substitute path to X11R6 in Makefile 2021-05-14 11:40:39 +00:00
nia
5f3caa976d php-mrbs: needs pax 2021-05-14 11:10:07 +00:00
nia
327b0e9c13 gnome-pomodoro: needs sqlite3 2021-05-14 11:07:14 +00:00
adam
5cfacc33af py-cftime: updated to 1.4.1
version 1.4.1 (release tag v1.4.1.rel)
======================================
 * Restore use of calendar-specific sub-classes in `cftime.num2date`,
   `cftime.datetime.__add__`, and `cftime.datetime.__sub__`.  The use of them
   will be removed in a later release.
 * add 'fromordinal' static method to create a cftime.datetime instance
   from a julian day ordinal and calendar (inverse of 'toordinal').

version 1.4.0 (release tag v1.4.0.rel)
======================================
 * `cftime.date2num` will now always return an array of integers, if the units
   and times allow.  Previously this would only be true if the units were
   'microseconds'.  In other circumstances, as before, `cftime.date2num`
   will return an array of floats.
 * Rewrite of julian day/calendar functions (_IntJulianDayToCalendar and
   _IntJulianDayFromCalendar) to remove GPL'ed code.  cftime license
   changed to MIT (to be consistent with netcdf4-python).
 * Added datetime.toordinal() (returns julian day, kwarg 'fractional'
   can be used to include fractional day).
 * cftime.datetime no longer uses calendar-specific sub-classes.

version 1.3.1 (release tag v1.3.1rel)
=====================================
 * fix for issue 211 bug in masked array handling in date2num)
 * switch from travis/appveyor to github actions for CI/CD.
 * switch to cython language_level=3 (no more support for python 2).
 * add __init__.py to test dir so pytest coverage works again. Add Coveralls
   step to github actions workflow to upload coverage data to coveralls.io
 * move package under 'src' directory so cftime can be imported
   from install dir

version 1.3.0 (release tag v1.3.0rel)
=====================================
 * zero pad years in strtime
 * have cftime.datetime constuctor create 'calendar-aware' instances (default is
   'standard' calendar, if calendar='' or None the instance is not calendar aware and some
   methods, like dayofwk, dayofyr, __add__ and __sub__, will not work).
   The calendar specific sub-classes are now deprecated, but remain for now
   as stubs that just instantiate the base class and override __repr__.
 * update regex in _cpdef _parse_date so reference years with more than four
   digits can be handled.
 * Change default calendar in cftime.date2num from 'standard' to None
   (calendar associated with first input datetime object is used).
 * add `cftime.datetime.tzinfo=None` for compatibility with python datetime
  .

version 1.2.1 (release tag v1.2.1rel)
=====================================
 * num2date uses 'proleptic_gregorian' scheme when basedate is post-Gregorian but date is pre-Gregorian
  .
 * fix 1.2.0 regression (date2num no longer works with numpy scalar array inputs).
 * Fix for issue 187 (have date2num round to the nearest second when within 1
   microsecond).
 * Fix for issue 189 (leap years calculated incorrectly for negative years in
   proleptic_gregorian calendar).

version 1.2.0 (release tag v1.2.0rel)
=====================================
 * Return the default values of dayofwk and dayofyr when calendar
   is ''.
 * fix treatment of masked arrays in num2date and date2num.
   Also make sure masked arrays are output from num2date/date2num if
   masked arrays are input.
 * Where possible, use timedelta arithmetic to decode times exactly within
   num2date.
 * Make taking the difference between two cftime datetimes to produce a
   timedelta exact to the microsecond; depending on the units encoding,
   this enables date2num to be exact as well.
 * utime.date2num/utime.num2date now just call module level functions.
   JulianDayFromDate/DateFromJulianDay no longer used internally.
2021-05-07 18:16:51 +00:00
pho
941f7b7819 time: +hs-time-manager 2021-05-05 15:15:11 +00:00
pho
08db1d45ce Import time-manager-0.0.0
Scalable timer functions provided by a timer manager.
2021-05-05 15:14:41 +00:00
pho
520824c0bf time: +hs-unix-time 2021-05-05 12:23:30 +00:00
pho
4e9776c76e Import unix-time-0.4.7
Fast parser/formatter/utilities for Unix time
2021-05-05 12:22:59 +00:00
pho
4d74cf7192 *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
nia
ab8a1fb4af *: Use the tools framework for gdbus-codegen 2021-05-02 11:06:12 +00:00
pho
385f9e98d2 Remove files/Setup.hs: mk/haskll.mk can now automatically handle that 2021-05-01 14:27:42 +00:00
ryoon
98358906cb projectlibre: Update to 1.9.3
* Use bash for projectlibre.sh.

Changelog:
Not available.
2021-04-27 14:14:26 +00:00
wiz
2154536447 rclock: remove dead download link 2021-04-25 05:59:36 +00:00
pin
6f77342f0d time/heliocron: reset maintainer 2021-04-24 19:46:03 +00:00
pho
7ed13f496e Update to timezone-olson-0.2.0
No change logs are provided by the upstream.
2021-04-24 17:38:08 +00:00
pho
487dc6bfc3 Update PLIST 2021-04-24 17:32:41 +00:00
wiz
c1375b624e *: remove dead download links 2021-04-24 11:37:29 +00:00
pho
ce2397ba4b Update PLIST 2021-04-24 06:23:41 +00:00
pho
6e71b1a710 Update to clock-0.8.2
No change logs are provided by the upstream.
2021-04-24 05:17:54 +00:00
pho
01bbee4eb9 Update PLIST 2021-04-23 10:16:06 +00:00
pho
db24f2f38b Update to time-compat-1.9.5
1.9.5
* Support time-1.11.1
  - Add NFData CalandarDiffDays instance

1.9.4
* Support time-1.11
  - Data.Time.Calendar.Month
  - Data.Time.Calendar.Quarter
  - Pattern synonyms
  - parseTimeMultipleM is not backported
  - Month is missing ParseTime instance
  - Compat extras:
    * Add Ix, Enum, NFData instances to Month, Quarter, QuarterOfYear,
      CalendarDiffTime and DayOfWeek.

1.9.3
* Include pastMidnight and sinceMidnight aliases (backported from time-1.10)
* Support time-1.10
2021-04-23 06:34:48 +00:00
adam
da0a125726 revbump for boost-libs 2021-04-21 13:24:06 +00:00
adam
9d0e79c401 revbump for textproc/icu 2021-04-21 11:40:12 +00:00
nia
64eec01854 libical: update to 3.0.10
Version 3.0.10 is a patch release.
This release is binary and source compatible with version 3.0.0.
Note that the libical-glib library is considered unstable; therefore not binary compatible with previous releases

ReleaseNotes:

    Fix building -DSTATIC_ONLY=True with Ninja
    Fix generating wrong recurrence rules (#478)
    Fix a bug computing transitions in tzfiles
    Fix reading TZif files to use TZ string in the footer as the last (non-terminating) transitions
    Fix reading TZif files to use more RRULEs and/or RDATEs whevever possible
    Built-in timezones updated to tzdata2021a
2021-04-19 11:04:52 +00:00
ryoon
633bec58e9 *: Recursive revbump from devel/nss 2021-04-15 11:23:03 +00:00
nia
f90a4c0480 gnome-calendar: set PYTHON_FOR_BUILD_ONLY 2021-04-12 13:04:01 +00:00
tnn
e17f24258d propagate python incompatibilities 2021-04-09 15:42:35 +00:00
wiz
14c07cf0ce *: bump PKGREVISION for nss linking fix 2021-04-09 06:54:56 +00:00
wiz
eefa882861 gnome-calendar: update to 40.0.
This builds with current glib2.

Major changes in 40.0:
* Updated translations

Major changes in 40.rc:
* Updated translations
* Minor cleanups

Major changes in 40.beta:
* Updated translations
* Use HdyViewSwitcher in the main window
* Fix the color of new calendars

Major changes in 40.alpha:
* Updated translations
* Depend on libhandy-1
* Port to the newer libgweather api
* Improve the event editor
2021-04-08 09:09:19 +00:00
markd
9f17ade459 kde applications release: update to 20.12.3
10 months worth of updates.
2021-04-07 12:28:14 +00:00
pin
0f7d341dcd Add quest-tui 2021-03-31 20:28:04 +00:00
pin
046430029a time/quest-tui: import package
Simple todo list terminal user interface.
2021-03-31 20:26:41 +00:00
markd
ba58b08846 kf5: KDE Frameworks update to 5.80.0
10 months of patches/updates.
2021-03-30 10:58:21 +00:00
wen
ba9a0eaa82 Update to 1.78
Update DEPENDS

Upstream changes:
1.78     2020-12-15

* Fix tests for new failure caused by locale data changes in DateTime::Locale
  1.29. Reported by cthulhu8zombie. GH #28.

* Added a warning about using locale-specific patterns. Some of these patterns
  can change quite a bit as the locale data is updated, so using them for
  parsing does not produce stable results across time. This is what caused the
  test failures that this release fixes.
2021-03-28 00:17:53 +00:00
wen
f9f07a990a Update to 1.31
Upstream changes:
1.31     2020-12-22

- The docs for each locale now show examples of its strftime patterns as well.


1.30     2020-12-15

- The previous release included some locale data for locales that had been
  deleted from CLDR 38.0.0.


1.29     2020-12-14

- Rebuilt all locale data with the data from CLDR 38.0.0 and glibc 2.32.
2021-03-28 00:13:28 +00:00
wen
e57351c828 Update to 0.16014
Upstream changes:
0.16014 2021-03-15T13:37:16Z
    - Fix handling for fractional seconds (#17)
    - Accept concatenated dates (#18)
2021-03-27 23:56:50 +00:00
wen
8ba806de1d Update to 1.12
Upstream changes:
1.12  2021-03-19  <schubiger@cpan.org>

 - Merged development version to stable.

1.11_03  2021-03-13  <schubiger@cpan.org>

 - Refactor extracting duration.

 - Don't try to trim the extract string twice.

 - Amend documentation of ::Utils.

1.11_02  2020-10-16  <schubiger@cpan.org>

 - Introduce utility function trim().

1.11_01  2020-10-03  <schubiger@cpan.org>

 - Assert that error() returns '' on success.
2021-03-27 23:52:15 +00:00
wen
026d21ad5e Update to 0.104
Upstream changes:
0.104           2021-03-15      T. R. Wyant
    Add rt.cpan.org back to bug reporting methods. Long live RT!

    Correct GitHub ticket link.

    Get prerequisites up to snuff and add xt/author/prereq.t to ensure
    they stay that way.
2021-03-27 23:44:41 +00:00
nia
8d435a3db0 libical: Update to 3.0.9
Version 3.0.9 is a patch release.
This release is binary and source compatible with version 3.0.0.
Note that the libical-glib library is considered unstable; therefore not binary compatible with previous releases

Release Notes:

- Add support for empty parameters, e.g. CN=""
- Accept VTIMEZONE with more than one X- property
- Several fixes for recurrences containing BYWEEKNO
- icalrecurrencetype_from_string() will reject any RRULE that contains a rule-part that occurs more than once
- Improve thread safety
- Fix compiled-in path for the built-in timezone data
- Fix reading TZif files with empty v1 data (use v2+ whenever possible)
- Add backwards compatibility for previous TZIDs
- Built-in timezones updated to tzdata2020d
- Fix build with newer libicu
- Fix cross-compile support in libical-glib
2021-03-19 10:45:31 +00:00
wen
02e9febb95 Update to 0.16
Upstream changes:
0.16     2021-02-14

- Add support for YYYYMMDDThhmm[+-]hhmm and YYYY-MM-DDThh:mm+hh:mm
  formats. Based on GH #13 from lbjw.
2021-03-09 12:36:02 +00:00
wen
351321668c Update to 0.103
Upstream changes:
0.103           2021-01-10      T. R. Wyant
    Add Travis CI testing.

    Use GitHub as bug tracker. R.I.P. rt.cpan.org.
2021-03-09 12:32:20 +00:00
wen
31ab8c9e90 Update to 2.0.1
Upstream changes:
[2.0.1] 2021-01-14
Added

    Details of bugtracker
2021-03-09 06:49:27 +00:00
jaapb
397a3e0079 Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00