summaryrefslogtreecommitdiff
path: root/community-testing/vhba-module
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2012-05-04 20:00:41 +0000
committerParabola <dev@list.parabolagnulinux.org>2012-05-04 20:00:41 +0000
commitb2c353d874b85e06f355a9419852e2616613c7d0 (patch)
treef0773e0a930d308198ef5036d4f74e7f53015e6e /community-testing/vhba-module
parent0a24fb835cac4007388213ad0afb15257b035b14 (diff)
Fri May 4 20:00:31 UTC 2012
Diffstat (limited to 'community-testing/vhba-module')
-rw-r--r--community-testing/vhba-module/60-vhba.rules1
-rw-r--r--community-testing/vhba-module/PKGBUILD42
-rw-r--r--community-testing/vhba-module/vhba-module.install22
3 files changed, 0 insertions, 65 deletions
diff --git a/community-testing/vhba-module/60-vhba.rules b/community-testing/vhba-module/60-vhba.rules
deleted file mode 100644
index 91de6f86a..000000000
--- a/community-testing/vhba-module/60-vhba.rules
+++ /dev/null
@@ -1 +0,0 @@
-KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", GROUP="cdemu"
diff --git a/community-testing/vhba-module/PKGBUILD b/community-testing/vhba-module/PKGBUILD
deleted file mode 100644
index 9f866ad75..000000000
--- a/community-testing/vhba-module/PKGBUILD
+++ /dev/null
@@ -1,42 +0,0 @@
-# $Id: PKGBUILD 68528 2012-03-26 10:13:31Z schiv $
-# Maintainer: Ray Rashif <schiv@archlinux.org>
-# Contributor: Mateusz Herych <heniekk@gmail.com>
-# Contributor: Charles Lindsay <charles@chaoslizard.org>
-
-pkgname=vhba-module
-pkgver=20110915
-_extramodules=extramodules-3.3-ARCH
-pkgrel=6
-pkgdesc="Kernel module that emulates SCSI devices"
-arch=('i686' 'x86_64')
-url="http://cdemu.sourceforge.net/"
-license=('GPL')
-depends=('linux>=3.3' 'linux<3.4')
-makedepends=('linux-headers>=3.3')
-install=$pkgname.install
-source=("http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2"
- '60-vhba.rules')
-md5sums=('8bb99b427ca67bad448f4dd211bdd1a2'
- '549bd2d9696bd1884c8eed7193c00e21')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- _kernver="$(cat /lib/modules/$_extramodules/version)"
-
- make -j1 KDIR=/usr/src/linux-$_kernver
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
-
- install -D vhba.ko "$pkgdir/lib/modules/$_extramodules/vhba.ko"
-
- sed -i -e "s/EXTRAMODULES='.*'/EXTRAMODULES='$_extramodules'/" \
- "$startdir/vhba-module.install"
-
- install -Dm644 "$srcdir/60-vhba.rules" \
- "$pkgdir/lib/udev/rules.d/60-vhba.rules"
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/community-testing/vhba-module/vhba-module.install b/community-testing/vhba-module/vhba-module.install
deleted file mode 100644
index 73029498f..000000000
--- a/community-testing/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.2-ARCH'
- depmod $(cat /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: