diff options
author | Morgan Smith <Morgan.J.Smith@outlook.com> | 2023-02-11 22:44:27 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-03-04 18:46:37 +0100 |
commit | 0d6c5e0ba1bd6800712e79964f7b9f5c6043f249 (patch) | |
tree | c4e1c4f1369f7dc897b218ebb0a4e01052ba1d11 /gnu/packages/pumpio.scm | |
parent | a6194d1f35ec8ac9b58f4d05affa5aabf1ca7014 (diff) |
gnu: Remove and deprecate tidy for tidy-html
* gnu/packages/web.scm (tidy): Change to deprecated alias for tidy-html
* gnu/packages/pumpio.scm (pumpa): Use tidy-html instead of tidy and correct
header name.
* gnu/packages/markup.scm (hoedown):
* gnu/packages/photo.scm (enblend-enfuse):
* gnu/packages/php.scm (php):
* gnu/packages/python-xyz.scm (python-pytidylib):
Use tidy-html instead of tidy.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/pumpio.scm')
-rw-r--r-- | gnu/packages/pumpio.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/pumpio.scm b/gnu/packages/pumpio.scm index 2f4dd359d1..5fb6e338e8 100644 --- a/gnu/packages/pumpio.scm +++ b/gnu/packages/pumpio.scm @@ -47,6 +47,8 @@ (modify-phases %standard-phases (replace 'configure (lambda* (#:key inputs outputs #:allow-other-keys) + (substitute* "src/util.cpp" + (("buffio\\.h") "tidybuffio.h")) ;; Fix dependency tests. (substitute* "pumpa.pro" (("/usr/include/tidy\\.h") @@ -59,7 +61,7 @@ (invoke "qmake" prefix)) #t))))) (inputs - (list aspell qtbase-5 tidy)) + (list aspell qtbase-5 tidy-html)) (synopsis "Qt-based pump.io client") (description "Pumpa is a simple pump.io client written in C++ and Qt.") (home-page "https://pumpa.branchable.com/") |