[arch-commits] Commit in nepomuk-core/repos (8 files)

Andrea Scarpino andrea at archlinux.org
Wed Oct 3 14:39:01 UTC 2012


    Date: Wednesday, October 3, 2012 @ 10:39:00
  Author: andrea
Revision: 167761

db-move: moved nepomuk-core from [testing] to [extra] (i686, x86_64)

Added:
  nepomuk-core/repos/extra-i686/PKGBUILD
    (from rev 167756, nepomuk-core/repos/testing-i686/PKGBUILD)
  nepomuk-core/repos/extra-i686/regression-crash.patch
    (from rev 167756, nepomuk-core/repos/testing-i686/regression-crash.patch)
  nepomuk-core/repos/extra-x86_64/PKGBUILD
    (from rev 167756, nepomuk-core/repos/testing-x86_64/PKGBUILD)
  nepomuk-core/repos/extra-x86_64/regression-crash.patch
    (from rev 167756, nepomuk-core/repos/testing-x86_64/regression-crash.patch)
Deleted:
  nepomuk-core/repos/extra-i686/PKGBUILD
  nepomuk-core/repos/extra-x86_64/PKGBUILD
  nepomuk-core/repos/testing-i686/
  nepomuk-core/repos/testing-x86_64/

-------------------------------------+
 extra-i686/PKGBUILD                 |   72 ++++++++++++++++++---------------
 extra-i686/regression-crash.patch   |   73 ++++++++++++++++++++++++++++++++++
 extra-x86_64/PKGBUILD               |   72 ++++++++++++++++++---------------
 extra-x86_64/regression-crash.patch |   73 ++++++++++++++++++++++++++++++++++
 4 files changed, 224 insertions(+), 66 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2012-10-03 14:38:54 UTC (rev 167760)
+++ extra-i686/PKGBUILD	2012-10-03 14:39:00 UTC (rev 167761)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino <andrea at archlinux.org>
-
-pkgname=nepomuk-core
-pkgver=4.9.1
-pkgrel=1
-pkgdesc="Contains the central Nepomuk services like file indexing, file system monitoring, query, storage, client libraries"
-url="https://projects.kde.org/projects/kde/kdelibs/nepomuk-core"
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4' 'doxygen')
-source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
-sha1sums=('1dbb4467b7d4ec50133e5ce86c3837b57b95794d')
-
-build() {
-  cd "${srcdir}"
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-
-  # Fix the python shebang
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
-    "${pkgdir}"/usr/bin/nepomuk-simpleresource-rcgen
-}

Copied: nepomuk-core/repos/extra-i686/PKGBUILD (from rev 167756, nepomuk-core/repos/testing-i686/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2012-10-03 14:39:00 UTC (rev 167761)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=nepomuk-core
+pkgver=4.9.2
+pkgrel=2
+pkgdesc="Contains the central Nepomuk services like file indexing, file system monitoring, query, storage, client libraries"
+url="https://projects.kde.org/projects/kde/kdelibs/nepomuk-core"
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4' 'doxygen')
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz"
+        'regression-crash.patch')
+sha1sums=('a04e632bfa39ac5158c2addf7278bfb27d29cb5b'
+          'f49436046cfd98b172a53eeaffb0d5df6bf5e1ee')
+
+build() {
+  # KDEBUG 307388
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i "${srcdir}"/regression-crash.patch
+  cd ../
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+
+  # Fix the python shebang
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+    "${pkgdir}"/usr/bin/nepomuk-simpleresource-rcgen
+}

