[arch-commits] Commit in kdbg/repos (6 files)

Sergej Pupykin spupykin at archlinux.org
Tue Jan 17 09:03:37 UTC 2017


    Date: Tuesday, January 17, 2017 @ 09:03:37
  Author: spupykin
Revision: 207668

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

Added:
  kdbg/repos/community-i686/PKGBUILD
    (from rev 207667, kdbg/trunk/PKGBUILD)
  kdbg/repos/community-x86_64/PKGBUILD
    (from rev 207667, kdbg/trunk/PKGBUILD)
Deleted:
  kdbg/repos/community-i686/PKGBUILD
  kdbg/repos/community-i686/kdbg-cmake-3.4.patch
  kdbg/repos/community-x86_64/PKGBUILD
  kdbg/repos/community-x86_64/kdbg-cmake-3.4.patch

---------------------------------------+
 /PKGBUILD                             |   60 ++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD               |   37 -------------------
 community-i686/kdbg-cmake-3.4.patch   |   10 -----
 community-x86_64/PKGBUILD             |   37 -------------------
 community-x86_64/kdbg-cmake-3.4.patch |   10 -----
 5 files changed, 60 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2017-01-17 09:03:19 UTC (rev 207667)
+++ community-i686/PKGBUILD	2017-01-17 09:03:37 UTC (rev 207668)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Eric Belanger <belanger at astro.umontreal.ca>
-# Contributor: Jason Taylor <jftaylor21 at gmail.com>
-# Contributor: Georg Grabler <ggrabler at chello.at>
-
-pkgname=kdbg
-pkgver=2.5.6
-pkgrel=1
-pkgdesc="A gdb GUI for KDE"
-arch=('i686' 'x86_64')
-url="http://www.kdbg.org"
-license=('GPL')
-depends=('kdebase-runtime' 'gdb')
-makedepends=('automoc4' 'cmake' 'optipng')
-source=("http://downloads.sourceforge.net/project/kdbg/Source%20Code/$pkgver/kdbg-$pkgver.tar.gz" kdbg-cmake-3.4.patch)
-sha256sums=('69e0bdf8116cb11912b38cf248b7a1dbb8f36e4dc35b4a498043234979c724cb'
-            '11eb62665e827cb8ac17663bafa2aa00127f52ed1cf952131aac9e5ff0d5fac9')
-
-prepare() {
-  cd $pkgname-$pkgver
-# Fix build with cmake 3.4
-#  patch -p1 -i ../kdbg-cmake-3.4.patch
-}
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../${pkgname}-${pkgver} -DCMAKE_INSTALL_PREFIX=/usr
-  make
-  find -name '*.png' -exec optipng -quiet -force -fix {} \;
-}
-
-package() {
-  cd "$srcdir"/build
-  make DESTDIR="$pkgdir" install
-}

