diff options
| author | Jonas Meeuws <jonas.meeuws@gmail.com> | 2026-08-08 16:35:54 +0200 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-08-22 16:49:17 +0200 |
| commit | 3008ffdaefa4527933645e4c08c05b166ad8c27e (patch) | |
| tree | 3c5c0e91a8dcd999f0eae46ebea74a72e1d0b012 | |
| parent | b7d7ffdbada7e539fd89dca8b8e2cdec45677dac (diff) | |
gnu: dmd: Enforce max line length.
* gnu/packages/dlang.scm (dmd-bootstrap)[#:phases]<patch-tests>: Enforce max
line length.
<install>: Enforce max line length.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
| -rw-r--r-- | gnu/packages/dlang.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/dlang.scm b/gnu/packages/dlang.scm index ac7aa584561..e24aa7fd0a2 100644 --- a/gnu/packages/dlang.scm +++ b/gnu/packages/dlang.scm | |||
| @@ -623,7 +623,8 @@ This compiler is based on the DMD frontend version 2.112.1.") | |||
| 623 | ;; not in executable format: file format not recognized | 623 | ;; not in executable format: file format not recognized |
| 624 | #$@(if (target-32bit?) | 624 | #$@(if (target-32bit?) |
| 625 | #~(delete-file | 625 | #~(delete-file |
| 626 | "dmd/compiler/test/runnable/gdb_slice_debuginfo_64.d") | 626 | (string-append "dmd/compiler/test/runnable" |
| 627 | "/gdb_slice_debuginfo_64.d")) | ||
| 627 | #~()) | 628 | #~()) |
| 628 | 629 | ||
| 629 | ;; Locations in stack traces are broken for some reason, | 630 | ;; Locations in stack traces are broken for some reason, |
| @@ -677,6 +678,8 @@ This compiler is based on the DMD frontend version 2.112.1.") | |||
| 677 | (out-bin (string-append out "/bin")) | 678 | (out-bin (string-append out "/bin")) |
| 678 | (out-etc (string-append out "/etc")) | 679 | (out-etc (string-append out "/etc")) |
| 679 | (out-include (string-append out "/include/d/dmd")) | 680 | (out-include (string-append out "/include/d/dmd")) |
| 681 | (out-include-etc (string-append out-include "/etc")) | ||
| 682 | (out-include-std (string-append out-include "/std")) | ||
| 680 | (out-lib (string-append out "/lib")) | 683 | (out-lib (string-append out "/lib")) |
| 681 | (lib-lib (string-append lib "/lib")) | 684 | (lib-lib (string-append lib "/lib")) |
| 682 | (out-man (string-append out "/share/man"))) | 685 | (out-man (string-append out "/share/man"))) |
| @@ -693,8 +696,8 @@ This compiler is based on the DMD frontend version 2.112.1.") | |||
| 693 | (install-file "libphobos2.a" out-lib) | 696 | (install-file "libphobos2.a" out-lib) |
| 694 | (for-each (cut install-file <> lib-lib) | 697 | (for-each (cut install-file <> lib-lib) |
| 695 | (find-files "." "^libphobos2\\.so[.0-9]*$"))) | 698 | (find-files "." "^libphobos2\\.so[.0-9]*$"))) |
| 696 | (copy-recursively "etc" (string-append out-include "/etc")) | 699 | (copy-recursively "etc" out-include-etc) |
| 697 | (copy-recursively "std" (string-append out-include "/std"))) | 700 | (copy-recursively "std" out-include-std)) |
| 698 | (mkdir-p out-etc) | 701 | (mkdir-p out-etc) |
| 699 | (with-output-to-file (string-append out-etc "/dmd.conf") | 702 | (with-output-to-file (string-append out-etc "/dmd.conf") |
| 700 | (lambda _ | 703 | (lambda _ |
