summaryrefslogtreecommitdiff
path: root/libre/vhba-module-libre
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-08-23 01:36:15 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-08-23 01:36:15 -0300
commit28529fefc594bf968ca30905a5a2d6c9ae1d6f3c (patch)
tree4c2428f259eb8d14153d27c38659293f4a970f03 /libre/vhba-module-libre
parentb1852341008bbce6f23ebc4c300112d98c96ab8d (diff)
add modifications from coadde and lukeshu contributions for linux-libre* and dependencies
Diffstat (limited to 'libre/vhba-module-libre')
-rw-r--r--libre/vhba-module-libre/60-vhba.rules1
-rw-r--r--libre/vhba-module-libre/PKGBUILD45
-rw-r--r--libre/vhba-module-libre/vhba-module.install22
3 files changed, 0 insertions, 68 deletions
diff --git a/libre/vhba-module-libre/60-vhba.rules b/libre/vhba-module-libre/60-vhba.rules
deleted file mode 100644
index 39ae3a4ec..000000000
--- a/libre/vhba-module-libre/60-vhba.rules
+++ /dev/null
@@ -1 +0,0 @@
-ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", GROUP="cdemu", TAG+="uaccess"
diff --git a/libre/vhba-module-libre/PKGBUILD b/libre/vhba-module-libre/PKGBUILD
deleted file mode 100644
index 495a4ad94..000000000
--- a/libre/vhba-module-libre/PKGBUILD
+++ /dev/null
@@ -1,45 +0,0 @@
-# $Id: PKGBUILD 116828 2014-08-04 07:19:43Z tpowa $
-# Maintainer (Arch): Ray Rashif <schiv@archlinux.org>
-# Contributor (Arch): Mateusz Herych <heniekk@gmail.com>
-# Contributor (Arch): Charles Lindsay <charles@chaoslizard.org>
-# Maintainer: André Silva <emulatorman@parabola.nu>
-
-_pkgname=vhba-module
-pkgname=vhba-module-libre
-pkgver=20140629
-_extramodules=extramodules-3.16-libre
-pkgrel=6
-pkgdesc="Kernel module that emulates SCSI devices (built for the linux-libre kernel package)"
-arch=('i686' 'x86_64' 'mips64el')
-url="http://cdemu.sourceforge.net/"
-license=('GPL')
-depends=('linux-libre>=3.16' 'linux-libre<3.17')
-makedepends=('linux-libre-headers>=3.16' 'linux-libre-headers<3.17')
-options=(!makeflags)
-install=$_pkgname.install
-replaces=('vhba-module')
-conflicts=('vhba-module')
-provides=("vhba-module=$pkgver")
-source=("http://downloads.sourceforge.net/cdemu/$_pkgname-$pkgver.tar.bz2"
- '60-vhba.rules')
-md5sums=('6b307a80df9c163768cc7ecb3ccebb71'
- '4dc37dc348b5a2c83585829bde790dcc')
-
-build() {
- cd $_pkgname-$pkgver
- _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
- make KDIR=/usr/lib/modules/$_kernver/build
-}
-
-package() {
- cd $_pkgname-$pkgver
- install -Dm644 vhba.ko "$pkgdir/usr/lib/modules/$_extramodules/vhba.ko"
- install -Dm644 ../60-vhba.rules "$pkgdir/usr/lib/udev/rules.d/60-vhba.rules"
-
- cd $startdir
- cp -f $install ${install}.pkg
- true && install=${install}.pkg
- sed -i "s/EXTRAMODULES=.*/EXTRAMODULES=$_extramodules/" $install
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/libre/vhba-module-libre/vhba-module.install b/libre/vhba-module-libre/vhba-module.install
deleted file mode 100644
index 793cffd8d..000000000
--- a/libre/vhba-module-libre/vhba-module.install
+++ /dev/null
@@ -1,22 +0,0 @@
-EXTRAMODULES=
-
-_updatemod() {
- echo " > Updating module dependencies..."
- depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
-}
-
-post_install() {
- post_upgrade
-}
-
-post_upgrade() {
- getent group cdemu &>/dev/null || groupadd -r cdemu
- _updatemod
-}
-
-post_remove() {
- _updatemod
- groupdel cdemu
-}
-
-# vim:set ts=2 sw=2 et: