From 458a70da14444961a17287e63db39a8a6cc5e7c3 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 6 Sep 2019 21:50:26 +0100 Subject: [PATCH] ocaml: Fix branches for F32. --- libguestfs_fedora.ml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/libguestfs_fedora.ml b/libguestfs_fedora.ml index 1c08bff..991e202 100644 --- a/libguestfs_fedora.ml +++ b/libguestfs_fedora.ml @@ -22,11 +22,10 @@ let package = "libguestfs" (* How branches in libguestfs upstream map to branches in Fedora. *) let branches = [ -(* "1.41-development", "master"; (* Rawhide follows development. *)*) - "1.40-stable", "master"; + "1.41-development", "master"; (* Rawhide follows development. *) + "1.40-stable", "f31"; (* F31 follows development. *) + "1.40-stable", "f30"; (* F30 follows development. *) "1.40-stable", "f29"; (* F29 follows development. *) - "1.38-stable", "f28"; (* F28 follows 1.38. *) - "1.38-stable", "f27"; (* F27 follows 1.38. *) ] (* Goal: Latest website version has been built in every branch. *) -- 1.8.3.1