From a3759cd62858b593d2a6417310916732b66f8e39 Mon Sep 17 00:00:00 2001 From: Andreas Grapentin Date: Mon, 15 Jan 2018 06:49:24 +0100 Subject: libre/acpi_call, libre/bbswitch: added dedicated -lts versions for repo integrity checks --- libre/acpi_call-lts/PKGBUILD | 111 ++++++++++++++++++++++++++++++++++++++++++ libre/acpi_call-lts/dkms.conf | 9 ++++ libre/acpi_call/PKGBUILD | 2 +- libre/bbswitch-lts/PKGBUILD | 78 +++++++++++++++++++++++++++++ 4 files changed, 199 insertions(+), 1 deletion(-) create mode 100644 libre/acpi_call-lts/PKGBUILD create mode 100644 libre/acpi_call-lts/dkms.conf create mode 100644 libre/bbswitch-lts/PKGBUILD diff --git a/libre/acpi_call-lts/PKGBUILD b/libre/acpi_call-lts/PKGBUILD new file mode 100644 index 000000000..41656d495 --- /dev/null +++ b/libre/acpi_call-lts/PKGBUILD @@ -0,0 +1,111 @@ +# Maintainer (Arch): Maxime Gauduin +# Contributor (Arch): mortzu +# Contributor (Arch): fnord0 +# Contributor (Hyperbola): André Silva +# Contributor (Hyperbola): Márcio Silva +# Maintainer: Omar Vega Ramos +# Contributor: Luke Shumaker + +_kernelname=-lts + +if [[ ${_kernelname} == "" ]]; then + _basekernel=4.14 + _archrel=90 + _parabolarel=1 +elif [[ ${_kernelname} == -lts ]]; then + _basekernel=4.9 + _archrel=53 + _parabolarel=1 +fi + +pkgbase=acpi_call +pkgver=1.1.0 +pkgrel=${_archrel}.parabola${_parabolarel}.basekernel${_basekernel} +_extramodules=extramodules-${_basekernel}${_kernelname} +pkgdesc="A linux kernel module that enables calls to ACPI methods through /proc/acpi/call (built for the linux-libre${_kernelname} kernel package)" +arch=('i686' 'x86_64' 'armv7h') +url="http://github.com/mkottman/${pkgbase}" +license=('GPL') + +# Generic (you shouldn't have to modify any of these variables) +_toohigh=$(IFS=. read a b <<<$_basekernel; echo $a.$((b+1))) +makedepends=("linux-libre${_kernelname}-headers>=${_basekernel}" "linux-libre${_kernelname}-headers<${_toohigh}" "linux-libre${_kernelname}>=${_basekernel}" "linux-libre${_kernelname}<${_toohigh}") +makedepends+=('libelf') + +if [[ ${_kernelname} != "" ]]; then + provides=("${pkgbase}") +fi + +source=("${pkgbase}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz" + 'dkms.conf') +sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0' + '32e6ea6523b13132c6c7838bba7fbf3d040ba2d35a892c2c356245612720df8a') + +prepare() { + cd "${pkgbase}-${pkgver}" + + if [[ ${_basekernel} > 3.16 ]]; then + # Fix build with Linux-libre 3.17-gnu + sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c + fi + + if [[ ${_basekernel} > 4.11 ]]; then + # Fix build with Linux-libre 4.12-gnu + sed -i 's|asm/uaccess.h|linux/uaccess.h|' acpi_call.c + fi +} + +build() { + cd "${pkgbase}-${pkgver}" + make KVERSION="$(cat /usr/lib/modules/$_extramodules/version)" +} + +_package() { + depends=("linux-libre${_kernelname}>=${_basekernel}" "linux-libre${_kernelname}<${_toohigh}") + replaces=("${pkgbase}-libre${_kernelname}" "${pkgbase}-parabola${_kernelname}") + [[ -n ${_kernelname} ]] && replaces+=("${_pkgname}${_kernelname}-parabola") + conflicts=("${pkgbase}-libre${_kernelname}" "${pkgbase}-parabola${_kernelname}") + [[ -n ${_kernelname} ]] && conflicts+=("${_pkgname}${_kernelname}-parabola") + + cd $pkgbase-$pkgver + + # Actually install + install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 acpi_call.ko + find "$pkgdir" -name '*.ko' -exec gzip -n {} + + + echo acpi_call | install -Dm644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/acpi_call${_kernelname}.conf" + + mkdir -p "$pkgdir/usr/share/acpi_call${_kernelname}" + cp -t "$pkgdir/usr/share/acpi_call${_kernelname}" -dr --no-preserve=ownership examples support +} + +if [[ ${_kernelname} == "" ]]; then + _package-dkms() { + depends=(dkms) + provides=("acpi_call=$pkgver-$pkgrel") + conflicts=(acpi_call) + + cd $pkgbase-$pkgver + + # Actually install + install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile acpi_call.c ../dkms.conf + + echo acpi_call | install -Dm644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/acpi_call.conf" + + mkdir -p "$pkgdir/usr/share/acpi_call" + cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples support + } + + pkgname=("${pkgbase}" "${pkgbase}-dkms") +else + pkgname=("${pkgbase}${_kernelname}") +fi + +for _p in ${pkgname[@]}; do + eval "package_${_p}() { + $(declare -f "_package${_p#${pkgbase}${_kernelname}}") + _package${_p#${pkgbase}${_kernelname}} + }" +done + +# vim:set ts=2 sw=2 et: diff --git a/libre/acpi_call-lts/dkms.conf b/libre/acpi_call-lts/dkms.conf new file mode 100644 index 000000000..edc5c2482 --- /dev/null +++ b/libre/acpi_call-lts/dkms.conf @@ -0,0 +1,9 @@ +PACKAGE_NAME="acpi_call" +PACKAGE_VERSION="#MODULE_VERSION#" +AUTOINSTALL="yes" + +MAKE[0]="make KVERSION=$kernelver" +CLEAN="make clean" + +BUILT_MODULE_NAME[0]="acpi_call" +DEST_MODULE_LOCATION[0]="/kernel/drivers/acpi" diff --git a/libre/acpi_call/PKGBUILD b/libre/acpi_call/PKGBUILD index 41656d495..3fabea630 100644 --- a/libre/acpi_call/PKGBUILD +++ b/libre/acpi_call/PKGBUILD @@ -6,7 +6,7 @@ # Maintainer: Omar Vega Ramos # Contributor: Luke Shumaker -_kernelname=-lts +_kernelname= if [[ ${_kernelname} == "" ]]; then _basekernel=4.14 diff --git a/libre/bbswitch-lts/PKGBUILD b/libre/bbswitch-lts/PKGBUILD new file mode 100644 index 000000000..5d0473538 --- /dev/null +++ b/libre/bbswitch-lts/PKGBUILD @@ -0,0 +1,78 @@ +# Maintainer (Arch): Sven-Hendrik Haase +# Contributor (Arch): M0Rf30 +# Contributor (Arch): Samsagax +# Contributor (Hyperbola): André Silva +# Contributor (Hyperbola): Márcio Silva +# Maintainer: Omar Vega Ramos +# Contributor: Luke Shumaker + +_kernelname=-lts + +if [[ ${_kernelname} == "" ]]; then + _basekernel=4.14 + _archrel=96 + _parabolarel=1 +elif [[ ${_kernelname} == -lts ]]; then + _basekernel=4.9 + _archrel=38 + _parabolarel=1 +fi + +pkgbase=bbswitch +pkgver=0.8 +pkgrel=${_archrel}.parabola${_parabolarel}.basekernel${_basekernel} +_extramodules=extramodules-${_basekernel}${_kernelname} +pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus laptops (built for the linux-libre${_kernelname} kernel package)" +arch=('i686' 'x86_64') +url="http://github.com/Bumblebee-Project/${pkgbase}" +license=('GPL') + +# Generic (you shouldn't have to modify any of these variables) +_toohigh=$(IFS=. read a b <<<$_basekernel; echo $a.$((b+1))) +makedepends=("linux-libre${_kernelname}-headers>=${_basekernel}" "linux-libre${_kernelname}-headers<${_toohigh}" "linux-libre${_kernelname}>=${_basekernel}" "linux-libre${_kernelname}<${_toohigh}") +makedepends+=('libelf') + +if [[ ${_kernelname} != "" ]]; then + provides=("${pkgbase}") +fi + +source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz") +sha256sums=('76cabd3f734fb4fe6ebfe3ec9814138d0d6f47d47238521ecbd6a986b60d1477') + +build() { + cd "${pkgbase}-${pkgver}" + _kernver="$(cat /usr/lib/modules/${_extramodules}/version)" + make KDIR=/lib/modules/${_kernver}/build +} + +_package() { + depends=("linux-libre${_kernelname}>=${_basekernel}" "linux-libre${_kernelname}<${_toohigh}") + replaces=("${pkgbase}-libre${_kernelname}" "${pkgbase}-parabola${_kernelname}") + conflicts=("${pkgbase}-libre${_kernelname}" "${pkgbase}-parabola${_kernelname}") + + cd "${pkgbase}-${pkgver}" + install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 bbswitch.ko + find "${pkgdir}" -name '*.ko' -exec gzip -n {} + +} + +if [[ ${_kernelname} == "" ]]; then + _package-dkms() { + depends=('dkms') + conflicts=('bbswitch') + provides=('bbswitch') + + cd "${pkgbase}-${pkgver}" + install -Dt "${pkgdir}/usr/src/${pkgbase}-${pkgver}" -m644 Makefile bbswitch.c dkms/dkms.conf + } + + pkgname=("${pkgbase}${_kernelname}" "${pkgbase}${_kernelname}-dkms") +else + pkgname=("${pkgbase}${_kernelname}") +fi + +for _p in ${pkgname[@]}; do + eval "package_${_p}() { + $(declare -f "_package${_p#${pkgbase}${_kernelname}}") + _package${_p#${pkgbase}${_kernelname}} + }" +done -- cgit v1.2.3