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

Andrea Scarpino andrea at archlinux.org
Mon Aug 6 23:07:44 UTC 2012


    Date: Monday, August 6, 2012 @ 19:07:43
  Author: andrea
Revision: 164838

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

Added:
  strigi/repos/extra-i686/PKGBUILD
    (from rev 164826, strigi/repos/testing-i686/PKGBUILD)
  strigi/repos/extra-i686/gcc47.patch
    (from rev 164826, strigi/repos/testing-i686/gcc47.patch)
  strigi/repos/extra-x86_64/PKGBUILD
    (from rev 164826, strigi/repos/testing-x86_64/PKGBUILD)
  strigi/repos/extra-x86_64/gcc47.patch
    (from rev 164826, strigi/repos/testing-x86_64/gcc47.patch)
Deleted:
  strigi/repos/extra-i686/PKGBUILD
  strigi/repos/extra-x86_64/PKGBUILD
  strigi/repos/testing-i686/
  strigi/repos/testing-x86_64/

--------------------------+
 extra-i686/PKGBUILD      |  105 ++++++++++++++++++++++++---------------------
 extra-i686/gcc47.patch   |   22 +++++++++
 extra-x86_64/PKGBUILD    |  105 ++++++++++++++++++++++++---------------------
 extra-x86_64/gcc47.patch |   22 +++++++++
 4 files changed, 158 insertions(+), 96 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2012-08-06 23:07:38 UTC (rev 164837)
+++ extra-i686/PKGBUILD	2012-08-06 23:07:43 UTC (rev 164838)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino <andrea at archlinux.org>
-# Contributor: Tobias Powalowski <tpowa at archlinux.org>
-
-pkgname=strigi
-pkgver=0.7.7
-pkgrel=1
-pkgdesc="Fast crawling desktop search engine with Qt4 GUI"
-arch=('i686' 'x86_64')
-url="http://www.vandenoever.info/software/strigi/"
-license=('GPL2')
-depends=('exiv2' 'libxml2' 'boost-libs')
-makedepends=('qt' 'cmake' 'pkg-config' 'boost')
-optdepends=('kdegraphics-strigi-analyzer: strigi analyzers for various graphics file'
-            'kdesdk-strigi-analyzer: strigi analyzer for KDE SDK')
-#source=("http://www.vandenoever.info/software/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
-source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
-md5sums=('ca0a0fd5c2b99879f6330837aeede996')
-
-build() {
-  cd "${srcdir}"
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DENABLE_INOTIFY=ON \
-    -DENABLE_LOG4CXX=OFF \
-    -DENABLE_FAM=OFF \
-    -DENABLE_CLUCENE=OFF \
-    -DENABLE_CLUCENE_NG=OFF \
-    -DENABLE_FFMPEG=OFF
-  make
-}
-
-package() {
-  cd "${srcdir}/build/libstreams"
-  make DESTDIR="${pkgdir}" install
-
-  cd "${srcdir}/build/libstreamanalyzer"
-  make DESTDIR="${pkgdir}" install
-
-  cd "${srcdir}/build/strigiclient/lib/searchclient/qtdbus"
-  make DESTDIR="${pkgdir}" install
-  
-  cd "${srcdir}/build/strigiutils"
-  make DESTDIR="${pkgdir}" install
-}