Copied: kdbg/repos/community-i686/PKGBUILD (from rev 207667, kdbg/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-01-17 09:03:37 UTC (rev 207668)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Eric Belanger <belanger at astro.umontreal.ca>
+# Contributor: Jason Taylor <jftaylor21 at gmail.com>
+# Contributor: Georg Grabler <ggrabler at chello.at>
+
+pkgname=kdbg
+pkgver=2.9.0
+pkgrel=1
+pkgdesc="A gdb GUI for KDE"
+arch=('i686' 'x86_64')
+url="http://www.kdbg.org"
+license=('GPL')
+depends=('kdebase-runtime' 'gdb')
+makedepends=('automoc4' 'cmake' 'optipng')
+source=("http://downloads.sourceforge.net/project/kdbg/Source%20Code/$pkgver/kdbg-$pkgver.tar.gz")
+sha256sums=('46c8a35c354bd29c9cf2e7d4dfb53765c66f656e8390360b67e59ea502c76f8f')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../${pkgname}-${pkgver} -DCMAKE_INSTALL_PREFIX=/usr
+  make
+  find -name '*.png' -exec optipng -quiet -force -fix {} \;
+}
+
+package() {
+  cd "$srcdir"/build
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/kdbg-cmake-3.4.patch
===================================================================
--- community-i686/kdbg-cmake-3.4.patch	2017-01-17 09:03:19 UTC (rev 207667)
+++ community-i686/kdbg-cmake-3.4.patch	2017-01-17 09:03:37 UTC (rev 207668)
@@ -1,10 +0,0 @@
---- kdbg-2.5.5/kdbg/CMakeLists.txt.orig	2015-12-07 17:54:31.111499425 +0100
-+++ kdbg-2.5.5/kdbg/CMakeLists.txt	2015-12-07 17:54:39.051501951 +0100
-@@ -4,6 +4,7 @@
- 
- include_directories(${KDE4_INCLUDES} ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} )
- include(CheckFunctionExists)
-+include(CheckIncludeFiles)
- 
- CHECK_INCLUDE_FILES(pty.h HAVE_PTY_H)
- CHECK_INCLUDE_FILES(libutil.h HAVE_LIBUTIL_H)

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2017-01-17 09:03:19 UTC (rev 207667)
+++ community-x86_64/PKGBUILD	2017-01-17 09:03:37 UTC (rev 207668)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Eric Belanger <belanger at astro.umontreal.ca>
-# Contributor: Jason Taylor <jftaylor21 at gmail.com>
-# Contributor: Georg Grabler <ggrabler at chello.at>
-
-pkgname=kdbg
-pkgver=2.5.6
-pkgrel=1
-pkgdesc="A gdb GUI for KDE"
-arch=('i686' 'x86_64')
-url="http://www.kdbg.org"
-license=('GPL')
-depends=('kdebase-runtime' 'gdb')
-makedepends=('automoc4' 'cmake' 'optipng')
-source=("http://downloads.sourceforge.net/project/kdbg/Source%20Code/$pkgver/kdbg-$pkgver.tar.gz" kdbg-cmake-3.4.patch)
-sha256sums=('69e0bdf8116cb11912b38cf248b7a1dbb8f36e4dc35b4a498043234979c724cb'
-            '11eb62665e827cb8ac17663bafa2aa00127f52ed1cf952131aac9e5ff0d5fac9')
-
-prepare() {
-  cd $pkgname-$pkgver
-# Fix build with cmake 3.4
-#  patch -p1 -i ../kdbg-cmake-3.4.patch
-}
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../${pkgname}-${pkgver} -DCMAKE_INSTALL_PREFIX=/usr
-  make
-  find -name '*.png' -exec optipng -quiet -force -fix {} \;
-}
-
-package() {
-  cd "$srcdir"/build
-  make DESTDIR="$pkgdir" install
-}

Copied: kdbg/repos/community-x86_64/PKGBUILD (from rev 207667, kdbg/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-01-17 09:03:37 UTC (rev 207668)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Eric Belanger <belanger at astro.umontreal.ca>
+# Contributor: Jason Taylor <jftaylor21 at gmail.com>
+# Contributor: Georg Grabler <ggrabler at chello.at>
+
+pkgname=kdbg
+pkgver=2.9.0
+pkgrel=1
+pkgdesc="A gdb GUI for KDE"
+arch=('i686' 'x86_64')
+url="http://www.kdbg.org"
+license=('GPL')
+depends=('kdebase-runtime' 'gdb')
+makedepends=('automoc4' 'cmake' 'optipng')
+source=("http://downloads.sourceforge.net/project/kdbg/Source%20Code/$pkgver/kdbg-$pkgver.tar.gz")
+sha256sums=('46c8a35c354bd29c9cf2e7d4dfb53765c66f656e8390360b67e59ea502c76f8f')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../${pkgname}-${pkgver} -DCMAKE_INSTALL_PREFIX=/usr
+  make
+  find -name '*.png' -exec optipng -quiet -force -fix {} \;
+}
+
+package() {
+  cd "$srcdir"/build
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/kdbg-cmake-3.4.patch
===================================================================
--- community-x86_64/kdbg-cmake-3.4.patch	2017-01-17 09:03:19 UTC (rev 207667)
+++ community-x86_64/kdbg-cmake-3.4.patch	2017-01-17 09:03:37 UTC (rev 207668)
@@ -1,10 +0,0 @@
---- kdbg-2.5.5/kdbg/CMakeLists.txt.orig	2015-12-07 17:54:31.111499425 +0100
-+++ kdbg-2.5.5/kdbg/CMakeLists.txt	2015-12-07 17:54:39.051501951 +0100
-@@ -4,6 +4,7 @@
- 
- include_directories(${KDE4_INCLUDES} ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} )
- include(CheckFunctionExists)
-+include(CheckIncludeFiles)
- 
- CHECK_INCLUDE_FILES(pty.h HAVE_PTY_H)
- CHECK_INCLUDE_FILES(libutil.h HAVE_LIBUTIL_H)



More information about the arch-commits mailing list