mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
development/Sphinx: Added (Documentation generator)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
c7d3396ba1
commit
25fbd15480
4 changed files with 110 additions and 0 deletions
23
development/Sphinx/README
Normal file
23
development/Sphinx/README
Normal file
|
@ -0,0 +1,23 @@
|
|||
Sphinx (Documentation generator)
|
||||
|
||||
Sphinx is a tool that translates a set of reStructuredText source
|
||||
files into various output formats, automatically producing
|
||||
cross-references, indices etc. The focus is on hand-written
|
||||
documentation, rather than auto-generated API docs. Though there is
|
||||
support for that kind of docs as well (which is intended to be
|
||||
freely mixed with hand-written content). If you need pure API docs
|
||||
have a look at Epydoc, which also understands reST.
|
||||
|
||||
This requires pysetuptools, docutils, and Jinja2.
|
||||
|
||||
Jinja2 circular dependencies warning:
|
||||
|
||||
The DOCS=yes flag needs Sphinx to build python docs, it and needs Jinja2
|
||||
but that needs Sphinx because you have set its DOCS=yes flag.
|
||||
If you really need the docs build Jinja2 without the DOCS=yes flag
|
||||
build Sphinx then rebuild Jinja2 with DOCS=yes.
|
||||
|
||||
Incidentally, unless you are a developer, you don't normally need the
|
||||
DOCS=yes flag.
|
||||
|
||||
Optionally, Pygments can be used at runtime, if installed.
|
58
development/Sphinx/Sphinx.SlackBuild
Normal file
58
development/Sphinx/Sphinx.SlackBuild
Normal file
|
@ -0,0 +1,58 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for Sphinx
|
||||
|
||||
# Written by Mikko Värri (vmj@linuxbox.fi)
|
||||
# Public domain.
|
||||
|
||||
PRGNAM=Sphinx
|
||||
VERSION=${VERSION:-1.0.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}
|
||||
|
||||
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
|
||||
|
||||
PYTHONPATH="../" \
|
||||
make -C doc SPHINXBUILD="python ../sphinx-build.py" html
|
||||
|
||||
find $PKG | xargs 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 CHANGES EXAMPLES LICENSE README doc/_build/html \
|
||||
$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}
|
10
development/Sphinx/Sphinx.info
Normal file
10
development/Sphinx/Sphinx.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="Sphinx"
|
||||
VERSION="1.0.1"
|
||||
HOMEPAGE="http://sphinx.pocoo.org/"
|
||||
DOWNLOAD="http://pypi.python.org/packages/source/S/Sphinx/Sphinx-1.0.1.tar.gz"
|
||||
MD5SUM="d3a57ffcf2592da494aeca4b62e815ef"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Mikko Värri"
|
||||
EMAIL="vmj@linuxbox.fi"
|
||||
APPROVED="dsomero"
|
19
development/Sphinx/slack-desc
Normal file
19
development/Sphinx/slack-desc
Normal file
|
@ -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------------------------------------------------------|
|
||||
Sphinx: Sphinx (Documentation generator)
|
||||
Sphinx:
|
||||
Sphinx: Sphinx is a tool that translates a set of reStructuredText source
|
||||
Sphinx: files into various output formats, automatically producing
|
||||
Sphinx: cross-references, indices etc. The focus is on hand-written
|
||||
Sphinx: documentation, rather than auto-generated API docs. Though there is
|
||||
Sphinx: support for that kind of docs as well (which is intended to be
|
||||
Sphinx: freely mixed with hand-written content). If you need pure API docs
|
||||
Sphinx: have a look at Epydoc, which also understands reST.
|
||||
Sphinx:
|
||||
Sphinx:
|
Loading…
Reference in a new issue