diff options
Diffstat (limited to 'development')
-rw-r--r-- | development/pep8/LICENSE.txt | 21 | ||||
-rw-r--r-- | development/pep8/README | 4 | ||||
-rw-r--r-- | development/pep8/pep8.SlackBuild | 50 | ||||
-rw-r--r-- | development/pep8/pep8.info | 10 | ||||
-rw-r--r-- | development/pep8/slack-desc | 19 |
5 files changed, 0 insertions, 104 deletions
diff --git a/development/pep8/LICENSE.txt b/development/pep8/LICENSE.txt deleted file mode 100644 index c4610a9f6d..0000000000 --- a/development/pep8/LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -Copyright (C) 2006 Johann C. Rocholl <johann@rocholl.net> - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation files -(the "Software"), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, -publish, distribute, sublicense, and/or sell copies of the Software, -and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS -BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN -ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/development/pep8/README b/development/pep8/README deleted file mode 100644 index a169dbd683..0000000000 --- a/development/pep8/README +++ /dev/null @@ -1,4 +0,0 @@ -pep8 is a tool to check your Python code against some of the style -conventions in PEP 8 <http://www.python.org/dev/peps/pep-0008/>. - -This requires pysetuptools. diff --git a/development/pep8/pep8.SlackBuild b/development/pep8/pep8.SlackBuild deleted file mode 100644 index a3ba6a6b29..0000000000 --- a/development/pep8/pep8.SlackBuild +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh - -# Slackware build script for pep8 -# Written by Audrius Kažukauskas <audrius@neutrino.lt> - -PRGNAM=pep8 -VERSION=${VERSION:-0.6.1} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -set -eu - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION -chown -R root:root . -find . \ - \( -perm 777 -o -perm 775 -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 {} \; - -python setup.py install --root=$PKG - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a CHANGES.txt README.rst $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/LICENSE.txt > $PKG/usr/doc/$PRGNAM-$VERSION/LICENSE.txt -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/development/pep8/pep8.info b/development/pep8/pep8.info deleted file mode 100644 index fbd2906d6f..0000000000 --- a/development/pep8/pep8.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pep8" -VERSION="0.6.1" -HOMEPAGE="http://pypi.python.org/pypi/pep8" -DOWNLOAD="http://pypi.python.org/packages/source/p/pep8/pep8-0.6.1.tar.gz" -MD5SUM="49380cdf6ba2e222e8630cb0afe29d66" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Audrius Kažukauskas" -EMAIL="audrius@neutrino.lt" -APPROVED="Niels Horn" diff --git a/development/pep8/slack-desc b/development/pep8/slack-desc deleted file mode 100644 index 016ed3f89e..0000000000 --- a/development/pep8/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -pep8: pep8 (Check Python source code formatting) -pep8: -pep8: pep8 is a tool to check your Python code against some of the style -pep8: conventions in PEP 8 <http://www.python.org/dev/peps/pep-0008/>. -pep8: -pep8: Homepage: http://pypi.python.org/pypi/pep8 -pep8: -pep8: -pep8: -pep8: -pep8: |