[arch-commits] Commit in bashdb/repos/community-any (6 files)

Sergej Pupykin spupykin at archlinux.org
Wed Sep 17 17:46:24 UTC 2014


    Date: Wednesday, September 17, 2014 @ 19:46:24
  Author: spupykin
Revision: 119099

archrelease: copy trunk to community-any

Added:
  bashdb/repos/community-any/PKGBUILD
    (from rev 119098, bashdb/trunk/PKGBUILD)
  bashdb/repos/community-any/bashdb.install
    (from rev 119098, bashdb/trunk/bashdb.install)
  bashdb/repos/community-any/python2.patch
    (from rev 119098, bashdb/trunk/python2.patch)
Deleted:
  bashdb/repos/community-any/PKGBUILD
  bashdb/repos/community-any/bashdb.install
  bashdb/repos/community-any/python2.patch

----------------+
 PKGBUILD       |   66 +++++++++++++++++++++++++++----------------------------
 bashdb.install |   36 +++++++++++++++---------------
 python2.patch  |   18 +++++++--------
 3 files changed, 60 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2014-09-17 17:46:15 UTC (rev 119098)
+++ PKGBUILD	2014-09-17 17:46:24 UTC (rev 119099)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org>
-
-pkgname=bashdb
-pkgver=4.2_0.8
-pkgrel=3
-pkgdesc="A debugger for Bash scripts loosely modeled on the gdb command syntax"
-arch=('any')
-url="http://bashdb.sourceforge.net/"
-license=('GPL')
-depends=('bash' 'python2-pygments')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-${pkgver/_/-}.tar.bz2 python2.patch)
-md5sums=('f55afbc518d82647e2989a86954fadda'
-         '7e2fdd6ecb69cfd2cc2dba33c700c800')
-
-prepare() {
-  cd $pkgname-${pkgver//_/-}
-  patch -Np1 -i $srcdir/python2.patch
-  sed -i "s#'4.2' | '4.1'#'4.3' | '4.2' | '4.1'#" configure
-}
-
-build() {
-  cd $pkgname-${pkgver//_/-}
-  ./configure --prefix=/usr --disable-static -C
-  make
-}
-package() {
-  cd $pkgname-${pkgver//_/-}
-  make DESTDIR="$pkgdir" install
-  rm -f "$pkgdir"/usr/share/info/dir
-}

Copied: bashdb/repos/community-any/PKGBUILD (from rev 119098, bashdb/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2014-09-17 17:46:24 UTC (rev 119099)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org>
+
+pkgname=bashdb
+pkgver=4.3_0.9
+pkgrel=1
+pkgdesc="A debugger for Bash scripts loosely modeled on the gdb command syntax"
+arch=('any')
+url="http://bashdb.sourceforge.net/"
+license=('GPL')
+depends=('bash' 'python2-pygments')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-${pkgver/_/-}.tar.bz2 python2.patch)
+md5sums=('2f2479933a4e19663349b66f87d0290a'
+         '7e2fdd6ecb69cfd2cc2dba33c700c800')
+
+prepare() {
+  cd $pkgname-${pkgver//_/-}
+  patch -Np1 -i $srcdir/python2.patch
+  sed -i "s#'4.2' | '4.1'#'4.3' | '4.2' | '4.1'#" configure
+}
+
+build() {
+  cd $pkgname-${pkgver//_/-}
+  ./configure --prefix=/usr --disable-static -C
+  make
+}
+package() {
+  cd $pkgname-${pkgver//_/-}
+  make DESTDIR="$pkgdir" install
+  rm -f "$pkgdir"/usr/share/info/dir
+}

Deleted: bashdb.install
===================================================================
--- bashdb.install	2014-09-17 17:46:15 UTC (rev 119098)
+++ bashdb.install	2014-09-17 17:46:24 UTC (rev 119099)
@@ -1,18 +0,0 @@
-infodir=/usr/share/info
-filelist=(bashdb.info)
-
-post_install() {
-  for file in ${filelist[@]}; do
-    install-info $infodir/$file $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  for file in ${filelist[@]}; do
-    install-info --delete $infodir/$file $infodir/dir 2> /dev/null
-  done
-}

Copied: bashdb/repos/community-any/bashdb.install (from rev 119098, bashdb/trunk/bashdb.install)
===================================================================
--- bashdb.install	                        (rev 0)
+++ bashdb.install	2014-09-17 17:46:24 UTC (rev 119099)
@@ -0,0 +1,18 @@
+infodir=/usr/share/info
+filelist=(bashdb.info)
+
+post_install() {
+  for file in ${filelist[@]}; do
+    install-info $infodir/$file $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  for file in ${filelist[@]}; do
+    install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+  done
+}

Deleted: python2.patch
===================================================================
--- python2.patch	2014-09-17 17:46:15 UTC (rev 119098)
+++ python2.patch	2014-09-17 17:46:24 UTC (rev 119099)
@@ -1,9 +0,0 @@
-diff -aur bashdb-4.2-0.7/lib/term-highlight.py bashdb-4.2-0.7.new//lib/term-highlight.py
---- bashdb-4.2-0.7/lib/term-highlight.py	2011-03-07 17:05:56.000000000 -0800
-+++ bashdb-4.2-0.7.new//lib/term-highlight.py	2011-03-17 14:19:01.676694024 -0700
-@@ -1,4 +1,4 @@
--#!/usr/bin/env python
-+#!/usr/bin/env python2
- # from pydbgr.api import debug
- # debug()
- from pygments import highlight

Copied: bashdb/repos/community-any/python2.patch (from rev 119098, bashdb/trunk/python2.patch)
===================================================================
--- python2.patch	                        (rev 0)
+++ python2.patch	2014-09-17 17:46:24 UTC (rev 119099)
@@ -0,0 +1,9 @@
+diff -aur bashdb-4.2-0.7/lib/term-highlight.py bashdb-4.2-0.7.new//lib/term-highlight.py
+--- bashdb-4.2-0.7/lib/term-highlight.py	2011-03-07 17:05:56.000000000 -0800
++++ bashdb-4.2-0.7.new//lib/term-highlight.py	2011-03-17 14:19:01.676694024 -0700
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env python
++#!/usr/bin/env python2
+ # from pydbgr.api import debug
+ # debug()
+ from pygments import highlight




More information about the arch-commits mailing list