From 86955bc1a9dfe9a4e9aa622cade5432a4a47c772 Mon Sep 17 00:00:00 2001 From: Reuben Thomas Date: Mon, 29 Jan 2018 13:48:04 +0000 Subject: [PATCH] AppVeyor: install msys cython packages MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit They are available after all. Add MINGW_BITS setting for MSYS for future use (currently disabled as there’s no msys-flavour cython). --- build-aux/appveyor-install.sh | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/build-aux/appveyor-install.sh b/build-aux/appveyor-install.sh index 4e00b57..81ea975 100644 --- a/build-aux/appveyor-install.sh +++ b/build-aux/appveyor-install.sh @@ -12,16 +12,10 @@ case $MSYSTEM in PREFIX=/mingw64 ;; MSYS) + MINGW_BITS=msys PREFIX=/usr ;; esac # Build dependencies -pacman --noconfirm -S base-devel rsync python2 texinfo - -# Cython -wget https://github.com/cython/cython/archive/0.27.3.tar.gz -tar zxvf 0.27.3.tar.gz -cd cython-0.27.3 -python2 setup.py install -cd .. +pacman --noconfirm -S base-devel rsync mingw-w64-$MINGW_BITS-python2 mingw-w64-$MINGW_BITS-cython texinfo help2man -- 2.50.1