diff options
author | Andreas Grapentin <andreas@grapentin.org> | 2019-02-26 11:46:18 +0100 |
---|---|---|
committer | Andreas Grapentin <andreas@grapentin.org> | 2019-02-26 11:46:18 +0100 |
commit | 920ebd311a6242af52b956f7f0e0db443d5c3fc3 (patch) | |
tree | 8840a1fea11f78bb8a4d5334e5f8be7bd8b47ed5 /libre/vhba-module | |
parent | 039fdab3f4e919389efff976b1ff68ff375280af (diff) | |
download | abslibre-920ebd311a6242af52b956f7f0e0db443d5c3fc3.tar.gz abslibre-920ebd311a6242af52b956f7f0e0db443d5c3fc3.tar.bz2 abslibre-920ebd311a6242af52b956f7f0e0db443d5c3fc3.zip |
libre/vhba-module: rebuilt
Diffstat (limited to 'libre/vhba-module')
-rw-r--r-- | libre/vhba-module/PKGBUILD | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/libre/vhba-module/PKGBUILD b/libre/vhba-module/PKGBUILD index a2fb951a2..cda1ed2a2 100644 --- a/libre/vhba-module/PKGBUILD +++ b/libre/vhba-module/PKGBUILD @@ -5,41 +5,43 @@ # Contributor (Hyperbola): Márcio Silva <coadde@hyperbola.info> # Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe> -_basekernel=4.19 -_archrel=112 -_parabolarel=1 +_basekernel=4.20 pkgbase=vhba-module pkgname=(vhba-module vhba-module-dkms) pkgver=20170610 -pkgrel=${_archrel}.parabola${_parabolarel}.basekernel${_basekernel} -pkgdesc="Kernel module that emulates SCSI devices (built for the linux-libre kernel package)" -arch=('i686' 'x86_64' 'armv7h') +pkgrel=136 +pkgrel+=.parabola1.basekernel${_basekernel} +pkgdesc="Kernel module that emulates SCSI devices" +pkgdesc+=" (built for the linux-libre kernel package)" url="http://cdemu.sourceforge.net/" -license=('GPL') +arch=(x86_64) +arch+=(i686 armv7h) +license=(GPL) # Generic (you shouldn't have to modify any of these variables) _toohigh=$(IFS=. read a b <<<$_basekernel; echo $a.$((b+1))) +depends=("linux-libre>=${_basekernel}" "linux-libre<${_toohigh}") makedepends=("linux-libre-headers>=${_basekernel}" "linux-libre-headers<${_toohigh}" "linux-libre>=${_basekernel}" "linux-libre<${_toohigh}") makedepends+=('libelf') _extramodules=extramodules source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2" - '60-vhba.rules' 'dkms.conf') + 60-vhba.rules dkms.conf) sha256sums=('7970c93f989d9c4f2629371bf5ee7a76f95e4c12342c3320ddc528d0df02d9ec' '3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b' '8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7') +prepare() { + cd $pkgbase-$pkgver +} + build() { cd $pkgbase-$pkgver make KERNELRELEASE="$(cat /usr/lib/modules/$_extramodules/version)" } package_vhba-module() { - depends=("linux-libre>=${_basekernel}" "linux-libre<${_toohigh}") - replaces=("${pkgbase}-libre" "${pkgbase}-parabola") - conflicts=("${pkgbase}-libre" "${pkgbase}-parabola") - cd $pkgbase-$pkgver install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules @@ -50,7 +52,7 @@ package_vhba-module() { package_vhba-module-dkms() { depends=(dkms) - provides=("vhba-module=$pkgver-$_archrel") + provides=("vhba-module=$pkgver-${pkgrel%%.*}") conflicts=(vhba-module) cd $pkgbase-$pkgver |