ap/msva-perl: Removed.
parent
49491f4479
commit
37b96de35d
@ -1,36 +0,0 @@
|
||||
diff -Naur msva-perl-0.9.2.orig/Crypt/Monkeysphere/MSVA.pm msva-perl-0.9.2/Crypt/Monkeysphere/MSVA.pm
|
||||
--- msva-perl-0.9.2.orig/Crypt/Monkeysphere/MSVA.pm 2013-09-09 08:22:59.000000000 +0200
|
||||
+++ msva-perl-0.9.2/Crypt/Monkeysphere/MSVA.pm 2013-11-12 12:54:30.857762903 +0100
|
||||
@@ -41,7 +41,7 @@
|
||||
use Crypt::Monkeysphere::OpenPGP;
|
||||
|
||||
use JSON;
|
||||
- use POSIX qw(strftime);
|
||||
+ use POSIX;
|
||||
# we need the version of GnuPG::Interface that knows about pubkey_data, etc:
|
||||
use GnuPG::Interface 0.43;
|
||||
|
||||
@@ -841,6 +841,23 @@
|
||||
# FIXME: consider daemonizing here to behave more like
|
||||
# ssh-agent. maybe avoid backgrounding by setting
|
||||
# MSVA_NO_BACKGROUND.
|
||||
+ unless (exists $ENV{MSVA_NO_BACKGROUND}) {
|
||||
+ POSIX::setsid or die "setsid: $!";
|
||||
+ my $pid = fork();
|
||||
+ if ( $pid < 0 ) {
|
||||
+ die "fork: $!";
|
||||
+ } elsif ( $pid ) {
|
||||
+ exit 0;
|
||||
+ }
|
||||
+ chdir "/";
|
||||
+ umask 0;
|
||||
+ foreach (0..2) {
|
||||
+ POSIX::close $_;
|
||||
+ }
|
||||
+ open (STDIN, "</dev/null");
|
||||
+ open (STDOUT, ">/dev/null");
|
||||
+ open (STDERR, ">&STDOUT");
|
||||
+ }
|
||||
};
|
||||
if (exists $ENV{MSVA_MONITOR_CHANGES} &&
|
||||
$ENV{MSVA_MONITOR_CHANGES} eq 'true') {
|
@ -1,115 +0,0 @@
|
||||
#!/bin/bash
|
||||
# Build script for Slackware
|
||||
# Copyright (C) 2013 Damien Goutte-Gattat
|
||||
#
|
||||
# Redistribution and use of this script, with or without modifications,
|
||||
# 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.
|
||||
#
|
||||
# Contact: Damien Goutte-Gattat <dgouttegattat@incenp.org>
|
||||
#
|
||||
# Latest msva-perl sourcecode is available at:
|
||||
# <http://web.monkeysphere.info/>.
|
||||
|
||||
# Source package infos
|
||||
NAMESRC=${NAMESRC:-msva-perl}
|
||||
VERSION=${VERSION:-0.9.2}
|
||||
ARCHIVE=${ARCHIVE:-${NAMESRC}_$VERSION.orig.tar.gz}
|
||||
WGET=${WGET:-http://archive.monkeysphere.info/debian/pool/monkeysphere/m/msva-perl/$ARCHIVE}
|
||||
|
||||
# Build infos
|
||||
NAMEPKG=${NAMEPKG:-msva-perl}
|
||||
BUILD=${BUILD:-2GGD}
|
||||
ARCH=${ARCH:-$(uname -m | sed 's/^i.86$/i486/;s/^arm.*/arm/')}
|
||||
EXT=${EXT:-txz}
|
||||
|
||||
# Directories
|
||||
TMP=${TMP:-/tmp}
|
||||
OUT=${OUT:-$TMP/build}
|
||||
PKG=${PKG:-$OUT/$NAMEPKG}
|
||||
CWD=$(pwd)
|
||||
|
||||
set -e # Quit if a command returns non-zero
|
||||
|
||||
# Sanity checks
|
||||
if [ $UID -eq 0 ]; then
|
||||
echo "You should NOT run this script as ROOT!"
|
||||
exit 1
|
||||
fi
|
||||
if [ ! -d $TMP ]; then
|
||||
echo "$TMP does not exists or is not a directory!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Get and verify the source archive
|
||||
if [ ! -r $ARCHIVE ]; then
|
||||
wget -c -O $ARCHIVE.part "$WGET"
|
||||
mv $ARCHIVE.part $ARCHIVE
|
||||
fi
|
||||
sha1sum -c $ARCHIVE.sha1
|
||||
NAME=$(tar ft $ARCHIVE | head -n 1 | cut -d / -f 1)
|
||||
|
||||
# Extract
|
||||
cd $TMP
|
||||
echo "Building $ARCHIVE..."
|
||||
tar xf $CWD/$ARCHIVE
|
||||
cd $NAME
|
||||
|
||||
# Hideous hack to launch the server in background
|
||||
patch -p 1 < $CWD/msva-perl-0.9.2-fork.diff
|
||||
|
||||
# Install Perl modules
|
||||
LIBDIRSUFFIX=""
|
||||
[ "x$ARCH" == xx86_64 ] && LIBDIRSUFFIX="64"
|
||||
mkdir -p $PKG/usr/lib$LIBDIRSUFFIX/perl5
|
||||
cp -r Crypt Net $PKG/usr/lib$LIBDIRSUFFIX/perl5/
|
||||
find $PKG/usr/lib$LIBDIRSUFFIX/perl5 -type f -exec chmod 644 {} \;
|
||||
|
||||
# Install runnable scripts
|
||||
mkdir -p $PKG/usr/bin
|
||||
install -m 755 gpgkeys_hkpms msva-perl msva-query-agent openpgp2x509 $PKG/usr/bin/
|
||||
|
||||
# Build and install manpages
|
||||
make
|
||||
mkdir -p $PKG/usr/man/man1
|
||||
install -m 644 msva-perl.1 msva-query-agent.1 $PKG/usr/man/man1/
|
||||
gzip $PKG/usr/man/man1/msva-{perl,query-agent}.1
|
||||
|
||||
# Install icon
|
||||
install -D -m 644 monkeysphere-icon.png $PKG/usr/share/pixmaps/monkeysphere-icon.png
|
||||
|
||||
# Install the documentation
|
||||
mkdir -p $PKG/usr/doc/$NAME
|
||||
install -m 644 COPYING Changelog README.schema msva.protocol.README $PKG/usr/doc/$NAME
|
||||
|
||||
# Copy slack-desc file
|
||||
install -D -m 644 $CWD/slack-desc $PKG/install/slack-desc
|
||||
|
||||
# Package the tree
|
||||
cd $PKG
|
||||
mkdir -p $OUT
|
||||
PACKAGING="
|
||||
chown root:root . -R
|
||||
/sbin/makepkg -l y -c n $OUT/$NAMEPKG-$VERSION-$ARCH-$BUILD.$EXT
|
||||
rm -rf $PKG
|
||||
rm -rf $TMP/$NAME
|
||||
"
|
||||
if type -p fakeroot ; then
|
||||
echo "$PACKAGING" | fakeroot
|
||||
else
|
||||
su -c "$PACKAGING"
|
||||
fi
|
@ -1 +0,0 @@
|
||||
9255586df85d67c2d55077f508419e0bd3a59a58 msva-perl_0.9.2.orig.tar.gz
|
@ -1,12 +0,0 @@
|
||||
|-----handy-ruler----------------------------------------------------|
|
||||
msva-perl: msva-perl (Monkeysphere validation agent)
|
||||
msva-perl:
|
||||
msva-perl: The Monkeysphere Validation Agent offers a local service for tools
|
||||
msva-perl: to validate certificates (both X.509 and OpenPGP) and other public
|
||||
msva-perl: keys.
|
||||
msva-perl:
|
||||
msva-perl: Clients of the validation agent query it with a public key carrier,
|
||||
msva-perl: the supposed name of the remote peer offering the public key, and
|
||||
msva-perl: the context in which the validation check is relevant. The agent
|
||||
msva-perl: then tells the client whether it was able to successfully
|
||||
msva-perl: validate the peer's use of the public key.
|
Loading…
Reference in New Issue