diff options
author | Alexander Verbovetsky <alik@ejik.org> | 2023-05-05 22:19:26 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-05-06 08:28:30 +0700 |
commit | d8ae152b551374c8bb88944e2f332c7de4964673 (patch) | |
tree | 0779fc4b5e4202a9ab690187da0091d402021121 /libraries/python2-ruamel.yaml | |
parent | ca4c42bb5db13e3415f8f18034228d8fb24cdb32 (diff) |
libraries/python2-ruamel.yaml: Added (Py2 YAML 1.2 parser/emitter)
Signed-off-by: bedlam <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/python2-ruamel.yaml')
-rw-r--r-- | libraries/python2-ruamel.yaml/README | 15 | ||||
-rw-r--r-- | libraries/python2-ruamel.yaml/python2-ruamel.yaml.SlackBuild | 79 | ||||
-rw-r--r-- | libraries/python2-ruamel.yaml/python2-ruamel.yaml.info | 10 | ||||
-rw-r--r-- | libraries/python2-ruamel.yaml/slack-desc | 19 |
4 files changed, 123 insertions, 0 deletions
diff --git a/libraries/python2-ruamel.yaml/README b/libraries/python2-ruamel.yaml/README new file mode 100644 index 0000000000000..b6476a7c67717 --- /dev/null +++ b/libraries/python2-ruamel.yaml/README @@ -0,0 +1,15 @@ +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/python2-ruamel.yaml/python2-ruamel.yaml.SlackBuild b/libraries/python2-ruamel.yaml/python2-ruamel.yaml.SlackBuild new file mode 100644 index 0000000000000..5b5a8904f3ab6 --- /dev/null +++ b/libraries/python2-ruamel.yaml/python2-ruamel.yaml.SlackBuild @@ -0,0 +1,79 @@ +#!/bin/bash + +# Slackware build script for python2-ruamel.yaml + +# Copyright 2019-2023, 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=python2-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:8}-$VERSION +tar xvf $CWD/${PRGNAM:8}-$VERSION.tar.gz +cd ${PRGNAM:8}-$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 + +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/python2-ruamel.yaml/python2-ruamel.yaml.info b/libraries/python2-ruamel.yaml/python2-ruamel.yaml.info new file mode 100644 index 0000000000000..9ab8efd42e105 --- /dev/null +++ b/libraries/python2-ruamel.yaml/python2-ruamel.yaml.info @@ -0,0 +1,10 @@ +PRGNAM="python2-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/python2-ruamel.yaml/slack-desc b/libraries/python2-ruamel.yaml/slack-desc new file mode 100644 index 0000000000000..af17f8db6d8e2 --- /dev/null +++ b/libraries/python2-ruamel.yaml/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------------------------------------------------------| +python2-ruamel.yaml: python2-ruamel.yaml (YAML 1.2 parser and emitter for Python) +python2-ruamel.yaml: +python2-ruamel.yaml: ruamel.yaml is a YAML 1.2 parser and emitter for Python that support +python2-ruamel.yaml: comment preservation. +python2-ruamel.yaml: +python2-ruamel.yaml: +python2-ruamel.yaml: Homepage: https://sourceforge.net/p/ruamel-yaml +python2-ruamel.yaml: +python2-ruamel.yaml: +python2-ruamel.yaml: +python2-ruamel.yaml: |