diff options
author | Alexander Verbovetsky <alik@ejik.org> | 2023-05-10 22:48:33 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-05-13 19:27:07 +0700 |
commit | 50290121063805d05c2822049c62e5be6daa5b32 (patch) | |
tree | a6e5c8cc842606d58c67cc2a2c23bd75196ca8af /libraries/python-ruamel.yaml | |
parent | ee8b093867e22e6f3b98f0becea9db72243ff8be (diff) |
libraries/python-ruamel.yaml: Removed at maintainer's request.
Signed-off-by: bedlam <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/python-ruamel.yaml')
-rw-r--r-- | libraries/python-ruamel.yaml/README | 15 | ||||
-rw-r--r-- | libraries/python-ruamel.yaml/python-ruamel.yaml.SlackBuild | 80 | ||||
-rw-r--r-- | libraries/python-ruamel.yaml/python-ruamel.yaml.info | 10 | ||||
-rw-r--r-- | libraries/python-ruamel.yaml/slack-desc | 19 |
4 files changed, 0 insertions, 124 deletions
diff --git a/libraries/python-ruamel.yaml/README b/libraries/python-ruamel.yaml/README deleted file mode 100644 index b6476a7c67717..0000000000000 --- a/libraries/python-ruamel.yaml/README +++ /dev/null @@ -1,15 +0,0 @@ -YAML is a human friendly data serialization standard for all programming -languages. It is commonly used for configuration files, logs, etc. - -ruamel.yaml is a YAML 1.2 loader/dumper package for Python. It is a -derivative of Kirill Simonov's PyYAML 3.11. - -ruamel.yaml supports YAML 1.2 and has round-trip loaders and dumpers -that preserves, among others: - -* comments -* block style and key ordering are kept, so you can diff the - round-tripped source -* flow style sequences ( ‘a: b, c, d’) -* anchor names that are hand-crafted (i.e. not of the form``idNNN``) -* merges in dictionaries are preserved diff --git a/libraries/python-ruamel.yaml/python-ruamel.yaml.SlackBuild b/libraries/python-ruamel.yaml/python-ruamel.yaml.SlackBuild deleted file mode 100644 index 206783761effb..0000000000000 --- a/libraries/python-ruamel.yaml/python-ruamel.yaml.SlackBuild +++ /dev/null @@ -1,80 +0,0 @@ -#!/bin/bash - -# Slackware build script for python-ruamel.yaml - -# Copyright 2019-2022, Alexander Verbovetsky, Moscow, Russia -# 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=python-ruamel.yaml -VERSION=${VERSION:-0.16.13} -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:7}-$VERSION -tar xvf $CWD/${PRGNAM:7}-$VERSION.tar.gz -cd ${PRGNAM:7}-$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 {} \; - -RUAMEL_NO_PIP_INSTALL_CHECK=1 python2 setup.py install --root=$PKG -RUAMEL_NO_PIP_INSTALL_CHECK=1 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 CHANGES 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/libraries/python-ruamel.yaml/python-ruamel.yaml.info b/libraries/python-ruamel.yaml/python-ruamel.yaml.info deleted file mode 100644 index 23f7b95f379f6..0000000000000 --- a/libraries/python-ruamel.yaml/python-ruamel.yaml.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-ruamel.yaml" -VERSION="0.16.13" -HOMEPAGE="https://sourceforge.net/p/ruamel-yaml" -DOWNLOAD="https://pypi.org/packages/source/r/ruamel.yaml/ruamel.yaml-0.16.13.tar.gz" -MD5SUM="fa6c72a79b9f420628d83c2d50f9e4c7" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Alexander Verbovetsky" -EMAIL="alik@ejik.org" diff --git a/libraries/python-ruamel.yaml/slack-desc b/libraries/python-ruamel.yaml/slack-desc deleted file mode 100644 index 0c46c88a771a0..0000000000000 --- a/libraries/python-ruamel.yaml/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-ruamel.yaml: python-ruamel.yaml (YAML 1.2 parser and emitter for Python) -python-ruamel.yaml: -python-ruamel.yaml: ruamel.yaml is a YAML 1.2 parser and emitter for Python that support -python-ruamel.yaml: comment preservation. -python-ruamel.yaml: -python-ruamel.yaml: -python-ruamel.yaml: Homepage: https://sourceforge.net/p/ruamel-yaml -python-ruamel.yaml: -python-ruamel.yaml: -python-ruamel.yaml: -python-ruamel.yaml: |