baras: removed orphaned port

This commit is contained in:
Fredrik Rinnestam 2013-05-06 20:59:21 +02:00
parent eb0f9f1a1b
commit 555e81c5bb
4 changed files with 0 additions and 96 deletions

View File

@ -1,13 +0,0 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/baras/
-rw-r--r-- root/root etc/baras/baras.conf
-rw-r--r-- root/root etc/baras/baras.dcf
-rw-r--r-- root/root etc/baras/rotation.schedule
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
lrwxrwxrwx root/root usr/bin/baras -> /usr/lib/baras/baras.pl
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/baras/
-rwxr-xr-x root/root usr/lib/baras/ADMConfProcess.pm
-rw-r--r-- root/root usr/lib/baras/ADMMailHandler.pm
-rwxr-xr-x root/root usr/lib/baras/baras.pl

View File

@ -1,2 +0,0 @@
2e3d262b904c54c0a6f94f418e548101 baras-099c.tar.bz2
6101a4712bd80892b23fa6e69835cd6a baras.patch

View File

@ -1,29 +0,0 @@
# Description: backup script utilizing DAR (Disk ARchive)
# URL: http://sourceforge.net/projects/baras
# Maintainer: Simon Glossner, viper at hometux dot de
# Packager: Simon Glossner, viper at hometux dot de
# Depends on: dar
# Nice to have: par2cmdline
name=baras
version=099c
release=1
source=(http://download.sourceforge.net/baras/$name-$version.tar.bz2 baras.patch)
build() {
cd $name
patch -p1 < $SRC/baras.patch
mkdir -p $PKG/etc/baras
mkdir -p $PKG/usr/bin
mkdir -p $PKG/usr/lib/baras
install -m 0755 ADMConfProcess.pm $PKG/usr/lib/baras/
install -m 0644 ADMMailHandler.pm $PKG/usr/lib/baras/
install -m 0755 baras.pl $PKG/usr/lib/baras/
install -m 0644 etc/baras/* $PKG/etc/baras/
ln -s /usr/lib/baras/baras.pl $PKG/usr/bin/baras
}

View File

@ -1,52 +0,0 @@
diff -Nru baras/baras.pl baras-new/baras.pl
--- baras/baras.pl 2009-02-22 22:27:11.000000000 +0100
+++ baras-new/baras.pl 2009-02-27 04:11:20.000000000 +0100
@@ -1,7 +1,7 @@
#!/usr/bin/perl -w
BEGIN {
- push @INC, "/var/adm/baras/";
+ push @INC, "/usr/lib/baras/";
}
use strict;
diff -Nru baras/etc/baras/baras.conf baras-new/etc/baras/baras.conf
--- baras/etc/baras/baras.conf 2009-02-22 22:28:33.000000000 +0100
+++ baras-new/etc/baras/baras.conf 2009-02-27 04:13:01.000000000 +0100
@@ -54,9 +54,9 @@
# If you are tight for space, we can delete before starting
REMOVE_FIRST="no"
-# PAR2 usage
-PAR_ARCHIVE="two"
-PAR2=/usr/bin/par2
+# PAR2 usage (uncomment to activate)
+#PAR_ARCHIVE="two"
+#PAR2=/usr/bin/par2
#PAR2_PERCENTAGE=5
# Pre-processing
@@ -100,13 +100,13 @@
#BASENAME="$(date +'%m-%d-%Y_%H%M')"
# The location of the DAR executable file
-DAR_BINARY="/usr/local/bin/dar"
+DAR_BINARY="/usr/bin/dar"
# The location of the DAR MANAGER executable file
-DAR_MGR_BINARY="/usr/local/bin/dar_manager"
+DAR_MGR_BINARY="/usr/bin/dar_manager"
# The location of the statically-compiled DAR executable file
-DAR_STATIC="/usr/local/bin/dar_static"
+DAR_STATIC="/usr/bin/dar_static"
# The temporary directory name that backups will be created in. This will be created underneath $DESTINATION.
WORK_DIR=".baras_temp_workdir"
@@ -118,6 +118,3 @@
# that option if needed at run-time, according to the rotation.schedule.
DAR_COMMAND="$DAR_BINARY -Q --batch $BARAS_ETC/$BARAS_DCF -c $DAR_CREATE --noconf"
-# Location and name of temporary log file
-TEMP_LOG="$BARAS_ETC/baras_temp.log"
-