From f7295a60aebffd11d26c7e21951d9b6995f88074 Mon Sep 17 00:00:00 2001 From: Larry Hajali Date: Wed, 12 May 2010 23:28:33 +0200 Subject: development/Cython: Added to 12.2 repository --- development/Cython/Cython.SlackBuild | 54 ++++++++++++++++++++++++++++++++++++ development/Cython/Cython.info | 8 ++++++ development/Cython/README | 4 +++ development/Cython/slack-desc | 19 +++++++++++++ 4 files changed, 85 insertions(+) create mode 100644 development/Cython/Cython.SlackBuild create mode 100644 development/Cython/Cython.info create mode 100644 development/Cython/README create mode 100644 development/Cython/slack-desc (limited to 'development/Cython') diff --git a/development/Cython/Cython.SlackBuild b/development/Cython/Cython.SlackBuild new file mode 100644 index 0000000000..e2cd207c8c --- /dev/null +++ b/development/Cython/Cython.SlackBuild @@ -0,0 +1,54 @@ +#!/bin/sh +# Slackware build script for Cython +# Written by Larry Hajali + +PRGNAM=Cython +VERSION=${VERSION:-0.11.2} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +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 . \ + \( -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 install --root=$PKG + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + *.txt Doc \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +# Fix a broken link in one of the html files +sed -i 's:~greg/python/Cython:greg.ewing/python/Pyrex:' \ + $PKG/usr/doc/$PRGNAM-$VERSION/Doc/index.html + +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.tgz diff --git a/development/Cython/Cython.info b/development/Cython/Cython.info new file mode 100644 index 0000000000..84c950db6a --- /dev/null +++ b/development/Cython/Cython.info @@ -0,0 +1,8 @@ +PRGNAM="Cython" +VERSION="0.11.2" +HOMEPAGE="http://www.cython.org/" +DOWNLOAD="http://www.cython.org/Cython-0.11.2.tar.gz" +MD5SUM="31a79d5c7365e1d18ff7be48d6c1026b" +MAINTAINER="Larry Hajali" +EMAIL="larryhaja[at]gmail[dot]com" +APPROVED="dsomero" diff --git a/development/Cython/README b/development/Cython/README new file mode 100644 index 0000000000..acba9b8132 --- /dev/null +++ b/development/Cython/README @@ -0,0 +1,4 @@ +Cython is a language that makes writing C extensions for +the Python language as easy as Python itself. Cython is +based on the well-known Pyrex, but supports more cutting +edge functionality and optimizations. \ No newline at end of file diff --git a/development/Cython/slack-desc b/development/Cython/slack-desc new file mode 100644 index 0000000000..17852d7b27 --- /dev/null +++ b/development/Cython/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 ':'. + + |-----handy-ruler------------------------------------------------------| +Cython: Cython (C bindings for Python) +Cython: +Cython: Cython is a language that makes writing C extensions for the Python +Cython: language as easy as Python itself. Cython is based on the well-known +Cython: Pyrex, but supports more cutting edge functionality and +Cython: optimizations. +Cython: +Cython: Homepage: http://www.cython.org/ +Cython: +Cython: +Cython: -- cgit v1.2.3