summaryrefslogtreecommitdiff
path: root/community/vhba-module
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2012-11-10 15:10:58 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2012-11-10 15:10:58 +0100
commit9f050463d1b34e3f36a54aeb9ef65217530f2cd0 (patch)
tree0a4fca87cb224834876e3c5cf79375619bca75a4 /community/vhba-module
parentbf8d5e47ebdb788735d74c8232db8ec4a724a0bb (diff)
Remove packages missing from abs.
Diffstat (limited to 'community/vhba-module')
-rw-r--r--community/vhba-module/60-vhba.rules13
-rw-r--r--community/vhba-module/PKGBUILD44
-rw-r--r--community/vhba-module/vhba-module.install22
3 files changed, 0 insertions, 79 deletions
diff --git a/community/vhba-module/60-vhba.rules b/community/vhba-module/60-vhba.rules
deleted file mode 100644
index e4de1dca7..000000000
--- a/community/vhba-module/60-vhba.rules
+++ /dev/null
@@ -1,13 +0,0 @@
-ACTION=="remove", GOTO="vhba_end"
-KERNEL!="vhba_ctl", GOTO="vhba_end"
-
-NAME="vhba_ctl", MODE="0660", OWNER="root", GROUP="cdemu"
-
-TEST=="/sys/fs/cgroup/systemd", GOTO="vhba_uaccess"
-TAG+="udev-acl"
-GOTO="vhba_end"
-
-LABEL="vhba_uaccess"
-TAG+="uaccess"
-
-LABEL="vhba_end"
diff --git a/community/vhba-module/PKGBUILD b/community/vhba-module/PKGBUILD
deleted file mode 100644
index 2ced9f72c..000000000
--- a/community/vhba-module/PKGBUILD
+++ /dev/null
@@ -1,44 +0,0 @@
-# $Id: PKGBUILD 74112 2012-07-21 11:58:49Z schiv $
-# Maintainer: Ray Rashif <schiv@archlinux.org>
-# Contributor: Mateusz Herych <heniekk@gmail.com>
-# Contributor: Charles Lindsay <charles@chaoslizard.org>
-
-pkgname=vhba-module
-pkgver=20120422
-_extramodules=extramodules-3.4-ARCH
-pkgrel=4
-pkgdesc="Kernel module that emulates SCSI devices"
-arch=('i686' 'x86_64' 'mips64el')
-url="http://cdemu.sourceforge.net/"
-license=('GPL')
-depends=('linux>=3.4' 'linux<3.5')
-makedepends=('linux-headers>=3.4')
-options=(!makeflags)
-install=$pkgname.install
-source=("http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2"
- '60-vhba.rules')
-md5sums=('d97372da1d270d1605742b2995fb6678'
- 'b5e82d0160e7a181219b67c1794d5c27')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-
- make KDIR=/usr/lib/modules/$_kernver/build
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
-
- install -Dm644 vhba.ko \
- "$pkgdir/usr/lib/modules/$_extramodules/vhba.ko"
-
- sed -i -e "s/EXTRAMODULES='.*'/EXTRAMODULES='$_extramodules'/" \
- "$startdir/vhba-module.install"
-
- install -Dm644 "$srcdir/60-vhba.rules" \
- "$pkgdir/usr/lib/udev/rules.d/60-vhba.rules"
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/community/vhba-module/vhba-module.install b/community/vhba-module/vhba-module.install
deleted file mode 100644
index 8458b2ae7..000000000
--- a/community/vhba-module/vhba-module.install
+++ /dev/null
@@ -1,22 +0,0 @@
-post_upgrade() {
- ! grep -q 'cdemu' /etc/group && groupadd cdemu
- echo " > Updating module dependencies..."
- EXTRAMODULES='extramodules-3.4-ARCH'
- depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
-}
-
-
-post_install() {
- echo " > Adding 'cdemu' group"
- ! grep -q 'cdemu' /etc/group && groupadd cdemu
- echo " > Add 'vhba' to your modules array to autoload it"
- post_upgrade
-}
-
-post_remove() {
- post_upgrade
- echo "Removing 'cdemu' group"
- groupdel cdemu
-}
-
-# vim:set ts=2 sw=2 et: