mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
development/pycscope: Added to 12.2 repository
This commit is contained in:
parent
7df396eaf0
commit
d8f529d95b
4 changed files with 76 additions and 0 deletions
4
development/pycscope/README
Normal file
4
development/pycscope/README
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
pycscope is a python script that generates a cscope index of Python source trees.
|
||||||
|
|
||||||
|
pycscope uses Python's own parser and AST to generate the index, so it is a
|
||||||
|
bit more accurate than plain cscope.
|
45
development/pycscope/pycscope.SlackBuild
Normal file
45
development/pycscope/pycscope.SlackBuild
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Slackware build script for PyCscope
|
||||||
|
|
||||||
|
# Written by Grissiom <chaos.proton@gmail.com>
|
||||||
|
|
||||||
|
PRGNAM=pycscope
|
||||||
|
VERSION=${VERSION:-0.3}
|
||||||
|
ARCH=${ARCH:-noarch}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
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 --prefix=/usr --root=$PKG
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a \
|
||||||
|
README LICENSE \
|
||||||
|
$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.tgz
|
8
development/pycscope/pycscope.info
Normal file
8
development/pycscope/pycscope.info
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
PRGNAM="pycscope"
|
||||||
|
VERSION="0.3"
|
||||||
|
HOMEPAGE="http://pypi.python.org/pypi/pycscope/"
|
||||||
|
DOWNLOAD="http://pypi.python.org/packages/source/p/pycscope/pycscope-0.3.tar.gz"
|
||||||
|
MD5SUM="ec83c70bce31909cb3cdeae233c00374"
|
||||||
|
MAINTAINER="Grissiom"
|
||||||
|
EMAIL="chaos.proton@gmail.com"
|
||||||
|
APPROVED="dsomero"
|
19
development/pycscope/slack-desc
Normal file
19
development/pycscope/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------------------------------------------------------|
|
||||||
|
pycscope: A python script that generates a cscope index of Python source trees
|
||||||
|
pycscope:
|
||||||
|
pycscope: pycscope uses Python's own parser and AST to generate the index, so
|
||||||
|
pycscope: it is a bit more accurate than plain cscope.
|
||||||
|
pycscope:
|
||||||
|
pycscope: Homepage: http://pypi.python.org/pypi/pycscope/
|
||||||
|
pycscope:
|
||||||
|
pycscope:
|
||||||
|
pycscope:
|
||||||
|
pycscope:
|
||||||
|
pycscope:
|
Loading…
Reference in a new issue