Hello community,

here is the log from the commit of package dateutils for openSUSE:Factory 
checked in at 2017-10-29 20:24:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/dateutils (Old)
 and      /work/SRC/openSUSE:Factory/.dateutils.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "dateutils"

Sun Oct 29 20:24:51 2017 rev:19 rq:537354 version:0.4.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/dateutils/dateutils.changes      2017-04-12 
18:02:45.308159706 +0200
+++ /work/SRC/openSUSE:Factory/.dateutils.new/dateutils.changes 2017-10-29 
20:25:21.577172384 +0100
@@ -1,0 +2,15 @@
+Wed Oct 18 06:37:06 UTC 2017 - [email protected]
+
+- bump version 0.4.2
+  * Features:
+    - allow %- specifiers to turn off padding (as GNU date does)
+    - support matlab day numbers, as mdn or matlab
+  * Bugfixes:
+    - fix build issue on FBSD 11
+    - allow zones to transition at INT_MAX (mapped to never)
+- lint spec file
+- move from bitbucket to github link
+- remove patch which is upstream now:
+  0001-fix-when-printing-zones-transitioning-at-INT_MAX-in-.patch
+
+-------------------------------------------------------------------

Old:
----
  0001-fix-when-printing-zones-transitioning-at-INT_MAX-in-.patch
  dateutils-0.4.1.tar.xz

New:
----
  dateutils-0.4.2.tar.asc
  dateutils-0.4.2.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ dateutils.spec ++++++
--- /var/tmp/diff_new_pack.wlJf9e/_old  2017-10-29 20:25:22.109152996 +0100
+++ /var/tmp/diff_new_pack.wlJf9e/_new  2017-10-29 20:25:22.113152851 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package dateutils
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,10 +16,7 @@
 #
 
 
-%define xversion 0.4.1
-
 %define have_octave 0
-
 %if 0%{?suse_version} >= 1220 && 0%{?suse_version} != 1315
 %define have_octave 1
 %ifarch aarch64
@@ -33,31 +30,27 @@
 %endif
 %endif
 %endif
-
 %if 0%{?fedora_version} >= 19
 %define have_octave 1
 %endif
-
 Name:           dateutils
-Version:        0.4.1
+Version:        0.4.2
 Release:        0
 Summary:        Nifty command line date and time utilities
 License:        BSD-3-Clause
 Group:          Productivity/Text/Utilities
 Url:            https://github.com/hroptatyr/dateutils/
-Source:         
https://bitbucket.org/hroptatyr/dateutils/downloads/%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM
-Patch1:         0001-fix-when-printing-zones-transitioning-at-INT_MAX-in-.patch
+Source:         
https://github.com/hroptatyr/dateutils/releases/download/v%{version}/%{name}-%{version}.tar.xz
+Source1:        
https://github.com/hroptatyr/dateutils/releases/download/v%{version}/%{name}-%{version}.tar.asc
 BuildRequires:  pkgconfig
 BuildRequires:  xz
+Requires(pre):  info
 %if 0%{?suse_version}
 BuildRequires:  timezone
 %endif
-%if %have_octave
+%if %{have_octave}
 BuildRequires:  octave-devel
 %endif
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-Requires(pre):  info
 
 %description
 Dateutils are a bunch of tools that revolve around fiddling with dates
@@ -67,7 +60,7 @@
 conversions, and as such they are highly pipe-able and modeled after
 their well-known cousins (e.g. dtest vs. test, or dgrep vs. grep).
 
-%if %have_octave
+%if %{have_octave}
 %package octave
 Summary:        Dateutils functions for matlab and octave
 Group:          Development/Libraries/Other
@@ -79,17 +72,16 @@
 %endif
 
 %prep
-%setup -q -n %{name}-%{xversion}
-%patch1 -p1
+%setup -q
 
 %build
 %configure \
     --docdir=%{_docdir}/%{name} \
-%if %have_octave
+%if %{have_octave}
     --enable-contrib \
 %endif
     ignorethisline=xxx
-make V=1
+make %{?_smp_mflags} V=1
 
 %install
 %{?make_install} %{!?make_install:make install DESTDIR=%{buildroot}}
@@ -102,12 +94,8 @@
     exit 1
 fi
 
-%clean
-rm -rf %{buildroot}
-
 # How to make that info stuff portable?
 %if 0%{?install_info:1} > 0
-
 %post
 %install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info*
 
@@ -116,7 +104,6 @@
 %endif
 
 %files
-%defattr(-,root,root,-)
 %doc %{_docdir}/%{name}
 %{_bindir}/dadd
 %{_bindir}/dconv
@@ -140,31 +127,30 @@
 %dir %{_datadir}/dateutils/
 %{_datadir}/dateutils/locale
 %{_datadir}/dateutils/*.tzmcc
-%doc %{_infodir}/%{name}.info*
-%doc %{_mandir}/man1/%{name}.1*
-%doc %{_mandir}/man1/dadd.1*
-%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/dsort.1*
-%doc %{_mandir}/man1/dtest.1*
-%doc %{_mandir}/man1/dzone.1*
-%doc %{_mandir}/man1/dateadd.1*
-%doc %{_mandir}/man1/dateconv.1*
-%doc %{_mandir}/man1/datediff.1*
-%doc %{_mandir}/man1/dategrep.1*
-%doc %{_mandir}/man1/dateround.1*
-%doc %{_mandir}/man1/dateseq.1*
-%doc %{_mandir}/man1/datesort.1*
-%doc %{_mandir}/man1/datetest.1*
-%doc %{_mandir}/man1/datezone.1*
-%doc %{_mandir}/man1/strptime.1*
+%{_infodir}/%{name}.info*
+%{_mandir}/man1/%{name}.1*
+%{_mandir}/man1/dadd.1*
+%{_mandir}/man1/dconv.1*
+%{_mandir}/man1/ddiff.1*
+%{_mandir}/man1/dgrep.1*
+%{_mandir}/man1/dround.1*
+%{_mandir}/man1/dseq.1*
+%{_mandir}/man1/dsort.1*
+%{_mandir}/man1/dtest.1*
+%{_mandir}/man1/dzone.1*
+%{_mandir}/man1/dateadd.1*
+%{_mandir}/man1/dateconv.1*
+%{_mandir}/man1/datediff.1*
+%{_mandir}/man1/dategrep.1*
+%{_mandir}/man1/dateround.1*
+%{_mandir}/man1/dateseq.1*
+%{_mandir}/man1/datesort.1*
+%{_mandir}/man1/datetest.1*
+%{_mandir}/man1/datezone.1*
+%{_mandir}/man1/strptime.1*
 
-%if %have_octave
+%if %{have_octave}
 %files octave
-%defattr(-,root,root)
 %dir %{_libdir}/octave/site/oct/*/dateutils/
 %{_libdir}/octave/site/oct/*/dateutils/tzconv.m
 %{_libdir}/octave/site/oct/*/dateutils/tzconv.mex

++++++ dateutils-0.4.1.tar.xz -> dateutils-0.4.2.tar.xz ++++++
++++ 15532 lines of diff (skipped)


Reply via email to