undertime (3.2.0)
[PTS] [DDPO]
COMMITS: VCS has seen 11 commits since the 3.2.0 tag
- Git: https://gitlab.com/anarcat/undertime.git
-
- Branch: main
- Path: debian/changelog
- Repo size: 2035712
- Browser: https://gitlab.com/anarcat/undertime
- Last scan: 2023-06-05 05:00:16+00
- Next scan: 2023-06-06 05:54:00+00
- Debian changelog in Git:
undertime (3.2.0) unstable; urgency=medium
* lowercase Local and Equivalent in main output
* workaround weird autodiscovery bug in setuptools preventing local
builds
* do not bundle LICENSE and CHANGELOG in long description
* support parsing dates with arrow
* fallback to parsedatetime if dateparser fails
* optimisation: split date parsing in stubs, delay imports
* report the timezone database version in selftest
-- Antoine Beaupré <anarcat@debian.org> Thu, 02 Jun 2022 14:40:04 -0400
- This branch is 11 commits ahead of tag 3.2.0
- Git log:
commit 24f31d9f99ed319be59c3df9c937252375b822d4
Merge: 866115f 0e7d9d5
Author: Antoine Beaupré <anarcat+gitlab@anarc.at>
Date: Mon May 15 14:33:38 2023 +0000
Merge branch 'zsh-_time_zone-issue' into 'main'
Use modified _time_zone in zsh completion function
See merge request anarcat/undertime!21
commit 866115fb894d451429b11d55a55845d42244ec58
Author: Antoine Beaupré <anarcat@debian.org>
Date: Mon Apr 3 15:05:45 2023 -0400
remove "requested" string in output
This leads to a more natural output... before:
UTC time requested: 2023-04-05 18:00:00+00:00
local time requested: 2023-04-05 14:00:00-04:00
equivalent to: 11:00 US/Pacific, 14:00 US/Eastern, 18:00 UTC
after:
UTC time: 2023-04-05 18:00:00+00:00
local time: 2023-04-05 14:00:00-04:00
equivalent to: 11:00 US/Pacific, 14:00 US/Eastern, 18:00 UTC
commit 837b35f06197b0ce8e0753c8ccdef61e943f335c
Author: Jakub Wilk <jwilk@jwilk.net>
Date: Tue Mar 28 16:07:07 2023 +0200
fix man page reference formatting
Typeset section numbers in normal font, as recommended in man-pages(7),
subsection "Formatting conventions (general)".
commit 8bcb68ce577df1f9c969e4ca47ad138961f9e9b3
Author: Antoine Beaupré <anarcat@debian.org>
Date: Thu Sep 1 11:09:35 2022 -0400
fix error in copyright file
This was probably generated by decopy or an error of mine, not
sure. Somehow it got past FTP-masters usually acute eyes.
commit 162814d251ce390a43991e31f7b2c5b5ab28836a
Author: Vipul Kumar <finn02@disroot.org>
Date: Sun Jun 28 02:03:20 2020 +0000
[Enh] change date format of man page
This commit contains following enhancements:
- Also include month in man page date.
- Since `-l` and `-V` option don't require any additional argument, we
can merge them into single sentence.
commit 2d14d4e22f21c119398613f72de4aaaf150397b9
Author: Antoine Beaupré <anarcat@debian.org>
Date: Thu Jun 23 17:05:53 2022 -0400
notice an interesting commandline completion tool
commit fa51787dc7181a097c9eebb20d7f090bb3eda5f4
Author: Antoine Beaupré <anarcat@debian.org>
Date: Sat Jun 4 15:22:42 2022 -0400
mention scooby
commit 67e701ae86e088f8380467fc32d3aa9b5a9bf4aa
Author: Antoine Beaupré <anarcat@debian.org>
Date: Thu Jun 2 15:21:45 2022 -0400
add missing space to fix linters and CI, oops
commit 0e7d9d500f0dcb119b5ca58435bd8b7085689a56
Author: Jordan Russell <jordan.likes.curry@gmail.com>
Date: Wed Apr 20 10:57:21 2022 -0700
User _time_zone in _undertime
Use zsh's builtin completion for undertimes in the zsh completion
file. The upstream _time_zone[0] has been patched to only allow zonefile
filenames to be completed with this function. It is now acceptable to
use in this context.
[0] https://sourceforge.net/p/zsh/code/ci/f5b2d65337c81ef3b58f376d2128a6ab8f1ccaf4/tree/Completion/Unix/Type/_time_zone
commit 1d384ca497dcdb1eff570e908d4744e680f37a04
Author: Jordan Russell <jordan.likes.curry@gmail.com>
Date: Tue Mar 22 13:29:27 2022 -0700
Fix file glob for _undertime_zone
_zoneinfo_dirs is a list of /prefixes/ and as such globbing "only
timezones that begin with a capital letter" doesn't work on the
prefixes. Instead use the compadd argument -F ARRAY to specify a list
of ignore patterns. In this case the ignore patter is ``[a-z]*''.
commit 83013b2237e1eb4eca0d7390dd84dc50cd9ad5e6
Author: Jordan Russell <jordan.likes.curry@gmail.com>
Date: Tue Mar 22 12:09:40 2022 -0700
Use modified _time_zone in zsh completion function
Remove the call to python to retrieve pytz timezones use a modified
version of the zsh builtin _time_zone function to use locally stored
timezone data. This commit addresses issue #20