ocaml
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove ppx_blob, which is causing build problems

Feel free to revert with a fix.

References: https://todo.sr.ht/~jonsterling/forester/163

+3 -20
+1 -15
bin/forester/dune
··· 14 14 min.js 15 15 (glob_files_rec theme/*))) 16 16 17 - (rule 18 - (deps (universe)) 19 - (action 20 - (with-stdout-to 21 - version.txt 22 - (progn 23 - (echo "Forester development version -- built from commit ") 24 - (system 25 - "(git show -s --format=%h 2>/dev/null || echo '(unknown)') | tr -d '\n'") 26 - (echo " on ") 27 - (system "date +'%Y-%m-%d'"))))) 28 - 29 17 (executable 30 18 (public_name forester) 31 19 (name main) ··· 34 22 (link_flags 35 23 (:standard -g)) 36 24 (preprocess 37 - (pps ppx_deriving.show ppx_blob)) 38 - (preprocessor_deps 39 - (file version.txt)) 25 + (pps ppx_deriving.show)) 40 26 (modules main theme_site) 41 27 (libraries 42 28 forester.prelude
+1 -2
bin/forester/main.ml
··· 37 37 | None -> "n/a" 38 38 | Some v -> Build_info.V1.Version.to_string v 39 39 in 40 - let commit = String.trim [%blob "version.txt"] in 41 - Format.asprintf "%s %s" major commit 40 + Format.asprintf "%s" major 42 41 43 42 let build ~env _ config_filename dev no_theme = 44 43 Reporter.easy_run @@ fun () ->
+1 -2
dune-project
··· 101 101 spelll 102 102 (odoc 103 103 (>= 2.4.4 :with-doc)) 104 - alcotest 105 - ppx_blob)) 104 + alcotest))
-1
forester.opam
··· 44 44 "spelll" 45 45 "odoc" {"2.4.4" >= with-doc} 46 46 "alcotest" 47 - "ppx_blob" 48 47 ] 49 48 build: [ 50 49 ["dune" "subst"] {dev}