mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
libraries/pyyaml: Added to 13.0 repository
This commit is contained in:
parent
f82ed8e9b8
commit
af71608ad9
4 changed files with 78 additions and 0 deletions
5
libraries/pyyaml/README
Normal file
5
libraries/pyyaml/README
Normal file
|
@ -0,0 +1,5 @@
|
|||
pyyaml (YAML parser and emitter for Python)
|
||||
|
||||
YAML is a data serialization format designed for human readability
|
||||
and interaction with scripting languages. PyYAML is a YAML parser and
|
||||
emitter for Python.
|
44
libraries/pyyaml/pyyaml.SlackBuild
Normal file
44
libraries/pyyaml/pyyaml.SlackBuild
Normal file
|
@ -0,0 +1,44 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for PyYAML
|
||||
|
||||
# Written by Pablo Santamaria (pablosantamaria@gmail.com)
|
||||
|
||||
PRGNAM=pyyaml
|
||||
VERSION=${VERSION:-3.09}
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo} # For consistency's sake, use this
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp} # Drop the package in /tmp
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf PyYAML-$VERSION
|
||||
tar xvf $CWD/PyYAML-$VERSION.tar.gz
|
||||
cd PyYAML-$VERSION
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
python setup.py build
|
||||
python setup.py install --prefix=$PKG/usr
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a CHANGES LICENSE README $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:-tgz}
|
10
libraries/pyyaml/pyyaml.info
Normal file
10
libraries/pyyaml/pyyaml.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="pyyaml"
|
||||
VERSION="3.09"
|
||||
HOMEPAGE="http://pyyaml.org/"
|
||||
DOWNLOAD="http://pyyaml.org/download/pyyaml/PyYAML-3.09.tar.gz"
|
||||
MD5SUM="f219af2361e87fdc5e85e95b84c11d87"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Pablo Santamaria"
|
||||
EMAIL="pablosantamaria@gmail.com"
|
||||
APPROVED="dsomero"
|
19
libraries/pyyaml/slack-desc
Normal file
19
libraries/pyyaml/slack-desc
Normal file
|
@ -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 ':'.
|
||||
|
||||
|-----handy-ruler----------------------------------------------------|
|
||||
pyyaml: pyyaml (YAML parser and emitter for Python)
|
||||
pyyaml:
|
||||
pyyaml: YAML is a data serialization format designed for human readability
|
||||
pyyaml: and interaction with scripting languages. PyYAML is a YAML parser
|
||||
pyyaml: and emitter for Python.
|
||||
pyyaml:
|
||||
pyyaml:
|
||||
pyyaml:
|
||||
pyyaml:
|
||||
pyyaml:
|
||||
pyyaml:
|
Loading…
Reference in a new issue