From b0d32fe0adc642a1b166e5d580dfa9bc2e83ddba Mon Sep 17 00:00:00 2001 From: Andrew Sun Date: Mon, 21 May 2018 01:26:16 -0400 Subject: [PATCH] python-wrapt: fix depends (#3787) This fixes an unnecessary depends on python-six for python-wrapt. --- mingw-w64-python-wrapt/PKGBUILD | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/mingw-w64-python-wrapt/PKGBUILD b/mingw-w64-python-wrapt/PKGBUILD index 7a1cf96991..5303f06efc 100644 --- a/mingw-w64-python-wrapt/PKGBUILD +++ b/mingw-w64-python-wrapt/PKGBUILD @@ -4,7 +4,7 @@ _realname=wrapt pkgbase=mingw-w64-python-${_realname} pkgname=("${MINGW_PACKAGE_PREFIX}-python2-${_realname}" "${MINGW_PACKAGE_PREFIX}-python3-${_realname}") pkgver=1.10.11 -pkgrel=1 +pkgrel=2 pkgdesc="A Python module for decorators, wrappers and monkey patching (mingw-w64)" arch=('any') url="https://pypi.python.org/pypi/wrapt" @@ -35,8 +35,7 @@ build() { } package_python3-wrapt() { - depends=("${MINGW_PACKAGE_PREFIX}-python3" - "${MINGW_PACKAGE_PREFIX}-python3-six") + depends=("${MINGW_PACKAGE_PREFIX}-python3") cd "${srcdir}/python3-build-${CARCH}" MSYS2_ARG_CONV_EXCL="--prefix=;--install-scripts=;--install-platlib=" \ @@ -47,8 +46,7 @@ package_python3-wrapt() { } package_python2-wrapt() { - depends=("${MINGW_PACKAGE_PREFIX}-python2" - "${MINGW_PACKAGE_PREFIX}-python2-six") + depends=("${MINGW_PACKAGE_PREFIX}-python2") cd "${srcdir}/python2-build-${CARCH}" MSYS2_ARG_CONV_EXCL="--prefix=;--install-scripts=;--install-platlib=" \