diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-10-14 22:48:31 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-10-14 22:48:31 +0700 |
commit | e35d3fd12e81cece9611a7e01633eadd1b749ee0 (patch) | |
tree | 80b7acdf46699d4b4d70fa9a8004db339b225ecf | |
parent | c294896f2d6a061ec714ba3f6ff24140ee9b1f1b (diff) | |
download | slackbuilds-e35d3fd12e81cece9611a7e01633eadd1b749ee0.tar.gz slackbuilds-e35d3fd12e81cece9611a7e01633eadd1b749ee0.tar.xz |
python/pycryptodomex: Removed (split into python2 and python3).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | python/pycryptodomex/README | 8 | ||||
-rw-r--r-- | python/pycryptodomex/pycryptodomex.SlackBuild | 84 | ||||
-rw-r--r-- | python/pycryptodomex/pycryptodomex.info | 10 | ||||
-rw-r--r-- | python/pycryptodomex/slack-desc | 19 |
4 files changed, 0 insertions, 121 deletions
diff --git a/python/pycryptodomex/README b/python/pycryptodomex/README deleted file mode 100644 index 8aa5026945..0000000000 --- a/python/pycryptodomex/README +++ /dev/null @@ -1,8 +0,0 @@ -PyCryptodome is a self-contained Python package of low-level -cryptographic primitives. It supports Python 2.6 or newer, all Python 3 -versions and PyPy. PyCryptodome is a fork of PyCrypto. - -PyCryptodome is not a wrapper to a separate C library like OpenSSL. To -the largest possible extent, algorithms are implemented in pure Python. -Only the pieces that are extremely critical to performance (e.g. block -ciphers) are implemented as C extensions. diff --git a/python/pycryptodomex/pycryptodomex.SlackBuild b/python/pycryptodomex/pycryptodomex.SlackBuild deleted file mode 100644 index 16bc633cbc..0000000000 --- a/python/pycryptodomex/pycryptodomex.SlackBuild +++ /dev/null @@ -1,84 +0,0 @@ -#!/bin/bash - -# Slackware build script for pycryptodomex - -# Copyright 2020 Markus Rinne Finland -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -cd $(dirname $0) ; CWD=$(pwd) - -PRGNAM=pycryptodomex -VERSION=${VERSION:-3.20.0} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -PKGTYPE=${PKGTYPE:-tgz} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. -if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then - echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" - exit 0 -fi - -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf pycryptodome-${VERSION}x -tar xvf $CWD/pycryptodome-${VERSION}x.tar.gz -cd pycryptodome-${VERSION}x -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 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; - -python2 setup.py install --root=$PKG -python3 setup.py install --root=$PKG - -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 \ - AUTHORS.rst Changelog.rst FuturePlans.rst INSTALL.rst LICENSE.rst README.rst \ - $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 diff --git a/python/pycryptodomex/pycryptodomex.info b/python/pycryptodomex/pycryptodomex.info deleted file mode 100644 index bd0c97b3eb..0000000000 --- a/python/pycryptodomex/pycryptodomex.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pycryptodomex" -VERSION="3.20.0" -HOMEPAGE="https://github.com/Legrandin/pycryptodome" -DOWNLOAD="https://github.com/Legrandin/pycryptodome/archive/v3.20.0x/pycryptodome-3.20.0x.tar.gz" -MD5SUM="934fe89c1fd2070391cf60de8c8147f9" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Markus Rinne" -EMAIL="markus.ka.rinne@gmail.com" diff --git a/python/pycryptodomex/slack-desc b/python/pycryptodomex/slack-desc deleted file mode 100644 index bda4aae404..0000000000 --- a/python/pycryptodomex/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------------------------------------------------------| -pycryptodomex: pycryptodomex (Python Cryptography Toolkit) -pycryptodomex: -pycryptodomex: PyCryptodome is a self-contained Python package of low-level -pycryptodomex: cryptographic primitives. It supports Python 2.6 or newer, all -pycryptodomex: Python 3 versions and PyPy. PyCryptodome is a fork of PyCrypto. -pycryptodomex: -pycryptodomex: PyCryptodome is not a wrapper to a separate C library like OpenSSL. -pycryptodomex: To the largest possible extent, algorithms are implemented in pure -pycryptodomex: Python. Only the pieces that are extremely critical to performance -pycryptodomex: (e.g. block ciphers) are implemented as C extensions. -pycryptodomex: |