[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#27657] [PATCH] gnu: wayland: Improve fix-graphviz phase.
From: |
Arun Isaac |
Subject: |
[bug#27657] [PATCH] gnu: wayland: Improve fix-graphviz phase. |
Date: |
Thu, 20 Jul 2017 07:05:24 +0530 |
* gnu/packages/freedesktop.scm (wayland)[arguments]: Return #t from
fix-graphviz phase. Add punctuation and upstream bug report link to comments.
---
gnu/packages/freedesktop.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index d0d7604b1..df2fe787f 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -371,13 +371,15 @@ Python.")
`(#:parallel-tests? #f
#:phases
(modify-phases %standard-phases
- ;; Remove record shapes to workaround graphviz 2.40.1 problems
+ ;; Remove record shapes to workaround graphviz 2.40.1 problems.
;;
http://www.graphviz.org/content/i-havent-been-able-render-these-files-graphviz-226
- ;; This will likely be fixed upstream in the next release
+ ;; This will likely be fixed upstream in the next release.
+ ;;
https://lists.freedesktop.org/archives/wayland-devel/2017-June/034218.html
(add-before 'build 'fix-graphviz
(lambda _
(substitute* "doc/doxygen/dot/x-architecture.gv"
- (("Mrecord") "none")))))))
+ (("Mrecord") "none"))
+ #t)))))
(native-inputs
`(("doxygen" ,doxygen)
("graphviz" ,graphviz)
--
2.12.2
- [bug#27657] [PATCH] gnu: graphviz: Update to 2.40.1., (continued)
[bug#27657] [PATCH] gnu: graphviz: Update to 2.40.1., Arun Isaac, 2017/07/12
[bug#27657] [PATCH 1/3] gnu: graphviz: Use modify-phases., Arun Isaac, 2017/07/12
[bug#27657] [PATCH] gnu: graphviz: Remove unnecessary inputs., Arun Isaac, 2017/07/14
[bug#27657] [PATCH] gnu: wayland: Improve fix-graphviz phase.,
Arun Isaac <=