From cb07eeee81042880e0035dbdd8ea7bd98040ccee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D9=85=D9=87=D8=AF=D9=8A=20=D8=B4=D9=8A=D9=86=D9=88=D9=86?= =?UTF-8?q?=20=28Mehdi=20Chinoune=29?= Date: Sat, 17 Sep 2022 07:22:00 +0100 Subject: [PATCH] [new-package] python-identify 2.5.5 --- mingw-w64-python-identify/PKGBUILD | 45 ++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 mingw-w64-python-identify/PKGBUILD diff --git a/mingw-w64-python-identify/PKGBUILD b/mingw-w64-python-identify/PKGBUILD new file mode 100644 index 0000000000..0ba2f21bea --- /dev/null +++ b/mingw-w64-python-identify/PKGBUILD @@ -0,0 +1,45 @@ +# Contributor: Mehdi Chinoune + +_realname=identify +pkgbase=mingw-w64-python-${_realname} +pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}") +pkgver=2.5.5 +pkgrel=1 +pkgdesc="File identification library for Python (mingw-w64)" +arch=('any') +mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32') +url='https://github.com/pre-commit/identify' +license=('MIT') +options=(!strip) +depends=("${MINGW_PACKAGE_PREFIX}-python") +makedepends=("${MINGW_PACKAGE_PREFIX}-python" + "${MINGW_PACKAGE_PREFIX}-python-setuptools") +source=("https://pypi.org/packages/source/${_realname::1}/${_realname}/${_realname}-${pkgver}.tar.gz") +sha256sums=('322a5699daecf7c6fd60e68852f36f2ecbb6a36ff6e6e973e0d2bb6fca203ee6') + +build() { + cp -r "${_realname}-${pkgver}" "python-build-${MSYSTEM}" && cd "python-build-${MSYSTEM}" + + "${MINGW_PREFIX}"/bin/python setup.py build +} + +check() { + cd "${srcdir}/python-build-${MSYSTEM}" + + "${MINGW_PREFIX}"/bin/python setup.py check +} + +package() { + cd "${srcdir}/python-build-${MSYSTEM}" + + MSYS2_ARG_CONV_EXCL="--prefix=;--install-scripts=;--install-platlib=" \ + "${MINGW_PREFIX}"/bin/python setup.py install --prefix="${MINGW_PREFIX}" \ + --root="${pkgdir}" --optimize=1 --skip-build + + install -Dm644 LICENSE "${pkgdir}${MINGW_PREFIX}/share/licenses/python-${_realname}/LICENSE" + + for _f in "${pkgdir}${MINGW_PREFIX}"/bin/*-script.py; do + # Remove shebang line + sed -e '1 { s/^#!.*$// }' -i "${_f}" + done +}