summaryrefslogtreecommitdiff
path: root/~emulatorman/raider
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-02-01 04:11:31 -0200
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-02-01 04:11:31 -0200
commitb515cfc1c118e490276f9573c0863d729474edb1 (patch)
tree03ee8ff3fa5f012d48ad27773cfb81a137642919 /~emulatorman/raider
parent64e61b083b1c144cd7e3ef4018f14d7127aa4a24 (diff)
remove deprecated packages on ~emulatorman
Diffstat (limited to '~emulatorman/raider')
-rw-r--r--~emulatorman/raider/ChangeLog32
-rw-r--r--~emulatorman/raider/INSTALL5
-rw-r--r--~emulatorman/raider/PKGBUILD33
3 files changed, 0 insertions, 70 deletions
diff --git a/~emulatorman/raider/ChangeLog b/~emulatorman/raider/ChangeLog
deleted file mode 100644
index bd006cc90..000000000
--- a/~emulatorman/raider/ChangeLog
+++ /dev/null
@@ -1,32 +0,0 @@
-2012-03-05 M.Carreira <raider@carreira.com.pt>
- * version 0.10.0
- * Conversion to RAID 4, RAID 5, RAID 6 and RAID 10 are also supported now.
- * Automatic creation of a separate raid 1 /boot partition, in a raid 4/5/6/10 conversion,
- if the bootloader is Grub legacy or Lilo.
- * Bugfix: fixed -e option bugs
- * Bugfix: fixed long option bugs.
- * Help (-h) option improved.
- * New options created (-R4, -R5, -R6, -R10, -b)
- * Several improvements and minor bugs fixed.
-
-2012-01-18 M.Carreira <raider@carreira.com.pt>
- * version 0.9.2
- * Bugfix: fixed swap partition device names in /etc/fstab
- * Bugfix: include "flag" field to all DISK_DB records
- * A new /etc/mtab file is created only, if the file is not a softlink to /proc/mounts
- * Raider creates one OUTPUT logfile for each command executed (a suffix is added to distinguish them).
-
-2012-01-08 M.Carreira <raider@carreira.com.pt>
- * version 0.9.1
- * Added support to xfs, reiserfs and jfs filesystems
- * Raider "-d" option output improved (in raid arrays and lvm partitions)
- * LVM partitions owned by raid devices are now listed in option "-d"
- * Added option "-l" or "--lvm-suffix". With this option we can change the default "__raider"
- suffix added to LVM Volume Group.
- * Improved information in "--help" option.
- * Fixed some minor bugs
-
-2011-12-31 M.Carreira <raider@carreira.com.pt>
- * raider 0.9.0 - published
-
-
diff --git a/~emulatorman/raider/INSTALL b/~emulatorman/raider/INSTALL
deleted file mode 100644
index 8671c6917..000000000
--- a/~emulatorman/raider/INSTALL
+++ /dev/null
@@ -1,5 +0,0 @@
-pre_remove() {
- "rm" -fR /var/lib/raider/*
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/~emulatorman/raider/PKGBUILD b/~emulatorman/raider/PKGBUILD
deleted file mode 100644
index 360c3248e..000000000
--- a/~emulatorman/raider/PKGBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-# Maintainer: M.Carreira <arch@carreira.com.pt>
-# Contributor: M.Carreira <arch@carreira.com.pt>
-# Contributor (Parabola): André Silva <emulatorman@parabola.nu>
-pkgname=raider
-pkgver=0.10.0
-pkgrel=1
-pkgdesc="Converts a single linux system disk in to a software raid 1, 4, 5, 6 or 10"
-arch=('any')
-url="http://sourceforge.net/projects/raider/"
-license=('GPL2')
-changelog=ChangeLog
-depends=('mdadm>=2.6' 'parted>=2.0' 'bash>=3.0' 'coreutils' 'util-linux' 'hdparm' 'cpio' 'inetutils')
-install=INSTALL
-
-source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('9150128c1cd5c58709aa0a5dd0e4c6b0')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- install -d ${pkgdir}/usr/lib/raider
- install -d ${pkgdir}/usr/sbin
- install -m 755 -t ${pkgdir}/usr/lib/raider src/lib/*
- install -p -o 0 -g 0 -m 755 src/sbin/raider ${pkgdir}/usr/sbin
- install -p -o 0 -g 0 -m 755 src/sbin/raiderl ${pkgdir}/usr/sbin
- install -p -o 0 -g 0 -m 755 src/sbin/raiderld ${pkgdir}/usr/sbin
- install -d ${pkgdir}/var/lib/raider
- install -d ${pkgdir}/var/log/raider -m 777
- DOCDIR_INST=${pkgdir}/usr/share/doc/${pkgname}-${pkgver}
- install -d ${DOCDIR_INST}
- install -m 644 AUTHORS COPYING ChangeLog FAQ INSTALL README TODO ${DOCDIR_INST}
-}
-
-# vim:set ts=2 sw=2 et: