Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package csync for openSUSE:Factory checked 
in at 2021-03-16 15:44:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/csync (Old)
 and      /work/SRC/openSUSE:Factory/.csync.new.2401 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "csync"

Tue Mar 16 15:44:50 2021 rev:27 rq:879117 version:0.50.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/csync/csync.changes      2020-10-27 
19:03:33.398944564 +0100
+++ /work/SRC/openSUSE:Factory/.csync.new.2401/csync.changes    2021-03-16 
15:46:23.153226983 +0100
@@ -1,0 +2,7 @@
+Sun Mar  7 07:07:35 UTC 2021 - Carsten Ziepke <kiel...@gmail.com>
+
+- Fix bare words are no longer supported,
+  please use "...": lib64 == lib64
+- Run spec-cleaner
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ csync.spec ++++++
--- /var/tmp/diff_new_pack.gQ0k41/_old  2021-03-16 15:46:23.729227877 +0100
+++ /var/tmp/diff_new_pack.gQ0k41/_new  2021-03-16 15:46:23.729227877 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package csync
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,23 +17,12 @@
 
 
 Name:           csync
-BuildRequires:  cmake
-BuildRequires:  doxygen
-BuildRequires:  gcc-c++
-BuildRequires:  libsmbclient-devel
-BuildRequires:  libssh-devel
-BuildRequires:  pkg-config
-%if 0%{?suse_version}
-BuildRequires:  sqlite3-devel
-%else
-BuildRequires:  sqlite-devel
-%endif
 Version:        0.50.0
 Release:        0
 Summary:        A user level bidirectional client only file synchronizer
 License:        GPL-2.0-or-later
 Group:          Productivity/Networking/Other
-URL:            http://www.csync.org/
+URL:            https://www.csync.org/
 Source0:        %{name}-%{version}.tar.bz2
 Source1:        baselibs.conf
 # PATCH-FIX-OPENSUSE fix-cmake-on-pre-12.patch
@@ -43,7 +32,17 @@
 Patch2:         fix-missing-const.patch
 # PATCH-FIX-OPENSUSE csync-libssh.patch -- Detect newer libssh versions; 
hacked patch
 Patch3:         csync-libssh.patch
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  cmake
+BuildRequires:  doxygen
+BuildRequires:  gcc-c++
+BuildRequires:  libsmbclient-devel
+BuildRequires:  libssh-devel
+BuildRequires:  pkgconfig
+%if 0%{?suse_version}
+BuildRequires:  sqlite3-devel
+%else
+BuildRequires:  sqlite-devel
+%endif
 
 %description
 csync is an implementation of a file synchronizer which provides the
@@ -55,8 +54,8 @@
 License:        LGPL-2.1-or-later
 Group:          System/Libraries
 %if 0%{?suse_version} > 1030
-Recommends:     libcsync-plugin-smb
 Recommends:     libcsync-plugin-sftp
+Recommends:     libcsync-plugin-smb
 %endif
 
 %description -n libcsync0
@@ -90,8 +89,8 @@
 Summary:        Owncloud plugin for csync
 License:        GPL-2.0-or-later
 Group:          System/Libraries
-Requires:       libcsync0 = %{version}
 BuildRequires:  libneon-devel
+Requires:       libcsync0 = %{version}
 
 %description -n libcsync-plugin-owncloud
 This plug-in allows applications using csync to synchronize with Owncloud.
@@ -137,9 +136,10 @@
 
 %build
 if test ! -e "build"; then
-  %{__mkdir} build
+  mkdir build
 fi
 pushd build
+# FIXME: you should use the %%cmake macros
 cmake \
   -DCMAKE_C_FLAGS:STRING="%{optflags}" \
   -DCMAKE_CXX_FLAGS:STRING="%{optflags}" \
@@ -147,35 +147,33 @@
   -DCMAKE_BUILD_TYPE=RelWithDebInfo \
   -DCMAKE_INSTALL_PREFIX=%{_prefix} \
   -DSYSCONF_INSTALL_DIR=%{_sysconfdir} \
-%if %{_lib} == lib64
+%if "%{_lib}" == "lib64"
   -DLIB_SUFFIX=64 \
 %endif
   %{_builddir}/%{name}-%{version}
-%__make %{?jobs:-j%jobs} VERBOSE=1
-%__make doc
+%make_build
+%make_build doc
 popd
 
 %install
 pushd build
 %if 0%{?suse_version}
-%makeinstall
+%make_install
 %else
-make DESTDIR=%{buildroot} install
+%make_install
 %endif
 popd
 
 %post -n libcsync0 -p /sbin/ldconfig
-
 %postun -n libcsync0 -p /sbin/ldconfig
 
 %files
-%defattr(-,root,root)
 %{_bindir}/csync
 %{_mandir}/man?/csync.*
 
 %files -n libcsync0
-%defattr(-,root,root)
-%doc AUTHORS COPYING INSTALL README
+%license COPYING
+%doc AUTHORS INSTALL README
 %dir %{_sysconfdir}/csync
 %config(noreplace) %{_sysconfdir}/csync/csync.conf
 %config(noreplace) %{_sysconfdir}/csync/csync_exclude.conf
@@ -183,30 +181,24 @@
 %dir %{_libdir}/csync-0
 
 %files -n libcsync-plugin-smb
-%defattr(-,root,root)
 %{_libdir}/csync-0/csync_smb.so
 
 %files -n libcsync-plugin-sftp
-%defattr(-,root,root)
 %{_libdir}/csync-0/csync_sftp.so
 
 %if 0%{?suse_version} >= 1200
 %files -n libcsync-plugin-owncloud
-%defattr(-,root,root)
 %{_libdir}/csync-0/csync_owncloud.so
 %endif
 
 %files -n libcsync-devel
-%defattr(-,root,root)
 %{_includedir}/csync
 %{_libdir}/libcsync.so
 
 %files -n libcsync-devel-doc
-%defattr(-,root,root)
 %doc build/doc/html
 
 %files -n libcsync-doc
-%defattr(-,root,root)
 %{_datadir}/doc/csync
 
 %changelog

Reply via email to