diff options
author | Duncan Roe <duncan_roe@optusnet.com.au> | 2022-03-08 17:23:55 +1100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-03-09 08:57:13 +0700 |
commit | 3f5c01bff50f166cba2a119e856bdeac1cbb07f9 (patch) | |
tree | cd2252eab919a7dca0169a62d62c2e0d01b1a662 /python | |
parent | 2b43421b6088a19b6460050d0aea366e7c93e658 (diff) | |
download | slackbuilds-3f5c01bff50f166cba2a119e856bdeac1cbb07f9.tar.gz |
python/python3-pyclipper: Added (new dependendency of Type1_to_OTF)
Signed-off-by: Duncan Roe <duncan_roe@optusnet.com.au>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python')
-rw-r--r-- | python/python3-pyclipper/README | 4 | ||||
-rw-r--r-- | python/python3-pyclipper/python3-pyclipper.SlackBuild | 79 | ||||
-rw-r--r-- | python/python3-pyclipper/python3-pyclipper.info | 10 | ||||
-rw-r--r-- | python/python3-pyclipper/slack-desc | 19 |
4 files changed, 112 insertions, 0 deletions
diff --git a/python/python3-pyclipper/README b/python/python3-pyclipper/README new file mode 100644 index 0000000000..b94622f718 --- /dev/null +++ b/python/python3-pyclipper/README @@ -0,0 +1,4 @@ +pyclipper (Wrapper for C++ translation of the Clipper library) + +Pyclipper is a Cython wrapper exposing public functions and classes of +the C++ translation of the Angus Johnson's Clipper library (ver. 6.4.2). diff --git a/python/python3-pyclipper/python3-pyclipper.SlackBuild b/python/python3-pyclipper/python3-pyclipper.SlackBuild new file mode 100644 index 0000000000..c96ea0fdb1 --- /dev/null +++ b/python/python3-pyclipper/python3-pyclipper.SlackBuild @@ -0,0 +1,79 @@ +#!/bin/bash + +# Slackware build script for pyclipper + +# Copyright 2022 Duncan Roe, Melbourne, Australia +# 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=pyclipper +PKGNAM=python3-pyclipper +VERSION=${VERSION:-1.3.0.post2} +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 "$PKGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PKGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +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 -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 {} \; + +python3 setup.py install --root=$PKG + +mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION +cp -a README.rst LICENSE $PKG/usr/doc/$PKGNAM-$VERSION +cat $CWD/$PKGNAM.SlackBuild > $PKG/usr/doc/$PKGNAM-$VERSION/$PKGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PKGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/python/python3-pyclipper/python3-pyclipper.info b/python/python3-pyclipper/python3-pyclipper.info new file mode 100644 index 0000000000..2f00b4ed2e --- /dev/null +++ b/python/python3-pyclipper/python3-pyclipper.info @@ -0,0 +1,10 @@ +PRGNAM="python3-pyclipper" +VERSION="1.3.0.post2" +HOMEPAGE="https://pypi.org/project/pyclipper/" +DOWNLOAD="https://files.pythonhosted.org/packages/c0/20/7e6f631db2ba598ebaa6afd05188aa1557f6ff9af3f47fd963e0bd7ed79b/pyclipper-1.3.0.post2.tar.gz" +MD5SUM="ac53748592d18d8c8b63b5bd65a2ab28" +DOWNLOAD_x86_64= +MD5SUM_x86_64= +REQUIRES= +MAINTAINER="Duncan Roe" +EMAIL="duncan_roe@optusnet.com.au" diff --git a/python/python3-pyclipper/slack-desc b/python/python3-pyclipper/slack-desc new file mode 100644 index 0000000000..3994816b37 --- /dev/null +++ b/python/python3-pyclipper/slack-desc @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +python3-pyclipper: python3-pyclipper (Wrapper for C++ translation of the Clipper library) +python3-pyclipper: +python3-pyclipper: Pyclipper is a Cython wrapper exposing public functions and classes +python3-pyclipper: of the C++ translation of the Angus Johnson's Clipper library +python3-pyclipper: (ver. 6.4.2). +python3-pyclipper: +python3-pyclipper: +python3-pyclipper: +python3-pyclipper: +python3-pyclipper: +python3-pyclipper: |