diff options
author | Dave Woodfall <dave@slackbuilds.org> | 2021-05-06 17:11:48 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-08 01:41:53 +0700 |
commit | 73ea7ad7aa9bfa159532e6d993e5c84638394454 (patch) | |
tree | 1c784f94bf87204c2f58d48c800abb647e1a4185 /python/python-yenc | |
parent | 289662417467d15824a2959e7d517df764c81f71 (diff) |
python/python-yenc: Renamed python2-yenc.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python-yenc')
-rw-r--r-- | python/python-yenc/README | 7 | ||||
-rw-r--r-- | python/python-yenc/python-yenc.SlackBuild | 73 | ||||
-rw-r--r-- | python/python-yenc/python-yenc.info | 10 | ||||
-rw-r--r-- | python/python-yenc/slack-desc | 19 |
4 files changed, 0 insertions, 109 deletions
diff --git a/python/python-yenc/README b/python/python-yenc/README deleted file mode 100644 index 716a3a3ab8..0000000000 --- a/python/python-yenc/README +++ /dev/null @@ -1,7 +0,0 @@ - yEnc - a raw encoding/decoding module for Python - -This a fairly simple module, it provide only raw yEnc encoding/decoding with -builitin crc32 calculation. -Header parsing, checkings and yenc formatting are left to you (see examples -directory for possible implementations). The interface was originally intended -to be similar to the uu module from Python standard library. diff --git a/python/python-yenc/python-yenc.SlackBuild b/python/python-yenc/python-yenc.SlackBuild deleted file mode 100644 index 52e4fbc8c9..0000000000 --- a/python/python-yenc/python-yenc.SlackBuild +++ /dev/null @@ -1,73 +0,0 @@ -#!/bin/sh - -# Slackware build script for python-yenc - -# Written by powtrix (@gmail.com) - -PRGNAM=python-yenc -VERSION=${VERSION:-0.3} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -SRCNAM=yenc - -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION.tar.gz -cd $SRCNAM-$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 {} \; - -python setup.py install --root=$PKG - -rm -f $PKG/usr/lib${LIBDIRSUFFIX}/python2.6/site-packages/yenc-0.3-py2.6.egg-info - -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - CHANGES COPYING README TODO \ - $PKG/usr/doc/$PRGNAM-$VERSION -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/python/python-yenc/python-yenc.info b/python/python-yenc/python-yenc.info deleted file mode 100644 index 68f23bd3de..0000000000 --- a/python/python-yenc/python-yenc.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-yenc" -VERSION="0.3" -HOMEPAGE="https://sabnzbd.org/" -DOWNLOAD="http://ponce.cc/slackware/sources/repo/yenc-0.3.tar.gz" -MD5SUM="7b3edd32db6c1ce566ad550e3de64c83" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="powtrix" -EMAIL="powtrix@gmail.com" diff --git a/python/python-yenc/slack-desc b/python/python-yenc/slack-desc deleted file mode 100644 index ff198d7585..0000000000 --- a/python/python-yenc/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 ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -python-yenc: python-yenc (raw encoding/decoding module for python) -python-yenc: -python-yenc: This a fairly simple module, it provide only raw yEnc -python-yenc: encoding/decoding with builtin crc32 calculation. -python-yenc: -python-yenc: Header parsing, checkings and yenc formatting are left to you -python-yenc: (see examples directory for possible implementations). -python-yenc: The interface originally intended to be similar to the uu -python-yenc: module from Python standard library. -python-yenc: -python-yenc: |