aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-06-05 13:21:21 +0200
committerDanilo M. <danix@danix.xyz>2026-06-05 13:21:21 +0200
commit35c5bdf8533c2013f026114a96ae50a1a7e177ab (patch)
tree8008280b79babeb904f53160965a99ae187a6057
parentffb9bd6efb842695f86952d78e29204cd893789b (diff)
downloadmy-slackbuilds-35c5bdf8533c2013f026114a96ae50a1a7e177ab.tar.gz
my-slackbuilds-35c5bdf8533c2013f026114a96ae50a1a7e177ab.zip
Added click 8.4.1 (sbo is stuck at 8.1.8)main
-rw-r--r--.extras/nvchecker.toml5
-rw-r--r--README.md1
-rw-r--r--click/README19
-rw-r--r--click/click.SlackBuild83
-rw-r--r--click/click.info10
-rw-r--r--click/slack-desc19
6 files changed, 137 insertions, 0 deletions
diff --git a/.extras/nvchecker.toml b/.extras/nvchecker.toml
index 038535e..65cd627 100644
--- a/.extras/nvchecker.toml
+++ b/.extras/nvchecker.toml
@@ -97,3 +97,8 @@ pypi = "typer"
[python3-huggingface_hub]
source = "pypi"
pypi = "huggingface_hub"
+
+[click]
+source = "github"
+github = "mitsuhiko/click"
+use_max_tag = true
diff --git a/README.md b/README.md
index 03544bf..5a16267 100644
--- a/README.md
+++ b/README.md
@@ -54,6 +54,7 @@ Each package lives in its own top-level subfolder:
| python3-annotated-doc | ✅ | not tested | ❌ | 0.0.4 | 0.0.4 |
| python3-typer | ✅ | not tested | ❌ | 0.25.1 | 0.25.1 |
| python3-huggingface_hub | ✅ | not tested | ❌ | 1.18.0 | 1.18.0 |
+| click | ✅ | not tested | ✅ | 8.4.1 | 8.4.1 |
---
diff --git a/click/README b/click/README
new file mode 100644
index 0000000..f454dc3
--- /dev/null
+++ b/click/README
@@ -0,0 +1,19 @@
+$ click_
+
+Click is a Python package for creating beautiful command line interfaces
+in a composable way with as little code as necessary. It's the "Command
+Line Interface Creation Kit". It's highly configurable but comes with
+sensible defaults out of the box.
+
+It aims to make the process of writing command line tools quick and
+fun while also preventing any frustration caused by the inability to
+implement an intended CLI API.
+
+NOTE: click-8.1.x is the last version to support python-3.9
+
+NOTE:
+-Use click-legacy7 if you need click<=8 and/or python2 support
+
+IMPORTANT:
+-Conflicts with click-legacy7 and both cannot be installed at the same
+ time.
diff --git a/click/click.SlackBuild b/click/click.SlackBuild
new file mode 100644
index 0000000..f7c7b6d
--- /dev/null
+++ b/click/click.SlackBuild
@@ -0,0 +1,83 @@
+#!/bin/bash
+
+# Slackware build script for click
+
+# Copyright 2022-2025 fourtysixandtwo <fourtysixandtwo@sliderr.net>
+# Copyright 2014-2018 Dimitris Zlatanidis Orestiada, Greece
+# 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.
+
+# 20220512 46and2: Updated version, new maintainer.
+# - Removed python2 support
+
+cd $(dirname $0) ; CWD=$(pwd)
+
+PRGNAM=click
+VERSION=${VERSION:-8.4.1}
+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 [ ! -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 $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 -m flit_core.wheel
+python3 -m installer -d "$PKG" dist/*.whl
+
+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.rst LICENSE.txt README.md docs/*.rst $PKG/usr/doc/$PRGNAM-$VERSION || true
+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/click/click.info b/click/click.info
new file mode 100644
index 0000000..38c2dcf
--- /dev/null
+++ b/click/click.info
@@ -0,0 +1,10 @@
+PRGNAM="click"
+VERSION="8.4.1"
+HOMEPAGE="https://github.com/mitsuhiko/click"
+DOWNLOAD="https://files.pythonhosted.org/packages/source/c/click/click-8.4.1.tar.gz"
+MD5SUM="28bc070cf89b06d88bf74b2d3c4debc7"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
+REQUIRES="python3-installer"
+MAINTAINER="fourtysixandtwo"
+EMAIL="fourtysixandtwo@sliderr.net"
diff --git a/click/slack-desc b/click/slack-desc
new file mode 100644
index 0000000..e80a127
--- /dev/null
+++ b/click/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------------------------------------------------------|
+click: click (Python composable command line utility)
+click:
+click: Click is a Python package for creating beautiful command line
+click: interfaces in a composable way with as little code as necessary.
+click: It's the "Command Line Interface Creation Kit". It's highly
+click: configurable but comes with sensible defaults out of the box.
+click:
+click: Homepage: https://github.com/mitsuhiko/click
+click:
+click:
+click: