From 10284949cf6cd36675f57e2a3eb288637ade0b17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikko=20V=C3=A4rri?= Date: Sat, 14 Aug 2010 15:44:41 -0500 Subject: development/setuptools_git: Added (Setuptools revision control system plugin for Git) Signed-off-by: Erik Hanson --- development/setuptools_git/README | 12 +++++ .../setuptools_git/setuptools_git.SlackBuild | 51 ++++++++++++++++++++++ development/setuptools_git/setuptools_git.info | 10 +++++ development/setuptools_git/slack-desc | 19 ++++++++ 4 files changed, 92 insertions(+) create mode 100644 development/setuptools_git/README create mode 100644 development/setuptools_git/setuptools_git.SlackBuild create mode 100644 development/setuptools_git/setuptools_git.info create mode 100644 development/setuptools_git/slack-desc diff --git a/development/setuptools_git/README b/development/setuptools_git/README new file mode 100644 index 0000000000..46d2ce11e9 --- /dev/null +++ b/development/setuptools_git/README @@ -0,0 +1,12 @@ +setuptools_git (Setuptools revision control system plugin for Git) + +This is a plugin for setuptools that enables Git integration. Once +installed, setuptools can be told to include in a module +distribution all the files tracked by git. This is an alternative +to explicit inclusion specifications with MANIFEST.in. + +This package was formerly known as gitlsfiles. The name change is +the result of an effort by the setuptools plugin developers to +provide a uniform naming convention. + +This requires pysetuptools. diff --git a/development/setuptools_git/setuptools_git.SlackBuild b/development/setuptools_git/setuptools_git.SlackBuild new file mode 100644 index 0000000000..a633c6dc03 --- /dev/null +++ b/development/setuptools_git/setuptools_git.SlackBuild @@ -0,0 +1,51 @@ +#!/bin/sh + +# Slackware build script for setuptools_git + +# Written by Mikko Värri (vmj@linuxbox.fi) +# Public domain. + +PRGNAM=setuptools_git +VERSION=${VERSION:-0.3.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} + +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 + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS.txt README.txt $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/setuptools_git/setuptools_git.info b/development/setuptools_git/setuptools_git.info new file mode 100644 index 0000000000..13c49e54a1 --- /dev/null +++ b/development/setuptools_git/setuptools_git.info @@ -0,0 +1,10 @@ +PRGNAM="setuptools_git" +VERSION="0.3.4" +HOMEPAGE="http://pypi.python.org/pypi/setuptools-git/" +DOWNLOAD="http://pypi.python.org/packages/source/s/setuptools-git/setuptools_git-0.3.4.tar.gz" +MD5SUM="cd40fed12dc84f93eb8d55e36a5cb917" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Mikko Värri" +EMAIL="vmj@linuxbox.fi" +APPROVED="Erik Hanson" diff --git a/development/setuptools_git/slack-desc b/development/setuptools_git/slack-desc new file mode 100644 index 0000000000..6fa87c6353 --- /dev/null +++ b/development/setuptools_git/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------------------------------------------------------| +setuptools_git: setuptools_git (Setuptools revision control system plugin for Git) +setuptools_git: +setuptools_git: This is a plugin for setuptools that enables Git integration. Once +setuptools_git: installed, setuptools can be told to include in a module +setuptools_git: distribution all the files tracked by git. This is an alternative +setuptools_git: to explicit inclusion specifications with MANIFEST.in. +setuptools_git: +setuptools_git: This package was formerly known as gitlsfiles. The name change is +setuptools_git: the result of an effort by the setuptools plugin developers to +setuptools_git: provide a uniform naming convention. +setuptools_git: -- cgit v1.2.3