summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2020-12-08 20:01:06 +0100
committerAndreas Grapentin <andreas@grapentin.org>2020-12-08 20:01:06 +0100
commitdf96ee4a70df70d029d6285be9c44113507b377a (patch)
tree2ec1299ff81daee267eed6f26eb81ae1f6a56369
parent770de002867b114223bb2ba91af7259b90be65d1 (diff)
libre/acpi-call{,-dkms,-lts}: reworked and rebuilt for new kernels
-rw-r--r--libre/acpi_call-dkms/0001-linux-5.6.patch45
-rw-r--r--libre/acpi_call-dkms/PKGBUILD62
-rw-r--r--libre/acpi_call-dkms/dkms.conf2
-rw-r--r--libre/acpi_call-lts/PKGBUILD41
-rw-r--r--libre/acpi_call/PKGBUILD7
5 files changed, 50 insertions, 107 deletions
diff --git a/libre/acpi_call-dkms/0001-linux-5.6.patch b/libre/acpi_call-dkms/0001-linux-5.6.patch
deleted file mode 100644
index a662a1a58..000000000
--- a/libre/acpi_call-dkms/0001-linux-5.6.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From 958e38a9ade01c0c2d23c1310399147b014177a0 Mon Sep 17 00:00:00 2001
-From: Victor Michel <vic.michel.github@gmail.com>
-Date: Tue, 10 Mar 2020 22:33:31 -0700
-Subject: [PATCH] Use proc_ops instead of file_operations on Linux >= 5.6
-
-The proc_create API is changing in Linux 5.6, update code accordingly
-See https://github.com/torvalds/linux/commit/d56c0d45f0e27f814e87a1676b6bdccccbc252e9
----
- acpi_call.c | 11 +++++++++--
- 1 file changed, 9 insertions(+), 2 deletions(-)
-
-diff --git a/acpi_call.c b/acpi_call.c
-index 3025d97..569c2b6 100644
---- a/acpi_call.c
-+++ b/acpi_call.c
-@@ -5,8 +5,8 @@
- #include <linux/version.h>
- #include <linux/proc_fs.h>
- #include <linux/slab.h>
--#include <asm/uaccess.h>
--#include <acpi/acpi.h>
-+#include <linux/acpi.h>
-+#include <linux/uaccess.h>
-
- MODULE_LICENSE("GPL");
-
-@@ -317,11 +317,18 @@ static ssize_t acpi_proc_read( struct file *filp, char __user *buff,
- return ret;
- }
-
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 6, 0)
-+static struct proc_ops proc_acpi_operations = {
-+ .proc_read = acpi_proc_read,
-+ .proc_write = acpi_proc_write,
-+};
-+#else
- static struct file_operations proc_acpi_operations = {
- .owner = THIS_MODULE,
- .read = acpi_proc_read,
- .write = acpi_proc_write,
- };
-+#endif
-
- #else
- static int acpi_proc_read(char *page, char **start, off_t off,
diff --git a/libre/acpi_call-dkms/PKGBUILD b/libre/acpi_call-dkms/PKGBUILD
index 101fc0fc9..e0b3f960c 100644
--- a/libre/acpi_call-dkms/PKGBUILD
+++ b/libre/acpi_call-dkms/PKGBUILD
@@ -6,45 +6,41 @@
# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
-_basekernel=5.8.3
+_basekernel=5.9.12
pkgname=acpi_call-dkms
-pkgver=1.1.0
-pkgrel=287
+pkgver=1.2.1
+pkgrel=2
pkgrel+=.parabola1.basekernel${_basekernel}
pkgdesc='A linux kernel module that enables calls to ACPI methods through /proc/acpi/call - module sources'
pkgdesc+=' (for linux-libre)'
-url='https://github.com/mkottman/acpi_call'
-arch=('x86_64')
-arch+=('i686')
-license=('GPL')
-depends=('dkms')
-makedepends=(linux-libre-headers=${_basekernel})
-provides=("acpi_call=$pkgver-${pkgrel%%.*}")
-conflicts=('acpi_call')
-source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz"
- '0001-linux-5.6.patch'
- 'dkms.conf')
-sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0'
- '1f397f087fd96d5286907c90f518bbe68b0d19f83ab30bb124f76a19693a932c'
- '32e6ea6523b13132c6c7838bba7fbf3d040ba2d35a892c2c356245612720df8a')
-
-prepare() {
- cd acpi_call-$pkgver
-
- # Fix build with Linux >= 5.6
- # also: Linux-libre >= 3.17-gnu (acpi.h)
- # also: Linux-libre >= 4.12-gnu (uaccess.h)
- patch -Np1 < ../0001-linux-5.6.patch
+url=https://github.com/nix-community/acpi_call
+arch=(x86_64 i686)
+license=(GPL)
+depends=(dkms)
+makedepends=(
+ git
+ linux-libre-headers=${_basekernel}
+)
+provides=(acpi_call=${pkgver}-${pkgrel%%.*})
+conflicts=(acpi_call)
+_tag=3a28aabfa337d59df91cc04c85b250da7f7cadea
+source=(
+ git+https://github.com/nix-community/acpi_call.git#tag=${_tag}
+ dkms.conf
+)
+b2sums=('SKIP'
+ '504da1102e778fe54368e990408dbef02f5b2ce91f683d170f3d6a1a2f9349d00d61dcbddd0262a8dfc958ea0964135ba58d8dd88ac06bd10b5e13b90f11faef')
+
+pkgver() {
+ cd acpi_call
+
+ git describe --tags | sed 's/^v//'
}
package() {
- cd acpi_call-$pkgver
-
- install -Dt "$pkgdir/usr/src/acpi_call-$pkgver" -m0644 Makefile acpi_call.c ../dkms.conf
-
- echo acpi_call | install -Dm0644 /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
+ install -Dm 644 acpi_call/{Makefile,acpi_call.c} dkms.conf -t "${pkgdir}"/usr/src/acpi_call-${pkgver}
+ echo acpi_call | install -Dm 644 /dev/stdin "${pkgdir}"/usr/lib/modules-load.d/acpi_call.conf
+ install -dm 755 "${pkgdir}"/usr/share/acpi_call
+ cp -dr --no-preserve=ownership acpi_call/{examples,support} "${pkgdir}"/usr/share/acpi_call/
}
diff --git a/libre/acpi_call-dkms/dkms.conf b/libre/acpi_call-dkms/dkms.conf
index edc5c2482..485283791 100644
--- a/libre/acpi_call-dkms/dkms.conf
+++ b/libre/acpi_call-dkms/dkms.conf
@@ -2,7 +2,7 @@ PACKAGE_NAME="acpi_call"
PACKAGE_VERSION="#MODULE_VERSION#"
AUTOINSTALL="yes"
-MAKE[0]="make KVERSION=$kernelver"
+MAKE[0]="make KVER=$kernelver"
CLEAN="make clean"
BUILT_MODULE_NAME[0]="acpi_call"
diff --git a/libre/acpi_call-lts/PKGBUILD b/libre/acpi_call-lts/PKGBUILD
index 6b2c9040e..bd45704c7 100644
--- a/libre/acpi_call-lts/PKGBUILD
+++ b/libre/acpi_call-lts/PKGBUILD
@@ -6,11 +6,11 @@
# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
-_basekernel=5.4.60
+_basekernel=5.4.78
pkgname=acpi_call-lts
-pkgver=1.1.0
-pkgrel=162
+pkgver=1.2.1
+pkgrel=9
pkgrel+=.parabola1.basekernel${_basekernel}
pkgdesc='A linux kernel module that enables calls to ACPI methods through /proc/acpi/call'
pkgdesc+=' (for linux-libre-lts)'
@@ -18,36 +18,29 @@ url='https://github.com/mkottman/acpi_call'
arch=('x86_64')
arch+=('i686' 'armv7h')
license=('GPL')
-makedepends=(linux-libre-lts-headers=${_basekernel} libelf)
+makedepends=(linux-libre-lts-headers=${_basekernel} acpi_call-dkms=$pkgver libelf)
+conflicts=('acpi_call-dkms')
provides=('acpi_call')
-source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz")
-sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
-
-prepare() {
- cd acpi_call-$pkgver
-
- # Fix build with Linux-libre >= 3.17-gnu
- sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
-
- # Fix build with Linux-libre >= 4.12
- sed -i 's|asm/uaccess.h|linux/uaccess.h|' acpi_call.c
-}
build() {
- cd acpi_call-$pkgver
- make KVERSION="$(</usr/src/linux-libre-lts/version)"
+ _kernver=$(</usr/src/linux-libre-lts/version)
+
+ fakeroot dkms build --dkmstree "$srcdir" -m acpi_call/$pkgver -k $_kernver
}
package() {
depends=(linux-libre-lts=${_basekernel})
- cd acpi_call-$pkgver
- _extradir="/usr/lib/modules/$(</usr/src/linux-libre-lts/version)/extramodules"
- install -Dt "$pkgdir$_extradir" -m644 *.ko
- find "$pkgdir" -name '*.ko' -exec xz {} +
+ _kernver=$(</usr/src/linux-libre-lts/version)
+
+ install -Dt "$pkgdir/usr/lib/modules/$_kernver/extramodules" -m0644 \
+ acpi_call/${pkgver}/$_kernver/$CARCH/module/*
+
+ # compress each module individually
+ find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
echo acpi_call | install -Dm644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
- mkdir -p "$pkgdir/usr/share/$pkgname"
- cp -t "$pkgdir/usr/share/$pkgname" -dr --no-preserve=ownership examples support
+ mkdir -p "$pkgdir/usr/share"
+ cp -a /usr/share/acpi_call "$pkgdir/usr/share/$pkgname"
}
diff --git a/libre/acpi_call/PKGBUILD b/libre/acpi_call/PKGBUILD
index feb375b7e..84f041e7b 100644
--- a/libre/acpi_call/PKGBUILD
+++ b/libre/acpi_call/PKGBUILD
@@ -6,11 +6,11 @@
# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
-_basekernel=5.8.3
+_basekernel=5.9.12
pkgname=acpi_call
-pkgver=1.1.0
-pkgrel=336
+pkgver=1.2.1
+pkgrel=9
pkgrel+=.parabola1.basekernel${_basekernel}
pkgdesc='A linux kernel module that enables calls to ACPI methods through /proc/acpi/call'
pkgdesc+=' (for linux-libre)'
@@ -22,7 +22,6 @@ makedepends=("linux-libre-headers=${_basekernel}" "acpi_call-dkms=$pkgver")
conflicts=('acpi_call-dkms')
build() {
-
_kernver=$(</usr/src/linux-libre/version)
fakeroot dkms build --dkmstree "$srcdir" -m acpi_call/$pkgver -k $_kernver