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

Eric Bélanger eric at nymeria.archlinux.org
Tue Feb 26 20:01:10 UTC 2013


    Date: Tuesday, February 26, 2013 @ 21:01:10
  Author: eric
Revision: 85031

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  qsvn/repos/community-staging-i686/
  qsvn/repos/community-staging-i686/PKGBUILD
    (from rev 85030, qsvn/trunk/PKGBUILD)
  qsvn/repos/community-staging-i686/lib64-fix.patch
    (from rev 85030, qsvn/trunk/lib64-fix.patch)
  qsvn/repos/community-staging-i686/qsvn.changelog
    (from rev 85030, qsvn/trunk/qsvn.changelog)
  qsvn/repos/community-staging-x86_64/
  qsvn/repos/community-staging-x86_64/PKGBUILD
    (from rev 85030, qsvn/trunk/PKGBUILD)
  qsvn/repos/community-staging-x86_64/lib64-fix.patch
    (from rev 85030, qsvn/trunk/lib64-fix.patch)
  qsvn/repos/community-staging-x86_64/qsvn.changelog
    (from rev 85030, qsvn/trunk/qsvn.changelog)

------------------------------------------+
 community-staging-i686/PKGBUILD          |   37 +++++++++++++++++++++++++++++
 community-staging-i686/lib64-fix.patch   |   12 +++++++++
 community-staging-i686/qsvn.changelog    |   32 +++++++++++++++++++++++++
 community-staging-x86_64/PKGBUILD        |   37 +++++++++++++++++++++++++++++
 community-staging-x86_64/lib64-fix.patch |   12 +++++++++
 community-staging-x86_64/qsvn.changelog  |   32 +++++++++++++++++++++++++
 6 files changed, 162 insertions(+)

Copied: qsvn/repos/community-staging-i686/PKGBUILD (from rev 85030, qsvn/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2013-02-26 20:01:10 UTC (rev 85031)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+# Contributor: Jakub Schmidtke <sjakub-at-gmail.com>
+
+pkgname=qsvn
+pkgver=0.8.3
+pkgrel=4
+pkgdesc="Qt4 GUI for Subversion."
+arch=('i686' 'x86_64')
+url="http://www.anrichter.net/projects/qsvn/"
+license=('GPL')
+depends=('qt4' 'subversion')
+makedepends=('cmake' 'patch')
+changelog=$pkgname.changelog
+source=(http://www.anrichter.net/projects/qsvn/chrome/site/$pkgname-$pkgver-src.tar.gz
+        lib64-fix.patch)
+sha256sums=('8396f667dc7f09de2eead056608e90febb089fc26529b7fcebe157797c320f73'
+            '6a2787b5852825aaccd50ad7b20983af859378d86b86aaf550bf4e1bfcc96c3e')
+
+build() {
+  cd "${srcdir}/$pkgname-$pkgver/src"
+
+  patch -Np2 -i "${srcdir}/lib64-fix.patch"
+
+  cmake -D CMAKE_INSTALL_PREFIX=/usr/ -D CMAKE_BUILD_TYPE="Release" ../src
+  make
+}
+
+package() {
+  cd "${srcdir}/$pkgname-$pkgver/src"
+
+  make DESTDIR="${pkgdir}" install
+
+  #desktop file
+  install -D -m644 "${srcdir}/$pkgname-$pkgver/src/$pkgname.desktop" \
+    "${pkgdir}/usr/share/applications/$pkgname.desktop"
+}

Copied: qsvn/repos/community-staging-i686/lib64-fix.patch (from rev 85030, qsvn/trunk/lib64-fix.patch)
===================================================================
--- community-staging-i686/lib64-fix.patch	                        (rev 0)
+++ community-staging-i686/lib64-fix.patch	2013-02-26 20:01:10 UTC (rev 85031)
@@ -0,0 +1,12 @@
+diff -ru qsvn-0.8.2.orig/src/CMakeLists.txt qsvn-0.8.2/src/CMakeLists.txt
+--- qsvn-0.8.2.orig/src/CMakeLists.txt	2009-04-16 22:06:42.000000000 +0300
++++ qsvn-0.8.2/src/CMakeLists.txt	2009-05-31 18:02:59.425751548 +0300
+@@ -42,7 +42,7 @@
+   IF(CMAKE_SIZEOF_VOID_P EQUAL 4)
+     SET(LIB_SUFFIX "")
+   ELSE(CMAKE_SIZEOF_VOID_P EQUAL 4)
+-    SET(LIB_SUFFIX 64)
++    SET(LIB_SUFFIX "")
+   ENDIF(CMAKE_SIZEOF_VOID_P EQUAL 4)
+   SET(LIB_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX})
+   SET(BIN_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/bin)

