-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
76d6679
commit 99678f9
Showing
1 changed file
with
19 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,47 @@ | ||
# Maintainer: @naveen521kk on Github, Naveen M K <[email protected]> | ||
|
||
_pyname=arrow | ||
_realname=arrow | ||
pkgbase=mingw-w64-python-${_realname} | ||
pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}") | ||
pkgver=1.3.0 | ||
pkgrel=2 | ||
pkgrel=3 | ||
pkgdesc='Better dates & times for Python (mingw-w64)' | ||
arch=('any') | ||
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clangarm64') | ||
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64') | ||
url="https://arrow.readthedocs.io/" | ||
msys2_repository_url="https://github.com/arrow-py/arrow" | ||
msys2_references=( | ||
'pypi: arrow' | ||
) | ||
url="https://arrow.readthedocs.io/" | ||
license=('spdx:Apache-2.0') | ||
depends=( | ||
"${MINGW_PACKAGE_PREFIX}-python" | ||
"${MINGW_PACKAGE_PREFIX}-python-dateutil" | ||
"${MINGW_PACKAGE_PREFIX}-python-types-python-dateutil" | ||
) | ||
makedepends=( | ||
"${MINGW_PACKAGE_PREFIX}-python-setuptools" | ||
"${MINGW_PACKAGE_PREFIX}-python-build" | ||
"${MINGW_PACKAGE_PREFIX}-python-installer" | ||
"${MINGW_PACKAGE_PREFIX}-python-flit-core" | ||
) | ||
source=("${_pyname}-${pkgver}.tar.gz::https://pypi.org/packages/source/${_pyname::1}/${_pyname}/${_pyname}-${pkgver}.tar.gz") | ||
source=("https://pypi.org/packages/source/${_realname::1}/${_realname}/${_realname}-${pkgver}.tar.gz") | ||
sha256sums=('d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4d67a85') | ||
|
||
prepare() { | ||
prepare() { | ||
cd "$srcdir" | ||
rm -rf python-build-${CARCH} | true | ||
cp -r "${_pyname//_/-}-$pkgver" "python-build-${CARCH}" | ||
export SETUPTOOLS_SCM_PRETEND_VERSION=${pkgver} | ||
rm -rf python-build-${MSYSTEM} | true | ||
cp -r "${_realname}-${pkgver}" "python-build-${MSYSTEM}" | ||
} | ||
|
||
build() { | ||
msg "Python build for ${CARCH}" | ||
cd "${srcdir}/python-build-${CARCH}" | ||
${MINGW_PREFIX}/bin/python setup.py build | ||
cd "${srcdir}/python-build-${MSYSTEM}" | ||
${MINGW_PREFIX}/bin/python -m build --wheel --skip-dependency-check --no-isolation | ||
} | ||
|
||
package() { | ||
cd "${srcdir}/python-build-${CARCH}" | ||
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" | ||
cd "${srcdir}/python-build-${MSYSTEM}" | ||
MSYS2_ARG_CONV_EXCL="--prefix=" \ | ||
${MINGW_PREFIX}/bin/python -m installer --prefix=${MINGW_PREFIX} \ | ||
--destdir="${pkgdir}" dist/*.whl | ||
install -Dm644 LICENSE "${pkgdir}"${MINGW_PREFIX}/share/licenses/python-${_realname}/LICENSE | ||
} |