Hello community, here is the log from the commit of package sunwait for openSUSE:Factory checked in at 2020-01-07 23:51:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sunwait (Old) and /work/SRC/openSUSE:Factory/.sunwait.new.6675 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sunwait" Tue Jan 7 23:51:44 2020 rev:2 rq:761181 version:20190321 Changes: -------- --- /work/SRC/openSUSE:Factory/sunwait/sunwait.changes 2019-08-22 15:22:29.554272067 +0200 +++ /work/SRC/openSUSE:Factory/.sunwait.new.6675/sunwait.changes 2020-01-07 23:52:04.747991621 +0100 @@ -1,0 +2,7 @@ +Mon Jan 6 11:58:56 UTC 2020 - Jan Baier <[email protected]> + +- update to version 20190322 + - sunwait-no-return-in-nonvoid-function.patch no longer needed + - sunwait-implicit-declaration.patch no longer needed + +------------------------------------------------------------------- Old: ---- sunwait-20041208.tar.gz sunwait-implicit-declaration.patch sunwait-no-return-in-nonvoid-function.patch New: ---- _service sunwait-20190321.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sunwait.spec ++++++ --- /var/tmp/diff_new_pack.sPIukR/_old 2020-01-07 23:52:06.295992425 +0100 +++ /var/tmp/diff_new_pack.sPIukR/_new 2020-01-07 23:52:06.319992437 +0100 @@ -1,7 +1,7 @@ # # spec file for package sunwait # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,17 +17,15 @@ Name: sunwait -Version: 20041208 +Version: 20190321 Release: 0 Summary: Sunrise, sunset and twilight calculator License: GPL-2.0-or-later Group: Productivity/Scientific/Astronomy -URL: http://www.risacher.org/sunwait -Source: http://www.risacher.org/sunwait/%{name}-%{version}.tar.gz +URL: https://github.com/risacher/sunwait +Source: %{name}-%{version}.tar.xz Patch0: sunwait-no-rpm-opt-flags.patch -Patch1: sunwait-implicit-declaration.patch -Patch2: sunwait-no-return-in-nonvoid-function.patch -BuildRequires: gcc +BuildRequires: gcc-c++ %description Sunwait is a small C program for calculating sunrise and sunset, as well as @@ -37,8 +35,6 @@ %prep %setup -q %patch0 -p1 -%patch1 -p1 -%patch2 -p1 %build %make_build @@ -48,7 +44,7 @@ install -m 755 sunwait %{buildroot}%{_bindir} %files -%license COPYING +%license LICENSE %{_bindir}/sunwait %changelog ++++++ _service ++++++ <services> <service mode="disabled" name="tar_scm"> <param name="url">https://github.com/risacher/sunwait.git</param> <param name="scm">git</param> <param name="filename">sunwait</param> <param name="revision">master</param> <param name="versionformat">%cd</param> </service> <service mode="disabled" name="recompress"> <param name="file">*.tar</param> <param name="compression">xz</param> </service> <service mode="disabled" name="set_version"/> </services> ++++++ debian.changelog ++++++ --- /var/tmp/diff_new_pack.sPIukR/_old 2020-01-07 23:52:06.647992607 +0100 +++ /var/tmp/diff_new_pack.sPIukR/_new 2020-01-07 23:52:06.663992616 +0100 @@ -1,4 +1,10 @@ -sunwait (20041208) stable; urgency=low +sunwait (20190322) stable; urgency=medium + + * update to version 20190322 + + -- Jan Baier <[email protected]> Mon, 06 Jan 2020 13:00:47 +0100 + +sunwait (20190321) stable; urgency=low * add new package sunwait version 20041208 ++++++ debian.control ++++++ --- /var/tmp/diff_new_pack.sPIukR/_old 2020-01-07 23:52:06.827992701 +0100 +++ /var/tmp/diff_new_pack.sPIukR/_new 2020-01-07 23:52:06.827992701 +0100 @@ -2,7 +2,7 @@ Section: science Priority: optional Maintainer: Jan Baier <[email protected]> -Build-Depends: debhelper (>= 9), build-essential +Build-Depends: debhelper (>= 10), build-essential Package: sunwait Architecture: any ++++++ debian.series ++++++ --- /var/tmp/diff_new_pack.sPIukR/_old 2020-01-07 23:52:06.863992719 +0100 +++ /var/tmp/diff_new_pack.sPIukR/_new 2020-01-07 23:52:06.867992722 +0100 @@ -1,3 +1 @@ sunwait-no-rpm-opt-flags.patch -p1 -sunwait-implicit-declaration.patch -p1 -sunwait-no-return-in-nonvoid-function.patch -p1 ++++++ sunwait-no-rpm-opt-flags.patch ++++++ --- /var/tmp/diff_new_pack.sPIukR/_old 2020-01-07 23:52:06.871992724 +0100 +++ /var/tmp/diff_new_pack.sPIukR/_new 2020-01-07 23:52:06.883992730 +0100 @@ -1,19 +1,19 @@ -Index: sunwait-20041208/Makefile -=================================================================== ---- sunwait-20041208/Makefile 2019-03-07 18:54:00.998492523 +0100 -+++ sunwait-20041208/Makefile 2019-03-07 18:54:28.906683825 +0100 -@@ -1,10 +1,10 @@ --CFLAGS = -g -+CFLAGS = -g $(RPM_OPT_FLAGS) - LIBS = -lm - OBJS = main.o print.o sunriset.o +--- sunwait/makefile 2020-01-06 12:34:43.516253962 +0100 ++++ sunwait/makefile 2020-01-06 13:07:41.381297590 +0100 +@@ -6,7 +6,7 @@ - sunwait: $(OBJS) -- $(CC) -o sunwait $(CFLAGS) $(OBJS) -lm -+ $(CC) -o sunwait $(CFLAGS) $(OBJS) $(LIBS) + C=gcc +-CFLAGS=-c -Wall ++CFLAGS=-c -Wall $(RPM_OPT_FLAGS) + LDFLAGS= -lm -lstdc++ + SOURCES=sunwait.cpp sunriset.cpp print.cpp sunwait.h sunriset.h print.h + OBJECTS=$(SOURCES:.cpp=.o) +@@ -21,6 +21,6 @@ + $(C) $(CFLAGS) $< -o $@ clean: - rm *.o sunwait -\ No newline at end of file + $(RM) *.o sunwait + + ++++++ sunwait.dsc ++++++ --- /var/tmp/diff_new_pack.sPIukR/_old 2020-01-07 23:52:06.903992740 +0100 +++ /var/tmp/diff_new_pack.sPIukR/_new 2020-01-07 23:52:06.903992740 +0100 @@ -1,6 +1,6 @@ Format: 1.0 Source: sunwait -Version: 20041208 +Version: 20190321 Binary: sunwait Maintainer: Jan Baier <[email protected]> Architecture: any
