From e5c1a597fb7cf0bdd7a192407ab648a934849dc0 Mon Sep 17 00:00:00 2001 From: Brenton Earl Date: Wed, 18 Nov 2015 22:40:29 +0700 Subject: python/phply: Added (PHP lexer and parser in Python). Signed-off-by: Willy Sudiarto Raharjo --- python/phply/README | 15 +++++++ python/phply/phply-setup.py.diff | 18 ++++++++ python/phply/phply.SlackBuild | 88 ++++++++++++++++++++++++++++++++++++++++ python/phply/phply.info | 10 +++++ python/phply/slack-desc | 19 +++++++++ 5 files changed, 150 insertions(+) create mode 100644 python/phply/README create mode 100644 python/phply/phply-setup.py.diff create mode 100644 python/phply/phply.SlackBuild create mode 100644 python/phply/phply.info create mode 100644 python/phply/slack-desc (limited to 'python/phply') diff --git a/python/phply/README b/python/phply/README new file mode 100644 index 0000000000..c966d94bc9 --- /dev/null +++ b/python/phply/README @@ -0,0 +1,15 @@ +phply is a lexer and parser for the PHP programming language written in +Python. + +Included tools installed to /usr/bin: + +phpshell.py - PHP interactive interpreter written in Python + +php2json.py - Converts PHP to a JSON-based abstract syntax tree +Usage: php2json.py < input.php > output.json + +php2python.py - Converts PHP to Python using unparse.py +Usage: php2python.py < input.php > output.py + +php2jinja.py - Converts PHP to Jinja2 templates (experimental) +Usage: php2jinja.py < input.php > output.html diff --git a/python/phply/phply-setup.py.diff b/python/phply/phply-setup.py.diff new file mode 100644 index 0000000000..34f495ac99 --- /dev/null +++ b/python/phply/phply-setup.py.diff @@ -0,0 +1,18 @@ +--- phply-0.9.1.orig/setup.py 2015-11-16 13:07:31.666674204 -0700 ++++ phply-0.9.1/setup.py 2015-11-16 13:15:02.571666129 -0700 +@@ -19,6 +19,15 @@ + license='BSD', + url='http://www.github.com/ramen/phply', + ++ scripts=[ ++ 'tools/php2jinja.py', ++ 'tools/php2json.py', ++ 'tools/php2python.py', ++ 'tools/phpshell.py', ++ 'tools/tokenize.php', ++ 'tools/unparse.py', ++ ], ++ + classifiers=[ + 'Development Status :: 2 - Pre-Alpha', + 'Environment :: Console', diff --git a/python/phply/phply.SlackBuild b/python/phply/phply.SlackBuild new file mode 100644 index 0000000000..f8dc1945af --- /dev/null +++ b/python/phply/phply.SlackBuild @@ -0,0 +1,88 @@ +#!/bin/sh + +# Slackware build script for phply + +# Copyright 2015 Brenton Earl +# 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. + +PRGNAM=phply +VERSION=${VERSION:-0.9.1} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +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 -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 {} \; + +# make setup.py include scripts in $PRGNAM-$VERSION/tools/ +patch -p1 --verbose < $CWD/phply-setup.py.diff + +python 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 AUTHORS LICENSE PKG-INFO README.md $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} diff --git a/python/phply/phply.info b/python/phply/phply.info new file mode 100644 index 0000000000..1540e5a76d --- /dev/null +++ b/python/phply/phply.info @@ -0,0 +1,10 @@ +PRGNAM="phply" +VERSION="0.9.1" +HOMEPAGE="https://github.com/ramen/phply" +DOWNLOAD="https://pypi.python.org/packages/source/p/phply/phply-0.9.1.tar.gz" +MD5SUM="f336ab9d35bd9c0f0a50ede3252b12ba" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="ply simplejson pysetuptools" +MAINTAINER="Brenton Earl" +EMAIL="brent@exitstatusone.com" diff --git a/python/phply/slack-desc b/python/phply/slack-desc new file mode 100644 index 0000000000..2fa1fe2b2a --- /dev/null +++ b/python/phply/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------------------------------------------------------| +phply: phply (PHP lexer and parser in Python) +phply: +phply: phply is a lexer and parser for the PHP programming language +phply: written in Python. +phply: +phply: Home page: https://github.com/ramen/phply +phply: +phply: +phply: +phply: +phply: -- cgit v1.2.3