diff options
| author | Isaac Yu <isaacyu@protonmail.com> | 2025-11-20 10:18:42 +0700 |
|---|---|---|
| committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2025-11-22 07:42:42 +0700 |
| commit | 4a78c5adf33a29c77444185e079312c4d7daaf9f (patch) | |
| tree | 76367ba7fad21d54a7b02132433d2f0b68d1ce68 /python/python3-numpydoc | |
| parent | 9afa88aa68a71d4978705cd144e204f01e3d42a2 (diff) | |
python/python3-numpydoc: Added (Sphinx extension).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-numpydoc')
| -rw-r--r-- | python/python3-numpydoc/README | 7 | ||||
| -rw-r--r-- | python/python3-numpydoc/python3-numpydoc.SlackBuild | 85 | ||||
| -rw-r--r-- | python/python3-numpydoc/python3-numpydoc.info | 10 | ||||
| -rw-r--r-- | python/python3-numpydoc/slack-desc | 19 |
4 files changed, 121 insertions, 0 deletions
diff --git a/python/python3-numpydoc/README b/python/python3-numpydoc/README new file mode 100644 index 0000000000..c134025820 --- /dev/null +++ b/python/python3-numpydoc/README @@ -0,0 +1,7 @@ +Sphinx extension to support docstrings in Numpy format. +Numpy's documentation uses several custom extensions to Sphinx. +These are shipped in this numpydoc package, in case you want to +make use of them in third-party projects. + +python3-numpydoc 1.6.0 is the last available version for Slackware 15.0. +Newer versions require Sphinx >= 6. diff --git a/python/python3-numpydoc/python3-numpydoc.SlackBuild b/python/python3-numpydoc/python3-numpydoc.SlackBuild new file mode 100644 index 0000000000..e6969b1dc7 --- /dev/null +++ b/python/python3-numpydoc/python3-numpydoc.SlackBuild @@ -0,0 +1,85 @@ +#!/bin/bash + +# Slackware build script for python3-numpydoc + +# Copyright 2015-2024 Dimitris Zlatanidis Orestiada, Greece +# Copyright 2024 Isaac Yu <isaacyu@protonmail.com> +# 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=python3-numpydoc +VERSION=${VERSION:-1.6.0} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +SRCNAM=numpydoc + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +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 $SRCNAM-$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 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +PYVER=$(python3 -c 'import sys; print("%d.%d" % sys.version_info[:2])') +export PYTHONPATH=/opt/python$PYVER/site-packages + +python3 -m build --wheel --no-isolation +python3 -m installer --destdir "$PKG" dist/*.whl + +find $PKG -print1 | 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 README.rst LICENSE.txt $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/python3-numpydoc/python3-numpydoc.info b/python/python3-numpydoc/python3-numpydoc.info new file mode 100644 index 0000000000..b88e915ef0 --- /dev/null +++ b/python/python3-numpydoc/python3-numpydoc.info @@ -0,0 +1,10 @@ +PRGNAM="python3-numpydoc" +VERSION="1.6.0" +HOMEPAGE="https://github.com/numpy/numpydoc" +DOWNLOAD="https://files.pythonhosted.org/packages/source/n/numpydoc/numpydoc-1.6.0.tar.gz" +MD5SUM="227e5a257f4bfe488a257d963c2df5bc" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="Sphinx python3-tabulate" +MAINTAINER="Isaac Yu" +EMAIL="isaacyu@protonmail.com" diff --git a/python/python3-numpydoc/slack-desc b/python/python3-numpydoc/slack-desc new file mode 100644 index 0000000000..31bb3038ea --- /dev/null +++ b/python/python3-numpydoc/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-numpydoc: python3-numpydoc (Sphinx extension) +python3-numpydoc: +python3-numpydoc: Numpy's documentation uses several custom extensions to Sphinx. +python3-numpydoc: These are shipped in this numpydoc package, in case you want to +python3-numpydoc: make use of them in third-party projects. +python3-numpydoc: +python3-numpydoc: Homepage: https://github.com/numpy/numpydoc +python3-numpydoc: +python3-numpydoc: +python3-numpydoc: +python3-numpydoc: |
