[libvirt] [dockerfiles PATCH 1/2] refresh: Use fedora-30 to perform MinGW builds

Fabiano Fidêncio posted 2 patches 6 years, 5 months ago
Only 1 patches received!
[libvirt] [dockerfiles PATCH 1/2] refresh: Use fedora-30 to perform MinGW builds
Posted by Fabiano Fidêncio 6 years, 5 months ago
This is a workaround needed as a set of MinGW packages got removed from
Fedora Rawhide. We have to keep this workaround till the packages are
not un-retired/re-added.

Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com>
---
 refresh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/refresh b/refresh
index 73b4f9e..5f3f5e3 100755
--- a/refresh
+++ b/refresh
@@ -95,11 +95,11 @@ class Dockerfile:
 
         for project in Dockerfile.PROJECTS[project_name]:
             self.projects += [project]
-            # Fedora Rawhide is special in that we use it to perform MinGW
+            # Fedora 30 is special in that we use it to perform MinGW
             # builds, so we need to add the corresponding projects as well.
             # If a specific project needs to have the MinGW variant included,
             # the corresponding value in the dictionary will be True
-            if (self.os == "fedora-rawhide" and
+            if (self.os == "fedora-30" and
                 Dockerfile.PROJECTS[project_name][project]):
                 self.projects += [project + "+mingw*"]
 
-- 
2.21.0

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list
Re: [libvirt] [dockerfiles PATCH 1/2] refresh: Use fedora-30 to perform MinGW builds
Posted by Andrea Bolognani 6 years, 5 months ago
On Fri, 2019-08-16 at 17:10 +0200, Fabiano Fidêncio wrote:
> refresh: Use fedora-30 to perform MinGW builds

s/fedora-30/Fedora 30/

> This is a workaround needed as a set of MinGW packages got removed from
> Fedora Rawhide. We have to keep this workaround till the packages are
> not un-retired/re-added.
> 
> Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com>
> ---
>  refresh | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Reviewed-by: Andrea Bolognani <abologna@redhat.com>

-- 
Andrea Bolognani / Red Hat / Virtualization

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list
  • [libvirt] [dockerfiles PATCH 1/2] refresh: Use fedora-30 to perform MinGW builds