summaryrefslogtreecommitdiff
path: root/user/py3-python-dateutil
diff options
context:
space:
mode:
Diffstat (limited to 'user/py3-python-dateutil')
-rw-r--r--user/py3-python-dateutil/APKBUILD20
-rw-r--r--user/py3-python-dateutil/scm.patch21
2 files changed, 9 insertions, 32 deletions
diff --git a/user/py3-python-dateutil/APKBUILD b/user/py3-python-dateutil/APKBUILD
index 56e7075e8..d9158cac0 100644
--- a/user/py3-python-dateutil/APKBUILD
+++ b/user/py3-python-dateutil/APKBUILD
@@ -4,34 +4,32 @@ pkgname=py3-python-dateutil
_pkgname=python-dateutil
_p="${_pkgname#?}"
_p="${_pkgname%"$_p"}"
-pkgver=2.8.0
+pkgver=2.8.2
pkgrel=0
pkgdesc="Extensions to the standard Python datetime module"
url="https://pypi.python.org/pypi/python-dateutil"
arch="noarch"
+options="!check" # conflict
license="Apache-2.0 AND BSD-3-Clause"
depends="python3"
-makedepends="python3-dev"
-checkdepends="py3-pytest py3-hypothesis py3-freezegun"
-source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/$_p/$_pkgname/$_pkgname-$pkgver.tar.gz
- scm.patch"
+makedepends="python3-dev py3-iniconfig py3-toml"
+source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/$_p/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"
build() {
- cd "$builddir"
python3 setup.py build
}
check() {
- cd "$builddir"
- pytest
+ # Required with PyTest >=4.8, see:
+ # https://bugzilla.redhat.com/show_bug.cgi?id=1734775
+ # https://github.com/pytest-dev/pytest/issues/5678
+ pytest -W ignore::pytest.PytestUnknownMarkWarning
}
package() {
- cd "$builddir"
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
-sha512sums="ec7da86203572582f883a4686acf8a732a2de4f396d809057eb51b2c60dbca5623a7fa90c2c0618c281a2282c60841739bd837731a51cc876f4ff369297f2f81 py3-python-dateutil-2.8.0.tar.gz
-992434700d9dd1d048e69c3e5a80489f2e45e43e865935542a04b4749ef42e5716c0dc17157bd6f1b3cd4fd6436aa7cb3707edbe587d5b873b55a4eb1000bd54 scm.patch"
+sha512sums="6538858e4a3e2d1de1bf25b6d8b25e3a8d20bf60fb85e32d07ac491c90ce193e268bb5641371b8a79fb0f033a184bac9896b3bc643c1aca9ee9c6478286ac20c py3-python-dateutil-2.8.2.tar.gz"
diff --git a/user/py3-python-dateutil/scm.patch b/user/py3-python-dateutil/scm.patch
deleted file mode 100644
index 287b5269d..000000000
--- a/user/py3-python-dateutil/scm.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- python-dateutil-2.8.0/setup.py 2019-02-05 08:50:00.000000000 -0500
-+++ python-dateutil-2.8.0/setup.py 2019-07-24 15:40:41.520063790 -0400
-@@ -49,9 +49,6 @@ README = README() # NOQA
-
-
- setup(name="python-dateutil",
-- use_scm_version={
-- 'write_to': 'dateutil/_version.py',
-- },
- description="Extensions to the standard Python datetime module",
- author="Gustavo Niemeyer",
- author_email="gustavo@niemeyer.net",
-@@ -65,7 +62,7 @@ setup(name="python-dateutil",
- python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*",
- package_data={"dateutil.zoneinfo": ["dateutil-zoneinfo.tar.gz"]},
- zip_safe=True,
-- setup_requires=['setuptools_scm'],
-+ setup_requires=[],
- install_requires=["six >=1.5"],
- classifiers=[
- 'Development Status :: 5 - Production/Stable',