gnu: acpi-call-linux-module: Update to 1.2.1.

This decrements VERSION to match (pre-fork) upstream's.  One doesn't
‘guix install’ kernel modules so I don't expect problems in practice.

* gnu/packages/linux.scm (acpi-call-linux-module): Update to 1.2.1.
[source]: Update renamed upstream.
This commit is contained in:
Tobias Geerinckx-Rice 2020-11-22 13:20:46 +01:00
parent b7c392a697
commit 6aa8f213c4
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79

View File

@ -1042,39 +1042,37 @@ It has been modified to remove all non-free binary blobs.")
;;; ;;;
(define-public acpi-call-linux-module (define-public acpi-call-linux-module
(let ((commit "70b9c80bd700e6a4d10797eaac9fd34b7e8cbd4a") (package
(revision "0")) (name "acpi-call-linux-module")
(package (version "1.2.1")
(name "acpi-call-linux-module") (source
(version (git-version "3.17" revision commit)) (origin
(source (method git-fetch)
(origin (uri (git-reference
(method git-fetch) (url "https://github.com/nix-community/acpi_call")
(uri (git-reference (commit (string-append "v" version))))
(url "https://github.com/teleshoes/acpi_call") (file-name (git-file-name name version))
(commit commit))) (sha256
(file-name (git-file-name name version)) (base32 "0mr4rjbv6fj4phf038addrgv32940bphghw2v9n1z4awvw7wzkbg"))))
(sha256 (build-system linux-module-build-system)
(base32 "09c1vw6vcrkqxbwhpgfgpj4d1grzn4qq6ka8pwwzm7cvm405xj7x")))) (arguments
(build-system linux-module-build-system) `(#:tests? #f ; no tests
(arguments #:phases
`(#:tests? #f ; no tests (modify-phases %standard-phases
#:phases (add-after 'install 'install-documentation
(modify-phases %standard-phases (lambda* (#:key outputs #:allow-other-keys)
(add-after 'install 'install-documentation (let* ((out (assoc-ref outputs "out"))
(lambda* (#:key outputs #:allow-other-keys) (doc (string-append out "/share/doc/" ,name "-" ,version)))
(let* ((out (assoc-ref outputs "out")) (for-each (lambda (file)
(doc (string-append out "/share/doc/" ,name "-" ,version))) (let ((target (string-append doc "/" file)))
(for-each (lambda (file) (mkdir-p (dirname target))
(let ((target (string-append doc "/" file))) (copy-recursively file target)))
(mkdir-p (dirname target)) (list "README.md" "examples"))
(copy-recursively file target))) #t))))))
(list "README.md" "examples")) (home-page "https://github.com/teleshoes/acpi_call")
#t)))))) (synopsis "Linux kernel module to perform ACPI method calls")
(home-page "https://github.com/teleshoes/acpi_call") (description
(synopsis "Linux kernel module to perform ACPI method calls") "This simple Linux kernel module allows calls from user space to any
(description
"This simple Linux kernel module allows calls from user space to any
@acronym{ACPI, Advanced Configuration and Power Interface} method provided by @acronym{ACPI, Advanced Configuration and Power Interface} method provided by
your computer's firmware, by writing to @file{/proc/acpi/call}. You can pass your computer's firmware, by writing to @file{/proc/acpi/call}. You can pass
any number of parameters of types @code{ACPI_INTEGER}, @code{ACPI_STRING}, any number of parameters of types @code{ACPI_INTEGER}, @code{ACPI_STRING},
@ -1082,7 +1080,7 @@ and @code{ACPI_BUFFER}.
It grants direct and undocumented access to your hardware that may cause damage It grants direct and undocumented access to your hardware that may cause damage
and should be used with caution, especially on untested models.") and should be used with caution, especially on untested models.")
(license license:gpl3+)))) ; see README.md (no licence headers) (license license:gpl3+))) ; see README.md (no licence headers)
(define-public rtl8812au-aircrack-ng-linux-module (define-public rtl8812au-aircrack-ng-linux-module
(let ((commit "df2b8dfd8cb7d9f6cfeb55abaeab8a5372011fc9") (let ((commit "df2b8dfd8cb7d9f6cfeb55abaeab8a5372011fc9")