summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author Rudson R. Alves <rudsonalves@yahoo.com.br>2015-04-17 08:19:56 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2015-04-17 08:19:56 +0700
commit752d83c6e5887022937ac5d5765973a09515f47f (patch)
tree65369063bcd18f077e9a8a6abc170e93872b4dee /development
parent0bbd522affc92fd523b090642df9a0fe0098a8a9 (diff)
downloadslackbuilds-752d83c6e5887022937ac5d5765973a09515f47f.tar.gz
slackbuilds-752d83c6e5887022937ac5d5765973a09515f47f.tar.xz
development/pudb: Updated for version 2015.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r--development/pudb/pudb.SlackBuild14
-rw-r--r--development/pudb/pudb.info6
-rw-r--r--development/pudb/slack-desc4
3 files changed, 11 insertions, 13 deletions
diff --git a/development/pudb/pudb.SlackBuild b/development/pudb/pudb.SlackBuild
index faaf356ae2..74958b618a 100644
--- a/development/pudb/pudb.SlackBuild
+++ b/development/pudb/pudb.SlackBuild
@@ -5,7 +5,7 @@
# Written by Rudson R. Alves rudsonalves@yahoo.com.br
PRGNAM=pudb
-VERSION=${VERSION:-2013.3.2}
+VERSION=${VERSION:-2015.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -46,10 +46,10 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \
- -exec chmod 755 {} \; -o \
- \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
+ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
+ -o -perm 511 \) -exec chmod 755 {} \; -o \
+ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
+ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
python setup.py install --root=$PKG
@@ -57,9 +57,7 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- MANIFEST.in PKG-INFO README.rst \
- $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a MANIFEST.in PKG-INFO README.rst $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
diff --git a/development/pudb/pudb.info b/development/pudb/pudb.info
index 722fe33f48..a75f2ff5d4 100644
--- a/development/pudb/pudb.info
+++ b/development/pudb/pudb.info
@@ -1,8 +1,8 @@
PRGNAM="pudb"
-VERSION="2013.3.2"
+VERSION="2015.2"
HOMEPAGE="https://pypi.python.org/pypi/pudb"
-DOWNLOAD="https://pypi.python.org/packages/source/p/pudb/pudb-2013.3.2.tar.gz"
-MD5SUM="aacca6e45b664914a1f514e3580d1d65"
+DOWNLOAD="https://pypi.python.org/packages/source/p/pudb/pudb-2015.2.tar.gz"
+MD5SUM="0e155dc7c07d59090269df5a02a9eaac"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="pysetuptools"
diff --git a/development/pudb/slack-desc b/development/pudb/slack-desc
index 6f98f40ea4..c75a6d92d8 100644
--- a/development/pudb/slack-desc
+++ b/development/pudb/slack-desc
@@ -11,8 +11,8 @@ pudb:
pudb: PuDB is a full-screen, console-based visual debugger for Python.
pudb:
pudb: Its goal is to provide all the niceties of modern GUI-based debuggers
-pudb: in a more lightweight and keyboard-friendly package. PuDB allows you to
-pudb: debug code right where you write and test it--in a terminal.
+pudb: in a more lightweight and keyboard-friendly package. PuDB allows you
+pudb: to debug code right where you write and test it--in a terminal.
pudb:
pudb: If you've worked with the excellent (but nowadays ancient) DOS-based
pudb: Turbo Pascal or C tools, PuDB's UI might look familiar.