Hello community,

here is the log from the commit of package kinit for openSUSE:Factory checked 
in at 2014-05-14 20:26:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kinit (Old)
 and      /work/SRC/openSUSE:Factory/.kinit.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kinit"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kinit/kinit.changes      2014-04-02 
17:22:19.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kinit.new/kinit.changes 2014-05-14 
20:27:24.000000000 +0200
@@ -1,0 +2,17 @@
+Sun May  4 01:41:14 UTC 2014 - [email protected]
+
+- Update to 4.99.0
+  * API improvements and cleanups
+  * Buildsystem fixes
+  * For more details please see:
+    http://www.kde.org/announcements/announce-frameworks5-beta2.php
+- Added kdoctools-devel BuildRequires
+
+-------------------------------------------------------------------
+Tue Apr 22 19:17:57 UTC 2014 - [email protected]
+
+- Added disable-OOM-protection.patch: it was not proved to be
+  needed feature, and creates potential security risk, bnc#862953
+- Drop unused and commented out parts of the spec
+
+-------------------------------------------------------------------

Old:
----
  kinit-4.98.0.tar.xz

New:
----
  disable-OOM-protection.patch
  kinit-4.99.0.tar.xz

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

Other differences:
------------------
++++++ kinit.spec ++++++
--- /var/tmp/diff_new_pack.A4nLtA/_old  2014-05-14 20:27:25.000000000 +0200
+++ /var/tmp/diff_new_pack.A4nLtA/_new  2014-05-14 20:27:25.000000000 +0200
@@ -17,29 +17,30 @@
 
 
 Name:           kinit
-Version:        4.98.0
+Version:        4.99.0
 Release:        0
 BuildRequires:  cmake >= 2.8.12
-BuildRequires:  extra-cmake-modules >= 0.0.12
+BuildRequires:  extra-cmake-modules >= 0.0.13
 BuildRequires:  fdupes
 BuildRequires:  kcrash-devel >= %{_kf5_version}
 BuildRequires:  kf5-filesystem
 BuildRequires:  ki18n-devel >= %{_kf5_version}
+BuildRequires:  kdoctools-devel >= %{_kf5_version}
 BuildRequires:  kio-devel >= %{_kf5_version}
 BuildRequires:  kservice-devel >= %{_kf5_version}
 BuildRequires:  kwindowsystem-devel >= %{_kf5_version}
-BuildRequires:  libcap-devel
 BuildRequires:  pkgconfig(Qt5Core) >= 5.2.0
 BuildRequires:  pkgconfig(Qt5DBus) >= 5.2.0
 BuildRequires:  pkgconfig(Qt5Gui) >= 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) >= 5.2.0
 BuildRequires:  pkgconfig(x11)
-#PreReq:         permissions
 Summary:        Helper library to speed up start of applications on KDE 
workspaces
 License:        LGPL-2.1+
 Group:          System/GUI/KDE
 Url:            http://www.kde.org
 Source0:        kinit-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM disable-OOM-protection.patch -- it was not proved to be 
needed feature, and create potential security risk, bnc#862953
+Patch0:         disable-OOM-protection.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -58,6 +59,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
   %cmake_kf5 -d build -- -DCMAKE_CXX_FLAGS="%{optflags} -fpie" 
-DCMAKE_C_FLAGS="%{optflags} -fpie" -DCMAKE_SHARED_LINKER_FLAGS="-pie" 
-DCMAKE_EXE_LINKER_FLAGS="-pie" -DCMAKE_MODULE_LINKER_FLAGS="-pie"
@@ -67,19 +69,9 @@
   %kf5_makeinstall -C build
   %fdupes -s %{buildroot}
 
-# Under security review -- bnc#862953
-# echo "setBadness('permissions-file-setuid-bit', 998)" > 
$RPM_SOURCE_DIR/%name-rpmlintrc
+%post -p /sbin/ldconfig
 
-%post
-/sbin/ldconfig
-
-#set_permissions %{_kf5_libexecdir}/start_kdeinit
-
-%postun
-/sbin/ldconfig
-
-#verifyscript
-#verify_permissions -e %{_kf5_libexecdir}/start_kdeinit
+%postun -p /sbin/ldconfig
 
 %files
 %defattr(-,root,root)
@@ -91,9 +83,9 @@
 %{_kf5_libdir}/libkdeinit5_klauncher.so
 %{_kf5_libexecdir}/klauncher
 %{_kf5_bindir}/kshell5
-#verify(not mode caps) %attr(4755,root,root) %{_kf5_libexecdir}/start_kdeinit
 %{_kf5_libexecdir}/start_kdeinit
 %{_kf5_libexecdir}/start_kdeinit_wrapper
+%{_kf5_mandir}/man8/kdeinit5.*
 
 %files devel
 %defattr(-,root,root)

++++++ disable-OOM-protection.patch ++++++
diff --git a/src/start_kdeinit/CMakeLists.txt b/src/start_kdeinit/CMakeLists.txt
index 73e50b8..e84e6a9 100644
--- a/src/start_kdeinit/CMakeLists.txt
+++ b/src/start_kdeinit/CMakeLists.txt
@@ -4,7 +4,7 @@ add_executable(start_kdeinit_wrapper start_kdeinit_wrapper.c)
 install(TARGETS start_kdeinit DESTINATION ${KF5_LIBEXEC_INSTALL_DIR})
 install(TARGETS start_kdeinit_wrapper DESTINATION ${KF5_LIBEXEC_INSTALL_DIR})
 
-if (CMAKE_SYSTEM_NAME MATCHES Linux)
+if (0)
     MESSAGE(STATUS "Using setuid root kdeinit wrapper in order to protect it 
from bad Linux OOM-killer")
     set(KDEINIT_OOM_PROTECT 1)
     install(CODE "
++++++ kinit-4.98.0.tar.xz -> kinit-4.99.0.tar.xz ++++++
++++ 963441 lines of diff (skipped)

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to