# Maintainer: J. Peter Mugaas <jpmugaas@suddenlink.net>.

_realname=oslotest
pkgbase=mingw-w64-python-${_realname}
pkgname=("${MINGW_PACKAGE_PREFIX}-python2-${_realname}"  "${MINGW_PACKAGE_PREFIX}-python3-${_realname}")
pkgver=3.7.0
pkgrel=1
pkgdesc="Oslo test framework (mingw-w64)"
arch=('any')
url='https://github.com/openstack/oslotest'
license=('Apache')
validpgpkeys=('gpg_KEY')
makedepends=("${MINGW_PACKAGE_PREFIX}-python2"
             "${MINGW_PACKAGE_PREFIX}-python3"
             "${MINGW_PACKAGE_PREFIX}-python3-setuptools"
             "${MINGW_PACKAGE_PREFIX}-python2-setuptools")
options=('staticlibs' 'strip' '!debug')
makedepends=("${MINGW_PACKAGE_PREFIX}-python3-setuptools"
             "${MINGW_PACKAGE_PREFIX}-python2-setuptools"
             "${MINGW_PACKAGE_PREFIX}-python3-pbr" 
             "${MINGW_PACKAGE_PREFIX}-python2-pbr"
             "${MINGW_PACKAGE_PREFIX}-python3-fixtures"
             "${MINGW_PACKAGE_PREFIX}-python2-fixtures"
             "${MINGW_PACKAGE_PREFIX}-python3-subunit"
             "${MINGW_PACKAGE_PREFIX}-python2-subunit"
             "${MINGW_PACKAGE_PREFIX}-python3-stestr"
             "${MINGW_PACKAGE_PREFIX}-python2-stestr"
             "${MINGW_PACKAGE_PREFIX}-python3-testscenarios"
             "${MINGW_PACKAGE_PREFIX}-python2-testscenarios"
             "${MINGW_PACKAGE_PREFIX}-python3-testtools"
             "${MINGW_PACKAGE_PREFIX}-python2-testtools"
             "${MINGW_PACKAGE_PREFIX}-python3-mock"
             "${MINGW_PACKAGE_PREFIX}-python2-mock"
             "${MINGW_PACKAGE_PREFIX}-python3-mox3"
             "${MINGW_PACKAGE_PREFIX}-python2-mox3"
#             "${MINGW_PACKAGE_PREFIX}-python3-os-client-config"
#             "${MINGW_PACKAGE_PREFIX}-python2-os-client-config"
             "${MINGW_PACKAGE_PREFIX}-python3-debtcollector"
             "${MINGW_PACKAGE_PREFIX}-python2-debtcollector")
source=("${_realname}-$pkgver.tar.gz"::"https://github.com/openstack/oslotest/archive/$pkgver.tar.gz")
sha512sums=('f4845bdd4a7caccb7b1523a901123e18dedf2e9adc36df3911a7a089e3f3d2fd4450613c24679e665811c12a4b1a31bfd6fbb8f9afff72eb708f34f5003e8494')


# 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}"
  for builddir in python{2,3}-build-${CARCH}; do
    rm -rf ${builddir} | true
    cp -r "${_realname}-${pkgver}" "${builddir}"
  done
  # Set version for setuptools_scm
  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver

  export PBR_VERSION=$pkgver
}

# Note that build() is sometimes skipped because it's done in 
# the packages setup.py install for simplicity if you can do so.
# but sometimes, you want to do a check before install which would
# also trigger the build.
build() {
  for pver in {2,3}; do  
    msg "Python ${pver} build for ${CARCH}"  
    cd "${srcdir}/python${pver}-build-${CARCH}"
    ${MINGW_PREFIX}/bin/python${pver} setup.py build
  done  
}

check() {
#  for pver in {2,3}; do
#    msg "Python ${pver} test for ${CARCH}"
#    cd "${srcdir}/python${pver}-build-${CARCH}"
#    ${MINGW_PREFIX}/bin/python${pver} setup.py check
#  done
  msg "Python 3 test for ${CARCH}"
  cd "${srcdir}/python${pver}-build-${CARCH}"
  PYTHON=python3 ${MINGW_PREFIX}/bin/stestr run

  msg "Python 3 test for ${CARCH}"
  cd "${srcdir}/python${pver}-build-${CARCH}"
  PYTHON=python2 ${MINGW_PREFIX}/bin/stestr2 run
}

package_python3-oslotest() {
  depends=("${MINGW_PACKAGE_PREFIX}-python3")
  #This package install is needed for .fixups with .EXE's 
  #in the bit directory.  The install files "python-exe-installs"
  #and should be renamed to your _realname .
  install=${_realname}3-${CARCH}.install

  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

  install -Dm644 LICENSE "${pkgdir}${MINGW_PREFIX}/share/licenses/python3-${_realname}/LICENSE"

# 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
  sed -e "s|/usr/bin/env |${MINGW_PREFIX}|g" \
      -e "s|${PREFIX_WIN}|${MINGW_PREFIX}|g" \
      -i "${pkgdir}${MINGW_PREFIX}/bin/oslo_run_pre_release_tests"
#### end section ####
}

package_python2-oslotest() {
  depends=("${MINGW_PACKAGE_PREFIX}-python2")
  #This package install is needed for .fixups with .EXE's 
  #in the bit directory.  The install files "python-exe-installs"
  #and should be renamed to your _realname
  install=${_realname}2-${CARCH}.install

  cd "${srcdir}/python2-build-${CARCH}"
  MSYS2_ARG_CONV_EXCL="--prefix=;--install-scripts=;--install-platlib=" \
  ${MINGW_PREFIX}/bin/python2 setup.py install --prefix=${MINGW_PREFIX} \
    --root="${pkgdir}" --optimize=1 --skip-build

  install -Dm644 LICENSE "${pkgdir}${MINGW_PREFIX}/share/licenses/python2-${_realname}/LICENSE"

# 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
   sed -e "s|/usr/bin/env |${MINGW_PREFIX}|g" \
       -e "s|${PREFIX_WIN}|${MINGW_PREFIX}|g" \
       -i "${pkgdir}${MINGW_PREFIX}/bin/oslo_run_pre_release_tests"
  for _f in "${pkgdir}${MINGW_PREFIX}"/bin/*; do
    mv ${_f}{,2}
  done

}

package_mingw-w64-i686-python2-oslotest() {
  package_python2-oslotest
}

package_mingw-w64-i686-python3-oslotest() {
  package_python3-oslotest
}

package_mingw-w64-x86_64-python2-oslotest() {
  package_python2-oslotest
}

package_mingw-w64-x86_64-python3-oslotest() {
  package_python3-oslotest
}
