From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2195) id 11867383E812; Sun, 10 May 2020 18:00:03 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 11867383E812 To: cygwin-apps-cvs@sourceware.org Subject: [cygport - the Cygwin packaging tool] branch master, updated. 0.33.1-41-g4d946da X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 9548818c4370ab3066228506afa5112906d06520 X-Git-Newrev: 4d946dabbc5913e0fe72b689bb9fb1e17907bcb8 Message-Id: <20200510180003.11867383E812@sourceware.org> Date: Sun, 10 May 2020 18:00:03 +0000 (GMT) From: Yaakov Selkowitz X-BeenThere: cygwin-apps-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin-apps git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 May 2020 18:00:03 -0000 https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/cygport.git;h=4d946dabbc5913e0fe72b689bb9fb1e17907bcb8 commit 4d946dabbc5913e0fe72b689bb9fb1e17907bcb8 Author: Yaakov Selkowitz Date: Sun May 10 13:58:13 2020 -0400 CI: enable ocaml/dune test https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/cygport.git;h=d7f0ea1b3a104def44a5acf9e6bea28510613893 commit d7f0ea1b3a104def44a5acf9e6bea28510613893 Author: Yaakov Selkowitz Date: Sun May 10 13:57:44 2020 -0400 testsuite: fix dependencies of python/wheel https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/cygport.git;h=52fd083e9fd6095e7da4fc989f3ab9053a030103 commit 52fd083e9fd6095e7da4fc989f3ab9053a030103 Author: Yaakov Selkowitz Date: Sun May 10 13:49:49 2020 -0400 CI: re-enable autotools/gtkmm test glibmm2.4 has been rebuilt with a fix for GCC 9. This reverts commit d088423b5a306cae18541abd7bf094691ca71f98. Diff: --- .github/workflows/cygwin.yml | 2 ++ testsuite/python/meson.build | 7 ++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml index 0fa4f15..9104dc5 100644 --- a/.github/workflows/cygwin.yml +++ b/.github/workflows/cygwin.yml @@ -63,6 +63,7 @@ jobs: libexif-devel,^ libgdk_pixbuf2.0-devel,^ libgirepository1.0-devel,^ + libglibmm2.4-devel,^ libicu-devel,^ libkdecore4-devel,^ libkdecore5-devel,^ @@ -87,6 +88,7 @@ jobs: monotone,^ ninja,^ ocaml,^ + ocaml-dune,^ ocaml-findlib,^ patch,^ perl,^ diff --git a/testsuite/python/meson.build b/testsuite/python/meson.build index 8c554cb..94a48a8 100644 --- a/testsuite/python/meson.build +++ b/testsuite/python/meson.build @@ -1,5 +1,6 @@ -pip2 = find_program('pip2', required: false) -pip3 = find_program('pip3', required: false) +pip27 = find_program('pip2.7', required: false) +pip37 = find_program('pip3.7', required: false) +pip38 = find_program('pip3.8', required: false) pygtk2 = find_program('pygtk-codegen-2.0', required: false) if python2.found() @@ -10,6 +11,6 @@ if pygtk2.found() tests += [['python/pygtk', 480]] endif -if pip2.found() and pip3.found() +if pip27.found() and pip37.found() and pip38.found() tests += [['python/wheel']] endif