Remove nbdkit, built by hand.
[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     "plplot",
32     "virt-top", "virt-v2v",
33     "z3",
34
35     # no OCaml code, but needs to be rebuilt after Coq
36     #"flocq"
37
38     # Coq problems:
39     # https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/6I2CB4KNAZXH6TKX5WQZJ3ZQGBIOCNJK/
40     # "coq", "frama-c", "gappalib-coq",
41     # "why3", "zenon",
42     # "flocq",
43
44     # Coccinelle uses -unsafe-string.
45     # "coccinelle",
46
47     # Causes a cyclic dependency between libnbd <-> nbdkit.  We need
48     # to fix this in goals itself, but in the meantime disable nbdkit
49     # and build it by hand.
50     # "nbdkit",
51 ]
52
53 pure function get-source-packages () returning strings = {
54     cd %fedora-dir
55     for f in ocaml* %other-packages; do
56         [ -f $f/%fedora-branch/$f.spec ] && echo "$f"
57     done
58 }
59 let fedora-source-packages = get-source-packages ()
60
61 # Main goal: Rebuild all packages in Koji.
62 goal all = : wrap ("is-koji-built", fedora-source-packages)