From 2f08662b5b525fbbb56a806bb7f9212f55e87c92 Mon Sep 17 00:00:00 2001 From: Robby Workman Date: Tue, 11 May 2010 22:53:28 +0200 Subject: development/bzr: Added to 12.1 repository --- development/bzr/README | 6 +++ development/bzr/bzr.SlackBuild | 85 +++++++++++++++++++++++++++++++++++++++ development/bzr/bzr.info | 8 ++++ development/bzr/rst2html.py.patch | 12 ++++++ development/bzr/slack-desc | 19 +++++++++ 5 files changed, 130 insertions(+) create mode 100644 development/bzr/README create mode 100644 development/bzr/bzr.SlackBuild create mode 100644 development/bzr/bzr.info create mode 100644 development/bzr/rst2html.py.patch create mode 100644 development/bzr/slack-desc (limited to 'development') diff --git a/development/bzr/README b/development/bzr/README new file mode 100644 index 0000000000..ee684c97eb --- /dev/null +++ b/development/bzr/README @@ -0,0 +1,6 @@ +Bazaar (bzr) is a decentralized revision control system, designed +to be easy for developers and end users alike. Bazaar is part of the +GNU project to develop a complete free operating system. + +This requires docutils, which is also available from SlackBuilds.org, +but it is only a build dependency - it is not needed for running bzr. diff --git a/development/bzr/bzr.SlackBuild b/development/bzr/bzr.SlackBuild new file mode 100644 index 0000000000..e57db71f64 --- /dev/null +++ b/development/bzr/bzr.SlackBuild @@ -0,0 +1,85 @@ +#!/bin/sh + +# Slackware build script for bzr + +# Copyright 2006-2008 Robby Workman Northport, AL, USA +# 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=bzr +VERSION=1.5 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-2} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +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 . \ + \( -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 {} \; + +# Fix suggested by guys from #bzr at irc.freenode.net +# Thanks to zpcspm@gmail.com for pointing this out to me +patch tools/rst2html.py < $CWD/rst2html.py.patch + +# Generate docs +make docs + +python setup.py install --root=$PKG + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a BRANCH.TODO COPYING.txt INSTALL NEWS README TODO doc/* \ + $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 diff --git a/development/bzr/bzr.info b/development/bzr/bzr.info new file mode 100644 index 0000000000..d27ecc7606 --- /dev/null +++ b/development/bzr/bzr.info @@ -0,0 +1,8 @@ +PRGNAM="bzr" +VERSION="1.5" +HOMEPAGE="http://bazaar-vcs.org/" +DOWNLOAD="https://launchpad.net/bzr/1.5/1.5/+download/bzr-1.5.tar.gz" +MD5SUM="fa82e556401802537eeb8e50ecc8b4e7" +MAINTAINER="Robby Workman" +EMAIL="rw@rlworkman.net" +APPROVED="David Somero" \ No newline at end of file diff --git a/development/bzr/rst2html.py.patch b/development/bzr/rst2html.py.patch new file mode 100644 index 0000000000..a2db229217 --- /dev/null +++ b/development/bzr/rst2html.py.patch @@ -0,0 +1,12 @@ +--- /tmp/ttt/bzr-1.5/tools/rst2html.py 2008-05-16 22:21:24.000000000 +0000 ++++ rst2html.py 2008-08-06 16:46:29.000000000 +0000 +@@ -20,7 +20,8 @@ + from docutils.core import publish_cmdline, default_description + + +-if docutils.__version__ <= '0.4.1': ++if True: ++#if docutils.__version__ <= '0.4.1': + from docutils.parsers.rst.states import Body + # we have some option names that contain dot; which is not allowed by + # python-docutils 0.4-4 -- so monkeypatch in a better pattern diff --git a/development/bzr/slack-desc b/development/bzr/slack-desc new file mode 100644 index 0000000000..d82213c59a --- /dev/null +++ b/development/bzr/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--------------------------------------------------------| +bzr: bzr (Bazaar revision control system) +bzr: +bzr: Bazaar (``bzr``) is a decentralized revision control system, designed +bzr: to be easy for developers and end users alike. Bazaar is part of the +bzr: GNU project to develop a complete free operating system. +bzr: +bzr: Homepage: http://bazaar-vcs.org/ +bzr: +bzr: +bzr: +bzr: -- cgit v1.2.3