pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/time/khal khal: update to 0.10.1.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/ca290fe08dc8
branches:  trunk
changeset: 321836:ca290fe08dc8
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Tue Apr 02 08:45:14 2019 +0000

description:
khal: update to 0.10.1.

0.10.1
======
2019-03-30

* FIX error with the new color priority system and `discover` calendar type
* FIX search results in ikhal are ordered, same as in `khal search`

0.10.0
======
2019-03-25

* only dateutil < 2.7 is supported

* NEW DEPENDENCY added click_log  >= 0.2.0
* NEW DEPENDENCY for Python 3.4: typing
* UPDATED DEPENDENCY icalendar>=4.03
* DROPPED support for Python 3.3
* vdirsyncer is still a test dependency (and always has been)

* FIX ordinal numbers in birthday entries (before, all number would end on `th`)
* FIX `search` will no longer break on overwritten events with a master event
* FIX when using short dates, khal infers that you meant next year, when date
  is before today
* FIX Check for multi_uid .ics files in vdirs and don't import those events
  (All .ics files in vdirs should only contain VEVENTS with the same UID.)

* CHANGE only searched configuration file paths are now
  $XDG_CONFIG_HOME/khal/config and $XDG_CONFIG_HOME/khal/khal.conf (deprecated)
* CHANGE removed default command
* CHANGE default date/time formats to be the system's locale's formats
* CHANGE ``--verbose`` flag to ``--verbosity``, allowing finer granularity
* CHANGE `search` will now print one line for every different event in a
  recurrence set, that is one line for the master event, and one line for every
  different overwritten event
* CHANGE khal learned to read .ics files with nonsenscial TZOFFSETs > 24h and
  prints a warning
* CHANGE better error message for a specific kind of invalid config file

* NEW khal learned the ``--logfile/-l LOGFILE`` flag which allows logging to a
  file
* NEW format can now print the duration of an event with `{duration}`
* NEW configuration option: [view]monthdisplay = firstday|firstfullweek,
  if set to 'firstday', khal displays the month name as soon as any day
  in the week is within the new month. If set to 'firstfullweek', khal
  displays the month name only if the first day of the week is within
  the new month.

* NEW ikhal learned to show log messages in the header and in a new log pane,
  access with default keybinding `L`

* NEW python 3.7 is now officially supported.

* NEW configuration option [[per_calendar]]priority = int (default 10). If
  multiple calendars events are on the same day, the day will be colored with
  the color of the calendar with highest priority. If multiple calendars have
  the same highest priority, it falls back to the previous system.

* NEW format can now print the organizer of the event with '(organizer)'

diffstat:

 time/khal/Makefile |   5 +++--
 time/khal/PLIST    |  11 ++++-------
 time/khal/distinfo |  10 +++++-----
 3 files changed, 12 insertions(+), 14 deletions(-)

diffs (63 lines):

diff -r ab4084422b1a -r ca290fe08dc8 time/khal/Makefile
--- a/time/khal/Makefile        Tue Apr 02 08:40:55 2019 +0000
+++ b/time/khal/Makefile        Tue Apr 02 08:45:14 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.26 2018/12/01 16:42:08 wiz Exp $
+# $NetBSD: Makefile,v 1.27 2019/04/02 08:45:14 wiz Exp $
 
-DISTNAME=              khal-0.9.10
+DISTNAME=              khal-0.10.1
 CATEGORIES=            time net
 MASTER_SITES=          ${MASTER_SITE_PYPI:=k/khal/}
 
@@ -11,6 +11,7 @@
 
 DEPENDS+=              ${PYPKGPREFIX}-atomicwrites-[0-9]*:../../devel/py-atomicwrites
 DEPENDS+=              ${PYPKGPREFIX}-click>=3.2:../../devel/py-click
+DEPENDS+=              ${PYPKGPREFIX}-click-log-[0-9]*:../../devel/py-click-log
 DEPENDS+=              ${PYPKGPREFIX}-configobj-[0-9]*:../../devel/py-configobj
 DEPENDS+=              ${PYPKGPREFIX}-dateutil-[0-9]*:../../time/py-dateutil
 DEPENDS+=              ${PYPKGPREFIX}-icalendar>=3.9.2:../../time/py-icalendar
diff -r ab4084422b1a -r ca290fe08dc8 time/khal/PLIST
--- a/time/khal/PLIST   Tue Apr 02 08:40:55 2019 +0000
+++ b/time/khal/PLIST   Tue Apr 02 08:45:14 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2018/04/14 20:32:06 wiz Exp $
+@comment $NetBSD: PLIST,v 1.11 2019/04/02 08:45:14 wiz Exp $
 bin/ikhal
 bin/khal
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
@@ -44,15 +44,12 @@
 ${PYSITELIB}/khal/khalendar/khalendar.py
 ${PYSITELIB}/khal/khalendar/khalendar.pyc
 ${PYSITELIB}/khal/khalendar/khalendar.pyo
-${PYSITELIB}/khal/khalendar/utils.py
-${PYSITELIB}/khal/khalendar/utils.pyc
-${PYSITELIB}/khal/khalendar/utils.pyo
 ${PYSITELIB}/khal/khalendar/vdir.py
 ${PYSITELIB}/khal/khalendar/vdir.pyc
 ${PYSITELIB}/khal/khalendar/vdir.pyo
-${PYSITELIB}/khal/log.py
-${PYSITELIB}/khal/log.pyc
-${PYSITELIB}/khal/log.pyo
+${PYSITELIB}/khal/parse_datetime.py
+${PYSITELIB}/khal/parse_datetime.pyc
+${PYSITELIB}/khal/parse_datetime.pyo
 ${PYSITELIB}/khal/settings/__init__.py
 ${PYSITELIB}/khal/settings/__init__.pyc
 ${PYSITELIB}/khal/settings/__init__.pyo
diff -r ab4084422b1a -r ca290fe08dc8 time/khal/distinfo
--- a/time/khal/distinfo        Tue Apr 02 08:40:55 2019 +0000
+++ b/time/khal/distinfo        Tue Apr 02 08:45:14 2019 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.18 2018/12/01 16:42:08 wiz Exp $
+$NetBSD: distinfo,v 1.19 2019/04/02 08:45:14 wiz Exp $
 
-SHA1 (khal-0.9.10.tar.gz) = aa9947682342ac5065b52aa8a156091b8c595efc
-RMD160 (khal-0.9.10.tar.gz) = de919dd0fb1c88dc1ba5276ea1b233b13f59f804
-SHA512 (khal-0.9.10.tar.gz) = 7618e34e35726670721dfd12e1434d5ffe4221ffad5d751ef26dc26edab4334c847582bbd4f50cfb93f37a07397ccc467e240adaf3dcf1d9446e0ca6faff7721
-Size (khal-0.9.10.tar.gz) = 171132 bytes
+SHA1 (khal-0.10.1.tar.gz) = 1cbcea029d72ba9367b734a05306e6d7dc2b8e20
+RMD160 (khal-0.10.1.tar.gz) = dc79bb130964ad841115cdce05bbe5054f819ed6
+SHA512 (khal-0.10.1.tar.gz) = 5b81a60099c201fa112ab17740b73edb17b29efa1548086766d57d9d595451e7d779aad5a2ce7a2afc78050116782ff6696c4bd284021a5e12c87fe361d15e47
+Size (khal-0.10.1.tar.gz) = 173636 bytes



Home | Main Index | Thread Index | Old Index