[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/09: gnu: indent: Remove uneeded arguments.
From: |
guix-commits |
Subject: |
08/09: gnu: indent: Remove uneeded arguments. |
Date: |
Mon, 4 Nov 2024 04:37:56 -0500 (EST) |
z572 pushed a commit to branch master
in repository guix.
commit d076ae1c7a3ab34c1d7103b70887eedb2e38a0f5
Author: Nicolas Graves <ngraves@ngraves.fr>
AuthorDate: Sun Nov 3 17:02:07 2024 +0100
gnu: indent: Remove uneeded arguments.
* gnu/packages/code.scm (indent)
[arguments]: Remove field.
[native-inputs]: Remove automake.
---
gnu/packages/code.scm | 27 +--------------------------
1 file changed, 1 insertion(+), 26 deletions(-)
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm
index 3f7a6de478..b1523f5ac7 100644
--- a/gnu/packages/code.scm
+++ b/gnu/packages/code.scm
@@ -881,33 +881,8 @@ the C, C++, C++/CLI, Objective‑C, C#, and Java programming
languages.")
(sha256
(base32 "15c0ayp9rib7hzvrcxm5ijs0mpagw5y8kf5w0jr9fryfqi7n6r4y"))))
(build-system gnu-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'fix-docdir
- (lambda _
- ;; Although indent uses a modern autoconf in which docdir
- ;; defaults to PREFIX/share/doc, the doc/Makefile.am
- ;; overrides this to be in PREFIX/doc. Fix this.
- (substitute* "doc/Makefile.in"
- (("^docdir = .*$") "docdir = @docdir@\n"))
- #t))
- (add-after 'unpack 'fix-configure
- (lambda* (#:key inputs native-inputs #:allow-other-keys)
- ;; Replace outdated config.sub and config.guess:
- (with-directory-excursion "config"
- (for-each (lambda (file)
- (install-file
- (string-append (assoc-ref
- (or native-inputs inputs)
"automake")
- "/share/automake-"
- ,(version-major+minor
- (package-version automake))
- "/" file) "."))
- '("config.sub" "config.guess")))
- #t)))))
(native-inputs
- (list texinfo automake)) ; For up to date 'config.guess' and 'config.sub'.
+ (list texinfo))
(synopsis "Code reformatter")
(description
"Indent is a program that makes source code easier to read by
- branch master updated (a019e11ed2 -> 7bc82833a2), guix-commits, 2024/11/04
- 03/09: gnu: darkhttpd: Update to 1.16. [security fixes], guix-commits, 2024/11/04
- 01/09: gnu: cjson: Update to 1.7.18. [security fixes], guix-commits, 2024/11/04
- 02/09: gnu: pypy: Update to 7.3.17. [security fixes], guix-commits, 2024/11/04
- 04/09: gnu: darkhttpd: Enable tests., guix-commits, 2024/11/04
- 09/09: gnu: indent: Add patch for CVE-2024-0911. [security fixes], guix-commits, 2024/11/04
- 06/09: gnu: wireshark: Build from git source., guix-commits, 2024/11/04
- 08/09: gnu: indent: Remove uneeded arguments.,
guix-commits <=
- 05/09: gnu: wireshark: Update to 4.4.1. [security fixes], guix-commits, 2024/11/04
- 07/09: gnu: xlsxio: Update to 0.2.35. [security fixes], guix-commits, 2024/11/04