summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo2017-05-31 09:35:07 +0200
committer Willy Sudiarto Raharjo2017-06-03 02:59:43 +0200
commit46c78db8bd5a60f646330581a42660541854e062 (patch)
tree5747ed4f78658d629df90c9ae5d88df9c439c472 /development
parent7c1fed4ce4fcafa58d409fe38b6744e37c67ad8d (diff)
downloadslackbuilds-46c78db8bd5a60f646330581a42660541854e062.tar.gz
development/monotone: Removed (Not compatible with Botan 2).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r--development/monotone/README8
-rw-r--r--development/monotone/doinst.sh14
-rw-r--r--development/monotone/monotone.SlackBuild112
-rw-r--r--development/monotone/monotone.info10
-rw-r--r--development/monotone/slack-desc19
5 files changed, 0 insertions, 163 deletions
diff --git a/development/monotone/README b/development/monotone/README
deleted file mode 100644
index a5a56fe9d5..0000000000
--- a/development/monotone/README
+++ /dev/null
@@ -1,8 +0,0 @@
-Monotone is a free distributed version control system. It provides a simple,
-single-file transactional version store, with fully disconnected operation and
-an efficient peer-to-peer synchronization protocol. It understands
-history-sensitive merging, lightweight branches, integrated code review and 3rd
-party testing. It uses cryptographic version naming and client-side RSA
-certificates. It has good internationalization support, has no external
-dependencies, runs on linux, solaris, OSX, windows, and other unixes,
-and is licensed under the GNU GPL.
diff --git a/development/monotone/doinst.sh b/development/monotone/doinst.sh
deleted file mode 100644
index 19dc6d94d3..0000000000
--- a/development/monotone/doinst.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-
-config etc/bash_completion.d/monotone.bash_completion.new
diff --git a/development/monotone/monotone.SlackBuild b/development/monotone/monotone.SlackBuild
deleted file mode 100644
index 6312c2b68d..0000000000
--- a/development/monotone/monotone.SlackBuild
+++ /dev/null
@@ -1,112 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for monotone
-
-# Written by João Felipe Santos <joao.eel@gmail.com>
-# Reviewed for 0.48 by Brian Muramatsu <btmura@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=monotone
-VERSION=${VERSION:-1.1}
-BUILD=${BUILD:-2}
-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}
-
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.?z*
-cd $PRGNAM-$VERSION
-chown -R root:root .
-find -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -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 {} \;
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --htmldir=/usr/doc/$PRGNAM-$VERSION \
- --infodir=/usr/info \
- --build=$ARCH-slackware-linux
-
-# It seems that Makefile.in has htmldir hardcoded :/
-make htmldir=/usr/doc/$PRGNAM-$VERSION
-make install htmldir=/usr/doc/$PRGNAM-$VERSION DESTDIR=$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
-
-find $PKG/usr/man -type f -exec gzip -9 {} \;
-for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-
-rm -f $PKG/usr/info/dir
-gzip -9 $PKG/usr/info/*
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS COPYING ChangeLog HACKING NEWS UPGRADE README contrib \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mv $PKG/etc/bash_completion.d/monotone.bash_completion \
- $PKG/etc/bash_completion.d/monotone.bash_completion.new
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/development/monotone/monotone.info b/development/monotone/monotone.info
deleted file mode 100644
index fee1a5b9d7..0000000000
--- a/development/monotone/monotone.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="monotone"
-VERSION="1.1"
-HOMEPAGE="http://www.monotone.ca"
-DOWNLOAD="http://www.monotone.ca/downloads/1.1/monotone-1.1.tar.bz2"
-MD5SUM="df3f40ca22120aa142ac9becba9e1bf7"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="Botan lua"
-MAINTAINER="Brian Muramatsu"
-EMAIL="btmura@gmail.com"
diff --git a/development/monotone/slack-desc b/development/monotone/slack-desc
deleted file mode 100644
index 6f8595fc4c..0000000000
--- a/development/monotone/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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 ':' except on otherwise blank lines.
-
- |-----handy-ruler------------------------------------------------------|
-monotone: monotone (A Distributed Version Control System)
-monotone:
-monotone: monotone is a free distributed version control system. It provides
-monotone: a simple, single-file transactional version store, with fully
-monotone: disconnected operation and an efficient peer-to-peer protocol.
-monotone:
-monotone: Homepage: http://www.monotone.ca
-monotone:
-monotone:
-monotone:
-monotone: