summaryrefslogtreecommitdiffstats
path: root/source/l/python-tomli
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2024-03-30 18:08:12 +0000
committer Eric Hameleers <alien@slackware.com>2024-03-30 19:28:56 +0100
commit730cbea73016aa93a7291927d237c371d9b196cd (patch)
treeed04d78d1ae1bd92b09f4d2d3bdac4d5baa01460 /source/l/python-tomli
parent44183f6ba3935ea6dd56a2fad0394bc736e7461d (diff)
downloadcurrent-730cbea73016aa93a7291927d237c371d9b196cd.tar.gz
current-730cbea73016aa93a7291927d237c371d9b196cd.tar.xz
Sat Mar 30 18:08:12 UTC 202420240330180812
a/xz-5.6.1-x86_64-3.txz: Rebuilt. [PATCH] CMake: Fix sabotaged Landlock sandbox check. We don't build with CMake (yet), but it doesn't hurt to apply this. d/mercurial-6.7.2-x86_64-1.txz: Upgraded. l/boost-1.84.0-x86_64-3.txz: Rebuilt. Recompiled against python-3.11.8. Thanks to rinza. l/python-pycparser-2.22-x86_64-1.txz: Upgraded. l/python-pytz-2024.1-x86_64-2.txz: Removed. No longer needed with python-3.11. Thanks to audriusk. l/python-tomli-2.0.1-x86_64-2.txz: Removed. No longer needed with python-3.11. Thanks to TommyC7 and audriusk. n/c-ares-1.28.0-x86_64-1.txz: Upgraded. xap/xsnow-3.7.9-x86_64-1.txz: Upgraded. extra/brltty/brltty-6.6-x86_64-4.txz: Rebuilt. Don't install anything under /usr/local. Thanks to reddog83.
Diffstat (limited to '')
-rwxr-xr-xsource/l/python-tomli/python-tomli.SlackBuild85
-rw-r--r--source/l/python-tomli/slack-desc19
-rw-r--r--source/l/python-tomli/tomli.url1
3 files changed, 0 insertions, 105 deletions
diff --git a/source/l/python-tomli/python-tomli.SlackBuild b/source/l/python-tomli/python-tomli.SlackBuild
deleted file mode 100755
index 2302ff716..000000000
--- a/source/l/python-tomli/python-tomli.SlackBuild
+++ /dev/null
@@ -1,85 +0,0 @@
-#!/bin/bash
-
-# Copyright 2021 Heinz Wiesinger, Amsterdam, The Netherlands
-# Copyright 2021 Patrick J. Volkerding, Sebeka, MN, USA
-# 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)
-
-PKGNAM=python-tomli
-SRCNAM=tomli
-VERSION=${VERSION:-$(echo ${SRCNAM}-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-2}
-
-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.txz"
- exit 0
-fi
-
-TMP=${TMP:-/tmp}
-PKG=$TMP/package-$PKGNAM
-
-rm -rf $PKG
-mkdir -p $TMP $PKG
-cd $TMP
-rm -rf $SRCNAM-$VERSION
-tar xvf $CWD/$SRCNAM-$VERSION.tar.?z || exit 1
-cd $SRCNAM-$VERSION || exit 1
-
-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 {} \+
-
-unshare -n python3 -m build --wheel --no-isolation || exit 1
-
-python3 -m installer --destdir "$PKG" dist/*.whl || exit 1
-
-mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION
-cp -a *.rst LICENSE* NOTICE PKG-INFO README* \
- $PKG/usr/doc/$PKGNAM-$VERSION
-find $PKG/usr/doc/$PKGNAM-$VERSION -type f -exec chmod 0644 {} \+
-
-# If there's a HISTORY.rst, installing at least part of the recent history
-# is useful, but don't let it get totally out of control:
-if [ -r HISTORY.rst ]; then
- DOCSDIR=$(echo $PKG/usr/doc/${PKGNAM}-$VERSION)
- cat HISTORY.rst | head -n 1000 > $DOCSDIR/HISTORY.rst
- touch -r HISTORY.rst $DOCSDIR/HISTORY.rst
-fi
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-
-cd $PKG
-/sbin/makepkg -l y -c n $TMP/$PKGNAM-$VERSION-$ARCH-$BUILD.txz
diff --git a/source/l/python-tomli/slack-desc b/source/l/python-tomli/slack-desc
deleted file mode 100644
index 80be264c2..000000000
--- a/source/l/python-tomli/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-tomli: python-tomli (A lil' TOML parser)
-python-tomli:
-python-tomli: Tomli is a Python library for parsing TOML (a minimal configuration
-python-tomli: file format).
-python-tomli:
-python-tomli: Homepage: https://github.com/hukkin/tomli
-python-tomli:
-python-tomli:
-python-tomli:
-python-tomli:
-python-tomli:
diff --git a/source/l/python-tomli/tomli.url b/source/l/python-tomli/tomli.url
deleted file mode 100644
index 22bfedf76..000000000
--- a/source/l/python-tomli/tomli.url
+++ /dev/null
@@ -1 +0,0 @@
-https://pypi.org/project/tomli