From 2ed77e80d4e0c9fbc4a63aee6432f1f423e5f933 Mon Sep 17 00:00:00 2001 From: Aleksandar Samardzic Date: Tue, 11 May 2010 22:53:38 +0200 Subject: development/pygccxml: Added to 12.1 repository --- development/pygccxml/README | 10 ++++++ development/pygccxml/pygccxml.SlackBuild | 58 ++++++++++++++++++++++++++++++++ development/pygccxml/pygccxml.info | 8 +++++ development/pygccxml/slack-desc | 19 +++++++++++ 4 files changed, 95 insertions(+) create mode 100644 development/pygccxml/README create mode 100644 development/pygccxml/pygccxml.SlackBuild create mode 100644 development/pygccxml/pygccxml.info create mode 100644 development/pygccxml/slack-desc diff --git a/development/pygccxml/README b/development/pygccxml/README new file mode 100644 index 0000000000..b603bb978d --- /dev/null +++ b/development/pygccxml/README @@ -0,0 +1,10 @@ +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 new file mode 100644 index 0000000000..ae07beee31 --- /dev/null +++ b/development/pygccxml/pygccxml.SlackBuild @@ -0,0 +1,58 @@ +#!/bin/sh + +# Slackware build script for pygccxml + +# Written by Aleksandar Samardzic + +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 new file mode 100644 index 0000000000..4cb4620fa1 --- /dev/null +++ b/development/pygccxml/pygccxml.info @@ -0,0 +1,8 @@ +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 new file mode 100644 index 0000000000..81d9ca9e4c --- /dev/null +++ b/development/pygccxml/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----------------------------------------------------| +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: -- cgit v1.2.3