X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=Goalfile;h=650f211e5f4d3b0695e5c35b44e89b160251bc2c;hb=2cec8696c1c4b14abff13b6f9a1c64be30ec8c48;hp=3e2b2b509fc0069c802e13fd4dd4dd77493dc649;hpb=894c3badc43d31748bb1510a77a2c58804e6c535;p=fedora-ocaml-rebuild.git diff --git a/Goalfile b/Goalfile index 3e2b2b5..650f211 100644 --- a/Goalfile +++ b/Goalfile @@ -4,16 +4,13 @@ include "fedora.gl" let fedora-dir = "%HOME/d/fedora" -let fedora-branch = "master" -let fedora-tag = "f32-build-side-18015" -let koji = "koji" -#let koji = "koji -p riscv64" -let fedpkg = "fedpkg" -#let fedpkg = "fedpkg --user-config %HOME/d/fedora-ocaml-rebuild/fedpkg-user-config" +#let fedora-branch = "master" +let fedora-branch = "f32" +let fedora-tag = "f32-build-side-19863" # The magic string that must appear in %changelog when the # package has been rebuilt. -let fedora-rebuild-name = "OCaml 4.10.0+beta1 rebuild." +let fedora-rebuild-name = "OCaml 4.10.0 final (Fedora 32)." # Packages that are blocked. Any dependent packages are also blocked # automatically. @@ -22,32 +19,42 @@ let fedora-rebuild-name = "OCaml 4.10.0+beta1 rebuild." # Packages that are ignored, which means they are treated as if # they have been rebuilt. -let fedora-ignored = [ "ocaml-srpm-macros", "ocaml" ] +let fedora-ignored = [ + "ocaml-srpm-macros", "ocaml", +] # All OCaml-related source package names let other-packages = [ "alt-ergo", "apron", "brltty", - "coq", "frama-c", "gappalib-coq", "graphviz", "hevea", "hivex", - "libguestfs", "libnbd", "opam", - "virt-top", "virt-v2v", "why3", "zenon", + "libguestfs", "libnbd", + "virt-top", "virt-v2v", + "z3", # no OCaml code, but needs to be rebuilt after Coq - "flocq" + #"flocq" + + # Coq problems: + # https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/6I2CB4KNAZXH6TKX5WQZJ3ZQGBIOCNJK/ + # "coq", "frama-c", "gappalib-coq", + # "why3", "zenon", + # "flocq", + + # Coccinelle uses -unsafe-string. + # "coccinelle", - # causes stack overflow in goals expr_to_shell_string - # when handling EList. Is the list returned too long? + # Causes a cyclic dependency between libnbd <-> nbdkit. We need + # to fix this in goals itself, but in the meantime disable nbdkit + # and build it by hand. # "nbdkit", - # plplot FTBFS for unrelated reasons + # https://bugzilla.redhat.com/show_bug.cgi?id=1797853 # "plplot", - # https://bugzilla.redhat.com/show_bug.cgi?id=1792740 - # "z3", - - # Coccinelle uses -unsafe-string. - # "coccinelle", + # FTBFS because of a missing dependency. + # "opam", ] + pure function get-source-packages () returning strings = { cd %fedora-dir for f in ocaml* %other-packages; do @@ -57,4 +64,4 @@ pure function get-source-packages () returning strings = { let fedora-source-packages = get-source-packages () # Main goal: Rebuild all packages in Koji. -goal all = : wrap ("*koji-built", fedora-source-packages) +goal all = : wrap ("is-koji-built", fedora-source-packages)