Disable plplot, still FTBFS.
[fedora-ocaml-rebuild.git] / Goalfile
1 # See README.
2
3 include "fedora.gl"
4
5 let fedora-dir = "%HOME/d/fedora"
6
7 let fedora-branch = "master"
8 let fedora-tag = "f33-build-side-19773"
9
10 # The magic string that must appear in %changelog when the
11 # package has been rebuilt.
12 let fedora-rebuild-name = "OCaml 4.10.0 final."
13
14 # Packages that are blocked.  Any dependent packages are also blocked
15 # automatically.
16 # XXX Not implemented, use ignore for now.
17 #let fedora-blocked = [ "ocaml-camlp4" ]
18
19 # Packages that are ignored, which means they are treated as if
20 # they have been rebuilt.
21 let fedora-ignored = [
22     "ocaml-srpm-macros", "ocaml",
23 ]
24
25 # All OCaml-related source package names
26 let other-packages = [
27     "alt-ergo", "apron", "brltty",
28     "graphviz", "hevea", "hivex",
29     "libguestfs", "libnbd",
30     "opam",
31     "virt-top", "virt-v2v",
32     "z3",
33
34     # no OCaml code, but needs to be rebuilt after Coq
35     #"flocq"
36
37     # Coq problems:
38     # https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/6I2CB4KNAZXH6TKX5WQZJ3ZQGBIOCNJK/
39     # "coq", "frama-c", "gappalib-coq",
40     # "why3", "zenon",
41     # "flocq",
42
43     # Coccinelle uses -unsafe-string.
44     # "coccinelle",
45
46     # Causes a cyclic dependency between libnbd <-> nbdkit.  We need
47     # to fix this in goals itself, but in the meantime disable nbdkit
48     # and build it by hand.
49     # "nbdkit",
50
51     # https://bugzilla.redhat.com/show_bug.cgi?id=1797853
52     # "plplot",
53 ]
54
55 pure function get-source-packages () returning strings = {
56     cd %fedora-dir
57     for f in ocaml* %other-packages; do
58         [ -f $f/%fedora-branch/$f.spec ] && echo "$f"
59     done
60 }
61 let fedora-source-packages = get-source-packages ()
62
63 # Main goal: Rebuild all packages in Koji.
64 goal all = : wrap ("is-koji-built", fedora-source-packages)