Copied: nepomuk-core/repos/extra-i686/regression-crash.patch (from rev 167756, nepomuk-core/repos/testing-i686/regression-crash.patch)
===================================================================
--- extra-i686/regression-crash.patch	                        (rev 0)
+++ extra-i686/regression-crash.patch	2012-10-03 14:39:00 UTC (rev 167761)
@@ -0,0 +1,73 @@
+From: David Faure <faure at kde.org>
+Date: Tue, 02 Oct 2012 18:27:03 +0000
+Subject: Fix crash when watchUserLimitReached() leads to deleting the KInotify instance
+X-Git-Url: http://quickgit.kde.org/?p=nepomuk-core.git&a=commitdiff&h=804e54f83ade8a377d392d350981ead07f60a9d3
+---
+Fix crash when watchUserLimitReached() leads to deleting the KInotify instance
+
+... which emitted the signal. So don't use a direct delete.
+
+BUG: 307388
+FIXED-IN: 4.9.3
+---
+
+
+--- a/services/filewatch/nepomukfilewatch.cpp
++++ b/services/filewatch/nepomukfilewatch.cpp
+@@ -323,7 +323,8 @@
+ void Nepomuk2::FileWatch::slotInotifyWatchUserLimitReached()
+ {
+     // we do it the brutal way for now hoping with new kernels and defaults this will never happen
+-    delete m_dirWatch;
++    // Delete the KInotify and switch to KDirNotify dbus signals
++    m_dirWatch->deleteLater();
+     m_dirWatch = 0;
+     connectToKDirWatch();
+ }
+
+From: Dan Vrátil <dvratil at redhat.com>
+Date: Wed, 03 Oct 2012 11:27:22 +0000
+Subject: Add null-crash guards for m_dirWatch to FileWatch
+X-Git-Url: http://quickgit.kde.org/?p=nepomuk-core.git&a=commitdiff&h=32b44881dda4f243932c59c11bf39c91f30c224b
+---
+Add null-crash guards for m_dirWatch to FileWatch
+
+BUG: 307388
+---
+
+
+--- a/services/filewatch/nepomukfilewatch.cpp
++++ b/services/filewatch/nepomukfilewatch.cpp
+@@ -114,6 +114,7 @@
+ 
+ Nepomuk2::FileWatch::FileWatch( QObject* parent, const QList<QVariant>& )
+     : Service( parent )
++    , m_dirWatch( 0 )
+ {
+     // Create the configuration instance singleton (for thread-safety)
+     // ==============================================================
+@@ -324,8 +325,10 @@
+ {
+     // we do it the brutal way for now hoping with new kernels and defaults this will never happen
+     // Delete the KInotify and switch to KDirNotify dbus signals
+-    m_dirWatch->deleteLater();
+-    m_dirWatch = 0;
++    if( m_dirWatch ) {
++        m_dirWatch->deleteLater();
++        m_dirWatch = 0;
++    }
+     connectToKDirWatch();
+ }
+ #endif
+@@ -413,7 +416,9 @@
+ void Nepomuk2::FileWatch::slotDeviceTeardownRequested(const Nepomuk2::RemovableMediaCache::Entry* entry )
+ {
+ #ifdef BUILD_KINOTIFY
+-    m_dirWatch->removeWatch( entry->mountPath() );
++    if( m_dirWatch ) {
++        m_dirWatch->removeWatch( entry->mountPath() );
++    }
+ #endif
+ }
+ 
+

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2012-10-03 14:38:54 UTC (rev 167760)
+++ extra-x86_64/PKGBUILD	2012-10-03 14:39:00 UTC (rev 167761)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino <andrea at archlinux.org>
-
-pkgname=nepomuk-core
-pkgver=4.9.1
-pkgrel=1
-pkgdesc="Contains the central Nepomuk services like file indexing, file system monitoring, query, storage, client libraries"
-url="https://projects.kde.org/projects/kde/kdelibs/nepomuk-core"
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4' 'doxygen')
-source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
-sha1sums=('1dbb4467b7d4ec50133e5ce86c3837b57b95794d')
-
-build() {
-  cd "${srcdir}"
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-
-  # Fix the python shebang
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
-    "${pkgdir}"/usr/bin/nepomuk-simpleresource-rcgen
-}

Copied: nepomuk-core/repos/extra-x86_64/PKGBUILD (from rev 167756, nepomuk-core/repos/testing-x86_64/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2012-10-03 14:39:00 UTC (rev 167761)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=nepomuk-core
+pkgver=4.9.2
+pkgrel=2
+pkgdesc="Contains the central Nepomuk services like file indexing, file system monitoring, query, storage, client libraries"
+url="https://projects.kde.org/projects/kde/kdelibs/nepomuk-core"
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4' 'doxygen')
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz"
+        'regression-crash.patch')
+sha1sums=('a04e632bfa39ac5158c2addf7278bfb27d29cb5b'
+          'f49436046cfd98b172a53eeaffb0d5df6bf5e1ee')
+
+build() {
+  # KDEBUG 307388
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i "${srcdir}"/regression-crash.patch
+  cd ../
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+
+  # Fix the python shebang
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+    "${pkgdir}"/usr/bin/nepomuk-simpleresource-rcgen
+}

Copied: nepomuk-core/repos/extra-x86_64/regression-crash.patch (from rev 167756, nepomuk-core/repos/testing-x86_64/regression-crash.patch)
===================================================================
--- extra-x86_64/regression-crash.patch	                        (rev 0)
+++ extra-x86_64/regression-crash.patch	2012-10-03 14:39:00 UTC (rev 167761)
@@ -0,0 +1,73 @@
+From: David Faure <faure at kde.org>
+Date: Tue, 02 Oct 2012 18:27:03 +0000
+Subject: Fix crash when watchUserLimitReached() leads to deleting the KInotify instance
+X-Git-Url: http://quickgit.kde.org/?p=nepomuk-core.git&a=commitdiff&h=804e54f83ade8a377d392d350981ead07f60a9d3
+---
+Fix crash when watchUserLimitReached() leads to deleting the KInotify instance
+
+... which emitted the signal. So don't use a direct delete.
+
+BUG: 307388
+FIXED-IN: 4.9.3
+---
+
+
+--- a/services/filewatch/nepomukfilewatch.cpp
++++ b/services/filewatch/nepomukfilewatch.cpp
+@@ -323,7 +323,8 @@
+ void Nepomuk2::FileWatch::slotInotifyWatchUserLimitReached()
+ {
+     // we do it the brutal way for now hoping with new kernels and defaults this will never happen
+-    delete m_dirWatch;
++    // Delete the KInotify and switch to KDirNotify dbus signals
++    m_dirWatch->deleteLater();
+     m_dirWatch = 0;
+     connectToKDirWatch();
+ }
+
+From: Dan Vrátil <dvratil at redhat.com>
+Date: Wed, 03 Oct 2012 11:27:22 +0000
+Subject: Add null-crash guards for m_dirWatch to FileWatch
+X-Git-Url: http://quickgit.kde.org/?p=nepomuk-core.git&a=commitdiff&h=32b44881dda4f243932c59c11bf39c91f30c224b
+---
+Add null-crash guards for m_dirWatch to FileWatch
+
+BUG: 307388
+---
+
+
+--- a/services/filewatch/nepomukfilewatch.cpp
++++ b/services/filewatch/nepomukfilewatch.cpp
+@@ -114,6 +114,7 @@
+ 
+ Nepomuk2::FileWatch::FileWatch( QObject* parent, const QList<QVariant>& )
+     : Service( parent )
++    , m_dirWatch( 0 )
+ {
+     // Create the configuration instance singleton (for thread-safety)
+     // ==============================================================
+@@ -324,8 +325,10 @@
+ {
+     // we do it the brutal way for now hoping with new kernels and defaults this will never happen
+     // Delete the KInotify and switch to KDirNotify dbus signals
+-    m_dirWatch->deleteLater();
+-    m_dirWatch = 0;
++    if( m_dirWatch ) {
++        m_dirWatch->deleteLater();
++        m_dirWatch = 0;
++    }
+     connectToKDirWatch();
+ }
+ #endif
+@@ -413,7 +416,9 @@
+ void Nepomuk2::FileWatch::slotDeviceTeardownRequested(const Nepomuk2::RemovableMediaCache::Entry* entry )
+ {
+ #ifdef BUILD_KINOTIFY
+-    m_dirWatch->removeWatch( entry->mountPath() );
++    if( m_dirWatch ) {
++        m_dirWatch->removeWatch( entry->mountPath() );
++    }
+ #endif
+ }
+ 
+




More information about the arch-commits mailing list