88 lines
2.6 KiB
Bash
88 lines
2.6 KiB
Bash
# Maintainer: J. Peter Mugaas <jpmugaas@suddenlink.net>
|
|
|
|
_realname=cachecontrol
|
|
pkgbase=mingw-w64-python-${_realname}
|
|
pkgname=("${MINGW_PACKAGE_PREFIX}-python3-${_realname}")
|
|
pkgver=0.12.5
|
|
pkgrel=4
|
|
pkgdesc="httplib2 caching for requests (mingw-w64)"
|
|
arch=('any')
|
|
url="https://github.com/ionrock/${_realname}"
|
|
license=('Apache')
|
|
depends=("${MINGW_PACKAGE_PREFIX}-python3"
|
|
"${MINGW_PACKAGE_PREFIX}-python3-msgpack"
|
|
"${MINGW_PACKAGE_PREFIX}-python3-requests")
|
|
optdepends=("${MINGW_PACKAGE_PREFIX}-python3-lockfile: for the FileCache")
|
|
makedepends=("${MINGW_PACKAGE_PREFIX}-python3-setuptools")
|
|
#checkdepends=("${MINGW_PACKAGE_PREFIX}-python3-mock"
|
|
# "${MINGW_PACKAGE_PREFIX}-python3-pytest"
|
|
# "${MINGW_PACKAGE_PREFIX}-python3-lockfile"
|
|
# "${MINGW_PACKAGE_PREFIX}-python3-cherrypy")
|
|
install=${_realname}3-${CARCH}.install
|
|
options=('staticlibs' 'strip' '!debug')
|
|
source=("${_realname}-${pkgver}.tar.gz"::"${url}/archive/v${pkgver}.tar.gz")
|
|
sha256sums=('d3876bbd614968e0d82c95734b380fca648661416fb14dc1a50514256e521089')
|
|
|
|
# Helper macros to help make tasks easier #
|
|
apply_patch_with_msg() {
|
|
for _patch in "$@"
|
|
do
|
|
msg2 "Applying $_patch"
|
|
patch -Nbp1 -i "${srcdir}/$_patch"
|
|
done
|
|
}
|
|
|
|
del_file_exists() {
|
|
for _fname in "$@"
|
|
do
|
|
if [ -f $_fname ]; then
|
|
rm -rf $_fname
|
|
fi
|
|
done
|
|
}
|
|
# =========================================== #
|
|
|
|
prepare() {
|
|
cd "${srcdir}"
|
|
pushd "${_realname}-${pkgver}"
|
|
# apply_patch_with_msg 0001-A-really-important-fix.patch \
|
|
# 0002-A-less-important-fix.patch
|
|
popd
|
|
|
|
rm -rf python3-build-${CARCH} | true
|
|
cp -r "${_realname}-${pkgver}" "python3-build-${CARCH}"
|
|
|
|
# Set version for setuptools_scm
|
|
export SETUPTOOLS_SCM_PRETEND_VERSION=${pkgver}
|
|
}
|
|
|
|
build() {
|
|
msg "Python 3 build for ${CARCH}"
|
|
cd "${srcdir}/python3-build-${CARCH}"
|
|
${MINGW_PREFIX}/bin/python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
msg "Python 3 test for ${CARCH}"
|
|
cd "${srcdir}/python3-build-${CARCH}"
|
|
# ${MINGW_PREFIX}/bin/python3 -m pytest
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/python3-build-${CARCH}"
|
|
MSYS2_ARG_CONV_EXCL="--prefix=;--install-scripts=;--install-platlib=" \
|
|
${MINGW_PREFIX}/bin/python3 setup.py install --prefix=${MINGW_PREFIX} \
|
|
--root="${pkgdir}" --optimize=1 --skip-build
|
|
|
|
# This entire section should be removed if the package does NOT install
|
|
# anything in the /mingw*/bin directory.
|
|
### begin section ###
|
|
local PREFIX_WIN=$(cygpath -wm ${MINGW_PREFIX})
|
|
# fix python command in files
|
|
for _f in "${pkgdir}${MINGW_PREFIX}"/bin/*.py; do
|
|
sed -e "s|/usr/bin/env |${MINGW_PREFIX}|g" \
|
|
-e "s|${PREFIX_WIN}|${MINGW_PREFIX}|g" -i ${_f}
|
|
done
|
|
#### end section ####
|
|
}
|