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

Sergej Pupykin spupykin at archlinux.org
Wed Apr 27 22:55:07 UTC 2016


    Date: Thursday, April 28, 2016 @ 00:55:07
  Author: spupykin
Revision: 172227

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2016-04-27 22:54:57 UTC (rev 172226)
+++ PKGBUILD	2016-04-27 22:55:07 UTC (rev 172227)
@@ -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.3_0.9
-pkgrel=2
-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' 'pygmentize')
-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
-}

Copied: bashdb/repos/community-any/PKGBUILD (from rev 172226, bashdb/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2016-04-27 22:55:07 UTC (rev 172227)
@@ -0,0 +1,32 @@
+# $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=4
+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' 'pygmentize')
+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	2016-04-27 22:54:57 UTC (rev 172226)
+++ bashdb.install	2016-04-27 22:55:07 UTC (rev 172227)
@@ -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
-}

Deleted: python2.patch
===================================================================
--- python2.patch	2016-04-27 22:54:57 UTC (rev 172226)
+++ python2.patch	2016-04-27 22:55:07 UTC (rev 172227)
@@ -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 172226, bashdb/trunk/python2.patch)
===================================================================
--- python2.patch	                        (rev 0)
+++ python2.patch	2016-04-27 22:55:07 UTC (rev 172227)
@@ -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