From 3083d7626d834d262d01942c270cf48608faa171 Mon Sep 17 00:00:00 2001 From: Andy Alt Date: Sun, 29 Apr 2012 20:16:40 -0400 Subject: python/Pygments: Updated for version 1.5 and moved from development. Signed-off-by: dsomero --- development/Pygments/Pygments.SlackBuild | 61 -------------------------------- development/Pygments/Pygments.info | 10 ------ development/Pygments/README | 11 ------ development/Pygments/slack-desc | 19 ---------- python/Pygments/Pygments.SlackBuild | 61 ++++++++++++++++++++++++++++++++ python/Pygments/Pygments.info | 10 ++++++ python/Pygments/README | 11 ++++++ python/Pygments/slack-desc | 19 ++++++++++ 8 files changed, 101 insertions(+), 101 deletions(-) delete mode 100644 development/Pygments/Pygments.SlackBuild delete mode 100644 development/Pygments/Pygments.info delete mode 100644 development/Pygments/README delete mode 100644 development/Pygments/slack-desc create mode 100644 python/Pygments/Pygments.SlackBuild create mode 100644 python/Pygments/Pygments.info create mode 100644 python/Pygments/README create mode 100644 python/Pygments/slack-desc diff --git a/development/Pygments/Pygments.SlackBuild b/development/Pygments/Pygments.SlackBuild deleted file mode 100644 index c49c6588b4..0000000000 --- a/development/Pygments/Pygments.SlackBuild +++ /dev/null @@ -1,61 +0,0 @@ -#!/bin/sh - -# Slackware build script for Pygments - -# Written by Grissiom -# Updated by LukenShiro - -PRGNAM=Pygments -VERSION=${VERSION:-1.4} -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} - -DOCFILES="LICENSE TODO AUTHORS CHANGES docs/build/*.html" - -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 --prefix=/usr --root=$PKG - -mkdir -p $PKG/usr/man/man1 -cp -a docs/pygmentize.1 $PKG/usr/man/man1 -# Adapting to Slackware's directory layout -sed -i "s|share/doc/python-pygments|doc/${PRGNAM}-${VERSION}|" \ - $PKG/usr/man/man1/pygmentize.1 - -find $PKG/usr/man -type f -exec gzip -9 {} \; - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCFILES $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/development/Pygments/Pygments.info b/development/Pygments/Pygments.info deleted file mode 100644 index 2d38997171..0000000000 --- a/development/Pygments/Pygments.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="Pygments" -VERSION="1.4" -HOMEPAGE="http://pygments.org/" -DOWNLOAD="http://pypi.python.org/packages/source/P/Pygments/Pygments-1.4.tar.gz" -MD5SUM="d77ac8c93a7fb27545f2522abe9cc462" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="LukenShiro" -EMAIL="lukenshiro@ngi.it" -APPROVED="rworkman" diff --git a/development/Pygments/README b/development/Pygments/README deleted file mode 100644 index 975ce911d5..0000000000 --- a/development/Pygments/README +++ /dev/null @@ -1,11 +0,0 @@ -Pygments is a generic syntax highlighter for general use in all kinds of -software such as forum systems, wikis or other applications that need to -prettify source code. - -Highlights are: - * A wide range of common languages and markup formats is supported. - * Special attention is paid to details, increasing quality by a fair amount. - * Support for new languages and formats are added easily. - * A number of output formats, presently HTML, LaTeX, RTF, SVG and ANSI - sequences. - * It is usable as a command-line tool and as a library. diff --git a/development/Pygments/slack-desc b/development/Pygments/slack-desc deleted file mode 100644 index 31af28f8ad..0000000000 --- a/development/Pygments/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------------------------------------------------------| -Pygments: Pygments (syntax highlighting package written in Python) -Pygments: -Pygments: It is a generic syntax highlighter for general use in all kinds of -Pygments: software such as forum systems, wikis or other applications that need -Pygments: to prettify source code. A wide range of common languages and markup -Pygments: formats is supported. -Pygments: -Pygments: -Pygments: -Pygments: -Pygments: diff --git a/python/Pygments/Pygments.SlackBuild b/python/Pygments/Pygments.SlackBuild new file mode 100644 index 0000000000..dfcc881cfc --- /dev/null +++ b/python/Pygments/Pygments.SlackBuild @@ -0,0 +1,61 @@ +#!/bin/sh + +# Slackware build script for Pygments + +# Written by Grissiom +# Updated by LukenShiro, Italy + +PRGNAM=Pygments +VERSION=${VERSION:-1.5} +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} + +DOCFILES="LICENSE TODO AUTHORS CHANGES docs/build/*.html" + +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 --prefix=/usr --root=$PKG + +mkdir -p $PKG/usr/man/man1 +cp -a docs/pygmentize.1 $PKG/usr/man/man1 +# Adapting to Slackware's directory layout +sed -i "s|share/doc/python-pygments|doc/${PRGNAM}-${VERSION}|" \ + $PKG/usr/man/man1/pygmentize.1 + +find $PKG/usr/man -type f -exec gzip -9 {} \; + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a $DOCFILES $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/Pygments/Pygments.info b/python/Pygments/Pygments.info new file mode 100644 index 0000000000..c6444e4458 --- /dev/null +++ b/python/Pygments/Pygments.info @@ -0,0 +1,10 @@ +PRGNAM="Pygments" +VERSION="1.5" +HOMEPAGE="http://pygments.org/" +DOWNLOAD="http://pypi.python.org/packages/source/P/Pygments/Pygments-1.5.tar.gz" +MD5SUM="ef997066cc9ee7a47d01fb4f3da0b5ff" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="LukenShiro" +EMAIL="lukenshiro@ngi.it" +APPROVED="dsomero" diff --git a/python/Pygments/README b/python/Pygments/README new file mode 100644 index 0000000000..975ce911d5 --- /dev/null +++ b/python/Pygments/README @@ -0,0 +1,11 @@ +Pygments is a generic syntax highlighter for general use in all kinds of +software such as forum systems, wikis or other applications that need to +prettify source code. + +Highlights are: + * A wide range of common languages and markup formats is supported. + * Special attention is paid to details, increasing quality by a fair amount. + * Support for new languages and formats are added easily. + * A number of output formats, presently HTML, LaTeX, RTF, SVG and ANSI + sequences. + * It is usable as a command-line tool and as a library. diff --git a/python/Pygments/slack-desc b/python/Pygments/slack-desc new file mode 100644 index 0000000000..31af28f8ad --- /dev/null +++ b/python/Pygments/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------------------------------------------------------| +Pygments: Pygments (syntax highlighting package written in Python) +Pygments: +Pygments: It is a generic syntax highlighter for general use in all kinds of +Pygments: software such as forum systems, wikis or other applications that need +Pygments: to prettify source code. A wide range of common languages and markup +Pygments: formats is supported. +Pygments: +Pygments: +Pygments: +Pygments: +Pygments: -- cgit v1.2.3