diff options
Diffstat (limited to 'development')
-rw-r--r-- | development/pygccxml/README | 10 | ||||
-rw-r--r-- | development/pygccxml/pygccxml.SlackBuild | 58 | ||||
-rw-r--r-- | development/pygccxml/pygccxml.info | 8 | ||||
-rw-r--r-- | development/pygccxml/slack-desc | 19 |
4 files changed, 0 insertions, 95 deletions
diff --git a/development/pygccxml/README b/development/pygccxml/README deleted file mode 100644 index b603bb978d..0000000000 --- a/development/pygccxml/README +++ /dev/null @@ -1,10 +0,0 @@ -The purpose of pygccxml is to read a generated file and provide a -simple framework to navigate C++ declarations, using Python classes. -It provides functionality to extract and inspect declarations from -C/C++ header files. This is accomplished by invoking the external tool -gccxml which parses a header file and dumps the declarations as a XML -file. This XML file is then read by pygccxml and the contents are made -available as appropriate Python objects. - -The pygccxml package is dependent upon gccxml package, also available -on SlackBuilds.org. diff --git a/development/pygccxml/pygccxml.SlackBuild b/development/pygccxml/pygccxml.SlackBuild deleted file mode 100644 index ae07beee31..0000000000 --- a/development/pygccxml/pygccxml.SlackBuild +++ /dev/null @@ -1,58 +0,0 @@ -#!/bin/sh - -# Slackware build script for pygccxml - -# Written by Aleksandar Samardzic <asamardzic@gmail.com> - -PRGNAM=pygccxml -VERSION=${VERSION:-1.0.0} -ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=${PKG:-$TMP/package-$PRGNAM} -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -unzip $CWD/$PRGNAM-$VERSION.zip -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 LICENSE_1_0.txt MANIFEST README.txt announcement.txt \ - $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -find $PKG/usr/doc -type f -exec chmod 0644 {} \; - -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/pygccxml/pygccxml.info b/development/pygccxml/pygccxml.info deleted file mode 100644 index 4cb4620fa1..0000000000 --- a/development/pygccxml/pygccxml.info +++ /dev/null @@ -1,8 +0,0 @@ -PRGNAM="pygccxml" -VERSION="1.0.0" -HOMEPAGE="http://www.language-binding.net/pygccxml/pygccxml.html" -DOWNLOAD="http://downloads.sourceforge.net/pygccxml/pygccxml-1.0.0.zip" -MD5SUM="44badbf8c4bcd3095290a90f2f2a9234" -MAINTAINER="Aleksandar Samardzic" -EMAIL="asamardzic@gmail.com" -APPROVED="dsomero" diff --git a/development/pygccxml/slack-desc b/development/pygccxml/slack-desc deleted file mode 100644 index 81d9ca9e4c..0000000000 --- a/development/pygccxml/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 ':'. - - |-----handy-ruler----------------------------------------------------| -pygccxml: pygccxml (Python GCC-XML front end) -pygccxml: -pygccxml: The purpose of pygccxml is to read a generated file and -pygccxml: provide a simple framework to navigate C++ declarations, -pygccxml: using Python classes. -pygccxml: -pygccxml: Homepage: http://www.language-binding.net/pygccxml/pygccxml.html -pygccxml: -pygccxml: -pygccxml: -pygccxml: |