mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
development/hgsvn: Added to 12.2 repository
This commit is contained in:
parent
45ed02c765
commit
84f772951d
4 changed files with 100 additions and 0 deletions
4
development/hgsvn/README
Normal file
4
development/hgsvn/README
Normal file
|
@ -0,0 +1,4 @@
|
|||
This set of scripts allows to work locally on Subversion-managed projects
|
||||
using the Mercurial distributed version control system.
|
||||
|
||||
Requires pysetuptools and subversion-bindings, available at SlackBuilds.org
|
72
development/hgsvn/hgsvn.SlackBuild
Normal file
72
development/hgsvn/hgsvn.SlackBuild
Normal file
|
@ -0,0 +1,72 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for hgsvn
|
||||
|
||||
# Written by João Felipe Santos (joao.eel@gmail.com)
|
||||
|
||||
# Copyright (c) 2009 João Felipe Santos
|
||||
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
# of this software and associated documentation files (the "Software"), to deal
|
||||
# in the Software without restriction, including without limitation the rights
|
||||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
# copies of the Software, and to permit persons to whom the Software is
|
||||
# furnished to do so, subject to the following conditions:
|
||||
|
||||
# The above copyright notice and this permission notice shall be included in
|
||||
# all copies or substantial portions of the Software.
|
||||
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
# THE SOFTWARE.
|
||||
|
||||
PRGNAM=hgsvn
|
||||
VERSION=${VERSION:-0.1.6}
|
||||
ARCH=${ARCH:-i486}
|
||||
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 build
|
||||
python setup.py install --root $PKG
|
||||
|
||||
mkdir $PKG/usr/man
|
||||
cp -a man1 $PKG/usr/man/
|
||||
|
||||
( 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 AUTHORS.txt COPYING.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.tgz
|
7
development/hgsvn/hgsvn.info
Normal file
7
development/hgsvn/hgsvn.info
Normal file
|
@ -0,0 +1,7 @@
|
|||
PRGNAM="hgsvn"
|
||||
VERSION="0.1.6"
|
||||
HOMEPAGE="http://pypi.python.org/pypi/hgsvn"
|
||||
DOWNLOAD="http://pypi.python.org/packages/source/h/hgsvn/hgsvn-0.1.6.tar.gz"
|
||||
MD5SUM="717f21210fb84e7538d76a95a582a647"
|
||||
MAINTAINER="João Felipe Santos"
|
||||
EMAIL="joao.eel[at]gmail.com"
|
17
development/hgsvn/slack-desc
Normal file
17
development/hgsvn/slack-desc
Normal file
|
@ -0,0 +1,17 @@
|
|||
# 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------------------------------------------------------|
|
||||
hgsvn: hgsvn (Scripts to work on Subversion checkouts using Mercurial)
|
||||
hgsvn:
|
||||
hgsvn: This set of scripts allows to work locally on Subversion-managed
|
||||
hgsvn: projects using the Mercurial distributed version control system.
|
||||
hgsvn:
|
||||
hgsvn:
|
||||
hgsvn: Homepage: http://pypi.python.org/pypi/hgsvn
|
||||
hgsvn:
|
||||
hgsvn:
|
Loading…
Reference in a new issue