Copied: strigi/repos/extra-i686/PKGBUILD (from rev 164826, strigi/repos/testing-i686/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2012-08-06 23:07:43 UTC (rev 164838)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Tobias Powalowski <tpowa at archlinux.org>
+
+pkgname=strigi
+pkgver=0.7.7
+pkgrel=2
+pkgdesc="Fast crawling desktop search engine with Qt4 GUI"
+arch=('i686' 'x86_64')
+url='http://strigi.sourceforge.net/'
+license=('GPL2')
+depends=('exiv2' 'libxml2' 'boost-libs')
+makedepends=('qt' 'cmake' 'pkg-config' 'boost')
+optdepends=('kdegraphics-strigi-analyzer: strigi analyzers for various graphics file'
+            'kdesdk-strigi-analyzer: strigi analyzer for KDE SDK')
+#source=("http://www.vandenoever.info/software/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
+source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.bz2"
+        'gcc47.patch')
+md5sums=('ca0a0fd5c2b99879f6330837aeede996'
+         '1acb9b31a4859dc427fc4d387fd8aa2f')
+
+build() {
+  pushd ${pkgname}-${pkgver}/strigidaemon
+  patch -p1 -i "${srcdir}"/gcc47.patch
+  popd
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DENABLE_INOTIFY=ON \
+    -DENABLE_LOG4CXX=OFF \
+    -DENABLE_FAM=OFF \
+    -DENABLE_CLUCENE=OFF \
+    -DENABLE_CLUCENE_NG=OFF \
+    -DENABLE_FFMPEG=OFF
+  make
+}
+
+package() {
+  pushd build/libstreams
+  make DESTDIR="${pkgdir}" install
+  popd
+
+  pushd build/libstreamanalyzer
+  make DESTDIR="${pkgdir}" install
+  popd
+
+  pushd build/strigiclient/lib/searchclient/qtdbus
+  make DESTDIR="${pkgdir}" install
+  popd
+  
+  pushd build/strigiutils
+  make DESTDIR="${pkgdir}" install
+  popd
+}

Copied: strigi/repos/extra-i686/gcc47.patch (from rev 164826, strigi/repos/testing-i686/gcc47.patch)
===================================================================
--- extra-i686/gcc47.patch	                        (rev 0)
+++ extra-i686/gcc47.patch	2012-08-06 23:07:43 UTC (rev 164838)
@@ -0,0 +1,22 @@
+From: Rex Dieter <rdieter at fedoraproject.org>
+Date: Mon, 09 Jan 2012 17:13:25 +0000
+Subject: gcc47 fix, unistd.h header required unconditionally for 'sleep'
+X-Git-Url: http://quickgit.kde.org/?p=strigidaemon.git&a=commitdiff&h=a8e97f672325557b3fbc84b987299350ec5ac10b
+---
+gcc47 fix, unistd.h header required unconditionally for 'sleep'
+---
+
+
+--- a/bin/daemon/eventlistener/eventlistenerqueue.cpp
++++ b/bin/daemon/eventlistener/eventlistenerqueue.cpp
+@@ -27,9 +27,7 @@
+ #include <iostream>
+ #include <stdio.h>
+ 
+-#if defined(__SUNPRO_CC)
+ #include <unistd.h>
+-#endif
+ 
+ using namespace std;
+ 
+

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2012-08-06 23:07:38 UTC (rev 164837)
+++ extra-x86_64/PKGBUILD	2012-08-06 23:07:43 UTC (rev 164838)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino <andrea at archlinux.org>
-# Contributor: Tobias Powalowski <tpowa at archlinux.org>
-
-pkgname=strigi
-pkgver=0.7.7
-pkgrel=1
-pkgdesc="Fast crawling desktop search engine with Qt4 GUI"
-arch=('i686' 'x86_64')
-url="http://www.vandenoever.info/software/strigi/"
-license=('GPL2')
-depends=('exiv2' 'libxml2' 'boost-libs')
-makedepends=('qt' 'cmake' 'pkg-config' 'boost')
-optdepends=('kdegraphics-strigi-analyzer: strigi analyzers for various graphics file'
-            'kdesdk-strigi-analyzer: strigi analyzer for KDE SDK')
-#source=("http://www.vandenoever.info/software/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
-source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
-md5sums=('ca0a0fd5c2b99879f6330837aeede996')
-
-build() {
-  cd "${srcdir}"
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DENABLE_INOTIFY=ON \
-    -DENABLE_LOG4CXX=OFF \
-    -DENABLE_FAM=OFF \
-    -DENABLE_CLUCENE=OFF \
-    -DENABLE_CLUCENE_NG=OFF \
-    -DENABLE_FFMPEG=OFF
-  make
-}
-
-package() {
-  cd "${srcdir}/build/libstreams"
-  make DESTDIR="${pkgdir}" install
-
-  cd "${srcdir}/build/libstreamanalyzer"
-  make DESTDIR="${pkgdir}" install
-
-  cd "${srcdir}/build/strigiclient/lib/searchclient/qtdbus"
-  make DESTDIR="${pkgdir}" install
-  
-  cd "${srcdir}/build/strigiutils"
-  make DESTDIR="${pkgdir}" install
-}

