SHA256
1
0
forked from pool/dateutils

Accepting request 125398 from home:rudi_m

- bump version v0.2.1, this is a bug fix and feature release.
  * The dadd tool now supports mass-adding durations (from stdin).
  * The ddiff tool is now time zone aware.
  * A new tool dround is added to round dates or times or
    date-times to the next occurrence of what's given as
    round-spec.
  * Bug fixes:
    - issue 7: ddiff without arguments does not segfault
    - issue 8: dadd copes with huge summands
  * See info page examples and/or README.

  * The distinction between binaries for date, time and date-time
    processing is cleared up by a unified set of tools, prefixed
    with `d'.
  * Furthermore, all tools now fully cope with dates, times and
    date-times.
  * Virtual timezones have been added (use `GPS' or `TAI').

OBS-URL: https://build.opensuse.org/request/show/125398
OBS-URL: https://build.opensuse.org/package/show/utilities/dateutils?expand=0&rev=16
This commit is contained in:
Ruediger Meier 2012-06-19 09:03:50 +00:00 committed by Git OBS Bridge
parent 6c6db6c41c
commit b6a1696386
4 changed files with 28 additions and 10 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8b6bf89360a78c178c15fc585cf7d0601b6a5c278dea2c34ce58214dbaf516be
size 268464

3
dateutils-0.2.1.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:72f9aa98e502d6bf38f0cd11ab2b7517476c5d210668a700de73ae8f0b363ee2
size 281196

View File

@ -1,9 +1,24 @@
-------------------------------------------------------------------
Tue Jun 19 08:32:30 UTC 2012 - sweet_f_a@gmx.de
- bump version v0.2.1, this is a bug fix and feature release.
* The dadd tool now supports mass-adding durations (from stdin).
* The ddiff tool is now time zone aware.
* A new tool dround is added to round dates or times or
date-times to the next occurrence of what's given as
round-spec.
* Bug fixes:
- issue 7: ddiff without arguments does not segfault
- issue 8: dadd copes with huge summands
* See info page examples and/or README.
-------------------------------------------------------------------
Tue Apr 10 11:32:52 UTC 2012 - sweet_f_a@gmx.de
- bump version 0.2.0, this is a feature release.
* The distinction between binaries for date, time and date-time processing
is cleared up by a unified set of tools, prefixed with `d'.
* The distinction between binaries for date, time and date-time
processing is cleared up by a unified set of tools, prefixed
with `d'.
Thus:
dadd + tadd -> dadd
dconv + tconv + dtconv -> dconv
@ -11,8 +26,9 @@ Tue Apr 10 11:32:52 UTC 2012 - sweet_f_a@gmx.de
dgrep + tgrep -> dgrep
dseq + tseq -> dseq
dtest + ttest -> dtest
* Furthermore, all tools now fully cope with dates, times and date-times.
Virtual timezones have been added (use `GPS' or `TAI').
* Furthermore, all tools now fully cope with dates, times and
date-times.
* Virtual timezones have been added (use `GPS' or `TAI').
* See info page examples and/or README.
-------------------------------------------------------------------

View File

@ -16,15 +16,15 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define xversion 0.2.0
%define xversion 0.2.1
Name: dateutils
Version: 0.2.0
Version: 0.2.1
Release: 0
Summary: Nifty command line date and time utilities
License: BSD-3-Clause
Group: Productivity/Text/Utilities
Url: https://github.com/hroptatyr/dateutils/
URL: https://github.com/hroptatyr/dateutils/
Source: %{name}-%{version}.tar.xz
BuildRequires: pkgconfig
BuildRequires: xz
@ -85,6 +85,7 @@ rm -rf %{buildroot}
%{_bindir}/dconv
%{_bindir}/ddiff
%{_bindir}/dgrep
%{_bindir}/dround
%{_bindir}/dseq
%{_bindir}/dtest
%{_bindir}/strptime
@ -93,6 +94,7 @@ rm -rf %{buildroot}
%doc %{_mandir}/man1/dconv.1*
%doc %{_mandir}/man1/ddiff.1*
%doc %{_mandir}/man1/dgrep.1*
%doc %{_mandir}/man1/dround.1*
%doc %{_mandir}/man1/dseq.1*
%doc %{_mandir}/man1/dtest.1*
%doc %{_mandir}/man1/strptime.1*