Copied: qsvn/repos/community-staging-i686/qsvn.changelog (from rev 85030, qsvn/trunk/qsvn.changelog)
===================================================================
--- community-staging-i686/qsvn.changelog	                        (rev 0)
+++ community-staging-i686/qsvn.changelog	2013-02-26 20:01:10 UTC (rev 85031)
@@ -0,0 +1,32 @@
+2009-05-31 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* Update to major release 0.8.2
+	* Release info:
+	http://www.anrichter.net/projects/qsvn/wiki/Releases/ReleaseNotes-0.8.2
+
+2008-12-21 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* Update to major release 0.8.1
+	* Release info:
+	http://www.anrichter.net/projects/qsvn/wiki/ReleaseNotes-0.8.1
+
+2008-12-21 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* Update to major release 0.8.0
+	* Release info:
+	http://www.anrichter.net/projects/qsvn/wiki/ReleaseNotes-0.8.0
+
+2008-10-08 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* Update to major release 0.7.1
+
+2008-08-05 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* Update to major release 0.7.0
+	* Release info:
+	http://www.anrichter.net/projects/qsvn/wiki/ReleaseNotes-0.7.0
+
+2008-07-30 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* Fixed bug FS#10914
+
+2008-03-27 JJDaNiMoTh <jjdanimoth at gmail.com>
+	* Replaced qt4 with qt as depend
+
+2007-12-19 Georg Grabler (STiAT) <ggrabler at gmail.com>
+	* Updated to major release 0.6.0
+

Copied: qsvn/repos/community-staging-x86_64/PKGBUILD (from rev 85030, qsvn/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2013-02-26 20:01:10 UTC (rev 85031)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+# Contributor: Jakub Schmidtke <sjakub-at-gmail.com>
+
+pkgname=qsvn
+pkgver=0.8.3
+pkgrel=4
+pkgdesc="Qt4 GUI for Subversion."
+arch=('i686' 'x86_64')
+url="http://www.anrichter.net/projects/qsvn/"
+license=('GPL')
+depends=('qt4' 'subversion')
+makedepends=('cmake' 'patch')
+changelog=$pkgname.changelog
+source=(http://www.anrichter.net/projects/qsvn/chrome/site/$pkgname-$pkgver-src.tar.gz
+        lib64-fix.patch)
+sha256sums=('8396f667dc7f09de2eead056608e90febb089fc26529b7fcebe157797c320f73'
+            '6a2787b5852825aaccd50ad7b20983af859378d86b86aaf550bf4e1bfcc96c3e')
+
+build() {
+  cd "${srcdir}/$pkgname-$pkgver/src"
+
+  patch -Np2 -i "${srcdir}/lib64-fix.patch"
+
+  cmake -D CMAKE_INSTALL_PREFIX=/usr/ -D CMAKE_BUILD_TYPE="Release" ../src
+  make
+}
+
+package() {
+  cd "${srcdir}/$pkgname-$pkgver/src"
+
+  make DESTDIR="${pkgdir}" install
+
+  #desktop file
+  install -D -m644 "${srcdir}/$pkgname-$pkgver/src/$pkgname.desktop" \
+    "${pkgdir}/usr/share/applications/$pkgname.desktop"
+}

Copied: qsvn/repos/community-staging-x86_64/lib64-fix.patch (from rev 85030, qsvn/trunk/lib64-fix.patch)
===================================================================
--- community-staging-x86_64/lib64-fix.patch	                        (rev 0)
+++ community-staging-x86_64/lib64-fix.patch	2013-02-26 20:01:10 UTC (rev 85031)
@@ -0,0 +1,12 @@
+diff -ru qsvn-0.8.2.orig/src/CMakeLists.txt qsvn-0.8.2/src/CMakeLists.txt
+--- qsvn-0.8.2.orig/src/CMakeLists.txt	2009-04-16 22:06:42.000000000 +0300
++++ qsvn-0.8.2/src/CMakeLists.txt	2009-05-31 18:02:59.425751548 +0300
+@@ -42,7 +42,7 @@
+   IF(CMAKE_SIZEOF_VOID_P EQUAL 4)
+     SET(LIB_SUFFIX "")
+   ELSE(CMAKE_SIZEOF_VOID_P EQUAL 4)
+-    SET(LIB_SUFFIX 64)
++    SET(LIB_SUFFIX "")
+   ENDIF(CMAKE_SIZEOF_VOID_P EQUAL 4)
+   SET(LIB_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX})
+   SET(BIN_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/bin)

Copied: qsvn/repos/community-staging-x86_64/qsvn.changelog (from rev 85030, qsvn/trunk/qsvn.changelog)
===================================================================
--- community-staging-x86_64/qsvn.changelog	                        (rev 0)
+++ community-staging-x86_64/qsvn.changelog	2013-02-26 20:01:10 UTC (rev 85031)
@@ -0,0 +1,32 @@
+2009-05-31 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* Update to major release 0.8.2
+	* Release info:
+	http://www.anrichter.net/projects/qsvn/wiki/Releases/ReleaseNotes-0.8.2
+
+2008-12-21 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* Update to major release 0.8.1
+	* Release info:
+	http://www.anrichter.net/projects/qsvn/wiki/ReleaseNotes-0.8.1
+
+2008-12-21 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* Update to major release 0.8.0
+	* Release info:
+	http://www.anrichter.net/projects/qsvn/wiki/ReleaseNotes-0.8.0
+
+2008-10-08 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* Update to major release 0.7.1
+
+2008-08-05 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* Update to major release 0.7.0
+	* Release info:
+	http://www.anrichter.net/projects/qsvn/wiki/ReleaseNotes-0.7.0
+
+2008-07-30 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* Fixed bug FS#10914
+
+2008-03-27 JJDaNiMoTh <jjdanimoth at gmail.com>
+	* Replaced qt4 with qt as depend
+
+2007-12-19 Georg Grabler (STiAT) <ggrabler at gmail.com>
+	* Updated to major release 0.6.0
+




More information about the arch-commits mailing list