Copied: strigi/repos/extra-x86_64/PKGBUILD (from rev 164826, strigi/repos/testing-x86_64/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2012-08-06 23:07:43 UTC (rev 164838)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Tobias Powalowski <tpowa at archlinux.org>
+
+pkgname=strigi
+pkgver=0.7.7
+pkgrel=2
+pkgdesc="Fast crawling desktop search engine with Qt4 GUI"
+arch=('i686' 'x86_64')
+url='http://strigi.sourceforge.net/'
+license=('GPL2')
+depends=('exiv2' 'libxml2' 'boost-libs')
+makedepends=('qt' 'cmake' 'pkg-config' 'boost')
+optdepends=('kdegraphics-strigi-analyzer: strigi analyzers for various graphics file'
+            'kdesdk-strigi-analyzer: strigi analyzer for KDE SDK')
+#source=("http://www.vandenoever.info/software/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
+source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.bz2"
+        'gcc47.patch')
+md5sums=('ca0a0fd5c2b99879f6330837aeede996'
+         '1acb9b31a4859dc427fc4d387fd8aa2f')
+
+build() {
+  pushd ${pkgname}-${pkgver}/strigidaemon
+  patch -p1 -i "${srcdir}"/gcc47.patch
+  popd
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DENABLE_INOTIFY=ON \
+    -DENABLE_LOG4CXX=OFF \
+    -DENABLE_FAM=OFF \
+    -DENABLE_CLUCENE=OFF \
+    -DENABLE_CLUCENE_NG=OFF \
+    -DENABLE_FFMPEG=OFF
+  make
+}
+
+package() {
+  pushd build/libstreams
+  make DESTDIR="${pkgdir}" install
+  popd
+
+  pushd build/libstreamanalyzer
+  make DESTDIR="${pkgdir}" install
+  popd
+
+  pushd build/strigiclient/lib/searchclient/qtdbus
+  make DESTDIR="${pkgdir}" install
+  popd
+  
+  pushd build/strigiutils
+  make DESTDIR="${pkgdir}" install
+  popd
+}

Copied: strigi/repos/extra-x86_64/gcc47.patch (from rev 164826, strigi/repos/testing-x86_64/gcc47.patch)
===================================================================
--- extra-x86_64/gcc47.patch	                        (rev 0)
+++ extra-x86_64/gcc47.patch	2012-08-06 23:07:43 UTC (rev 164838)
@@ -0,0 +1,22 @@
+From: Rex Dieter <rdieter at fedoraproject.org>
+Date: Mon, 09 Jan 2012 17:13:25 +0000
+Subject: gcc47 fix, unistd.h header required unconditionally for 'sleep'
+X-Git-Url: http://quickgit.kde.org/?p=strigidaemon.git&a=commitdiff&h=a8e97f672325557b3fbc84b987299350ec5ac10b
+---
+gcc47 fix, unistd.h header required unconditionally for 'sleep'
+---
+
+
+--- a/bin/daemon/eventlistener/eventlistenerqueue.cpp
++++ b/bin/daemon/eventlistener/eventlistenerqueue.cpp
+@@ -27,9 +27,7 @@
+ #include <iostream>
+ #include <stdio.h>
+ 
+-#if defined(__SUNPRO_CC)
+ #include <unistd.h>
+-#endif
+ 
+ using namespace std;
+ 
+




More information about the arch-commits mailing list