[arch-commits] Commit in khal/trunk (PKGBUILD)
David Runge
dvzrv at gemini.archlinux.org
Thu Jul 29 18:18:41 UTC 2021
Date: Thursday, July 29, 2021 @ 18:18:40
Author: dvzrv
Revision: 990509
upgpkg: khal 0.10.4-1: Upgrade to 0.10.4.
Upstream fixed many flaky tests, but we still have to disable one.
Export LC_ALL so some tests are able to use (some) locale.
Modified:
khal/trunk/PKGBUILD
----------+
PKGBUILD | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2021-07-29 18:18:35 UTC (rev 990508)
+++ PKGBUILD 2021-07-29 18:18:40 UTC (rev 990509)
@@ -8,7 +8,7 @@
_name=khal
pkgname=khal
-pkgver=0.10.3
+pkgver=0.10.4
pkgrel=1
pkgdesc='CLI calendar application build around CalDAV'
arch=('any')
@@ -17,13 +17,13 @@
makedepends=('python-setuptools-scm' 'python-sphinxcontrib-newsfeed')
depends=('python-atomicwrites' 'python-click' 'python-click-log'
'python-configobj' 'python-dateutil' 'python-icalendar' 'python-pytz'
-'python-tzlocal' 'python-urwid' 'python-xdg')
+'python-pyxdg' 'python-urwid' 'python-tzlocal')
optdepends=('python-setproctitle: Set process name'
'vdirsyncer: Synchronize CalDAV calendars')
checkdepends=('python-pytest' 'python-freezegun' 'vdirsyncer')
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz")
-sha256sums=('2fdd8fc14fe597e5a7d6e9c63c7868d960b4ed021b563c684a71f07090eda432')
-b2sums=('290bc799f09401d47f2f48596813ec568859be090a204482a7c2cdd967ec3ccf4c935f5ab35c8ad1cc2e3c2340b4a0e4753debe14ff6114b1b7f0afdf5deaecc')
+sha256sums=('3fdb980a9a61c0206d7a82b16f77b408a4f341a2b866b9c9fcf6a641850d129f')
+b2sums=('0cb9deb793f577bbcedcbba4788988973ee9d0ab71fdd30a01142a54434767d74b1d10e5bfa5f6a2feb9f18a8a9fe22717d4a38a07ab5e30b331c87b79a79f39')
build() {
cd "${pkgname}-${pkgver}"
@@ -33,8 +33,12 @@
check() {
cd "${pkgname}-${pkgver}"
- pytest -v \
- || echo "Tests from hell: https://github.com/pimutils/khal/issues/860"
+ env
+ export PYTHONPATH="build:${PYTHONPATH}"
+ export LC_ALL="C"
+ # the tests are very fragile
+ # https://github.com/pimutils/khal/issues/860"
+ pytest -v -k "not test_only_update_old_event"
}
package() {
@@ -42,7 +46,6 @@
export PYTHONHASHSEED=0
python setup.py install --skip-build \
--optimize=1 \
- --prefix=/usr \
--root="${pkgdir}"
# executables
install -vDm 755 bin/{i,}"${pkgname}" -t "$pkgdir/usr/bin/"
More information about the arch-commits
mailing list