[arch-commits] Commit in python-distributed/repos (community-any)

2020-12-23 Thread Bruno Pagani via arch-commits
Date: Wednesday, December 23, 2020 @ 18:12:04
  Author: archange
Revision: 785052

Removed community-any for python-distributed

Deleted:
  python-distributed/repos/community-any/


[arch-commits] Commit in python-distributed/repos/community-any (4 files)

2020-12-22 Thread Bruno Pagani via arch-commits
Date: Tuesday, December 22, 2020 @ 20:07:28
  Author: archange
Revision: 782899

archrelease: copy trunk to community-any

Added:
  python-distributed/repos/community-any/PKGBUILD
(from rev 782898, python-distributed/trunk/PKGBUILD)
  python-distributed/repos/community-any/py39.patch
(from rev 782898, python-distributed/trunk/py39.patch)
Deleted:
  python-distributed/repos/community-any/PKGBUILD
  python-distributed/repos/community-any/py39.patch

+
 PKGBUILD   |  120 +--
 py39.patch |   48 +++
 2 files changed, 84 insertions(+), 84 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-22 20:07:21 UTC (rev 782898)
+++ PKGBUILD2020-12-22 20:07:28 UTC (rev 782899)
@@ -1,60 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-_pkg=distributed
-pkgname=python-${_pkg}
-pkgver=2.30.1
-pkgrel=3
-pkgdesc="Distributed task scheduler for Dask"
-arch=(any)
-url="https://distributed.dask.org/";
-license=(BSD)
-depends=(
-python
-python-click
-python-cloudpickle
-python-dask
-python-msgpack
-python-psutil
-python-setuptools
-python-sortedcontainers
-python-tblib
-python-toolz
-python-tornado
-python-yaml
-python-zict
-)
-checkdepends=(
-python-pytest
-python-fsspec
-python-numpy
-python-pandas
-)
-source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz
-py39.patch)
-#source=(https://github.com/dask/distributed/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('1421d3b84a0885aeb2c4bdc9e8896729c0f053a9375596c9de8864e055e2ac8e'
-'e872d3655fc634f226b178d579377ed862c14ff488058586e61c82fd903ed680')
-
-prepare() {
-  cd ${_pkg}-${pkgver}
-  # https://github.com/spyder-ide/spyder-kernels/issues/258
-  # https://github.com/dask/distributed/pull/4234
-  patch -Np1 -i ../py39.patch
-}
-
-build() {
-  cd ${_pkg}-${pkgver}
-  python setup.py build
-}
-
-# test suite gets stuck at distributed/tests/test_semaphore.py
-#check() {
-#  cd ${_pkg}-${pkgver}
-#  pytest distributed
-#}
-
-package() {
-  cd ${_pkg}-${pkgver}
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
-  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: python-distributed/repos/community-any/PKGBUILD (from rev 782898, 
python-distributed/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-22 20:07:28 UTC (rev 782899)
@@ -0,0 +1,60 @@
+# Maintainer: Bruno Pagani 
+
+_pkg=distributed
+pkgname=python-${_pkg}
+pkgver=2020.12.0
+pkgrel=1
+pkgdesc="Distributed task scheduler for Dask"
+arch=(any)
+url="https://distributed.dask.org/";
+license=(BSD)
+depends=(
+python
+python-click
+python-cloudpickle
+python-dask
+python-msgpack
+python-psutil
+python-setuptools
+python-sortedcontainers
+python-tblib
+python-toolz
+python-tornado
+python-yaml
+python-zict
+)
+checkdepends=(
+python-pytest
+python-fsspec
+python-numpy
+python-pandas
+)
+source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz
+py39.patch)
+#source=(https://github.com/dask/distributed/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('2a0b6acc921cd4e0143a7c4383cdcbed7defbc4bd9dc3aab0c7f1c45f14f80e1'
+'e872d3655fc634f226b178d579377ed862c14ff488058586e61c82fd903ed680')
+
+prepare() {
+  cd ${_pkg}-${pkgver}
+  # https://github.com/spyder-ide/spyder-kernels/issues/258
+  # https://github.com/dask/distributed/pull/4234
+  patch -Np1 -i ../py39.patch
+}
+
+build() {
+  cd ${_pkg}-${pkgver}
+  python setup.py build
+}
+
+# test suite gets stuck at distributed/tests/test_semaphore.py
+#check() {
+#  cd ${_pkg}-${pkgver}
+#  pytest distributed
+#}
+
+package() {
+  cd ${_pkg}-${pkgver}
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}

Deleted: py39.patch
===
--- py39.patch  2020-12-22 20:07:21 UTC (rev 782898)
+++ py39.patch  2020-12-22 20:07:28 UTC (rev 782899)
@@ -1,24 +0,0 @@
-From 2c482276ed39112c650ed886c66d2c7b7d5e3783 Mon Sep 17 00:00:00 2001
-From: Jim Crist-Harif 
-Date: Tue, 10 Nov 2020 16:29:57 -0600
-Subject: [PATCH] Python 3.9 compatibility
-

- distributed/utils.py | 4 
- 1 file changed, 4 insertions(+)
-
-diff --git a/distributed/utils.py b/distributed/utils.py
-index 77487f8ce..c1a0d2caa 100644
 a/distributed/utils.py
-+++ b/distributed/utils.py
-@@ -72,6 +72,10 @@
- 
- 
- def _initialize_mp_context():
-+if not WINDOWS:
-+# For some reason this is required in python >= 3.9
-+import mult

[arch-commits] Commit in python-distributed/repos/community-any (PKGBUILD PKGBUILD)

2020-11-15 Thread Bruno Pagani via arch-commits
Date: Sunday, November 15, 2020 @ 11:13:24
  Author: archange
Revision: 754402

archrelease: copy trunk to community-any

Added:
  python-distributed/repos/community-any/PKGBUILD
(from rev 754401, python-distributed/trunk/PKGBUILD)
Deleted:
  python-distributed/repos/community-any/PKGBUILD

--+
 PKGBUILD |  103 ++---
 1 file changed, 51 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-15 11:12:59 UTC (rev 754401)
+++ PKGBUILD2020-11-15 11:13:24 UTC (rev 754402)
@@ -1,52 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-_pkg=distributed
-pkgname=python-${_pkg}
-pkgver=2.30.0
-pkgrel=1
-pkgdesc="Distributed task scheduler for Dask"
-arch=(any)
-url="https://distributed.dask.org/";
-license=(BSD)
-depends=(
-python
-python-click
-python-cloudpickle
-python-dask
-python-msgpack
-python-psutil
-python-setuptools
-python-sortedcontainers
-python-tblib
-python-toolz
-python-tornado
-python-yaml
-python-zict
-)
-checkdepends=(
-python-pytest
-python-fsspec
-python-numpy
-python-pandas
-)
-source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
-#source=(https://github.com/dask/distributed/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('3eb8e4173625cea6ebda2f0a079b813eeabbffd1b24584855cf063ed1cca60b3')
-
-build() {
-  cd ${_pkg}-${pkgver}
-  python setup.py build
-}
-
-# test suite gets stuck at distributed/tests/test_semaphore.py
-#check() {
-#  cd ${_pkg}-${pkgver}
-#  pytest distributed
-#}
-
-package() {
-  cd ${_pkg}-${pkgver}
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
-  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}
-

Copied: python-distributed/repos/community-any/PKGBUILD (from rev 754401, 
python-distributed/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-15 11:13:24 UTC (rev 754402)
@@ -0,0 +1,51 @@
+# Maintainer: Bruno Pagani 
+
+_pkg=distributed
+pkgname=python-${_pkg}
+pkgver=2.30.1
+pkgrel=1
+pkgdesc="Distributed task scheduler for Dask"
+arch=(any)
+url="https://distributed.dask.org/";
+license=(BSD)
+depends=(
+python
+python-click
+python-cloudpickle
+python-dask
+python-msgpack
+python-psutil
+python-setuptools
+python-sortedcontainers
+python-tblib
+python-toolz
+python-tornado
+python-yaml
+python-zict
+)
+checkdepends=(
+python-pytest
+python-fsspec
+python-numpy
+python-pandas
+)
+source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
+#source=(https://github.com/dask/distributed/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('1421d3b84a0885aeb2c4bdc9e8896729c0f053a9375596c9de8864e055e2ac8e')
+
+build() {
+  cd ${_pkg}-${pkgver}
+  python setup.py build
+}
+
+# test suite gets stuck at distributed/tests/test_semaphore.py
+#check() {
+#  cd ${_pkg}-${pkgver}
+#  pytest distributed
+#}
+
+package() {
+  cd ${_pkg}-${pkgver}
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}


[arch-commits] Commit in python-distributed/repos/community-any (PKGBUILD PKGBUILD)

2020-10-12 Thread Bruno Pagani via arch-commits
Date: Monday, October 12, 2020 @ 11:46:02
  Author: archange
Revision: 723612

archrelease: copy trunk to community-any

Added:
  python-distributed/repos/community-any/PKGBUILD
(from rev 723611, python-distributed/trunk/PKGBUILD)
Deleted:
  python-distributed/repos/community-any/PKGBUILD

--+
 PKGBUILD |  104 ++---
 1 file changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-12 11:45:38 UTC (rev 723611)
+++ PKGBUILD2020-10-12 11:46:02 UTC (rev 723612)
@@ -1,52 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-_pkg=distributed
-pkgname=python-${_pkg}
-pkgver=2.26.0
-pkgrel=1
-pkgdesc="Distributed task scheduler for Dask"
-arch=(any)
-url="https://distributed.dask.org/";
-license=(BSD)
-depends=(
-python
-python-click
-python-cloudpickle
-python-dask
-python-msgpack
-python-psutil
-python-setuptools
-python-sortedcontainers
-python-tblib
-python-toolz
-python-tornado
-python-yaml
-python-zict
-)
-checkdepends=(
-python-pytest
-python-fsspec
-python-numpy
-python-pandas
-)
-source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
-#source=(https://github.com/dask/distributed/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('b5471a7af8ec3c1b309767bfd726ff20acb4408f72294f96e7bf8ff89a326a7d')
-
-build() {
-  cd ${_pkg}-${pkgver}
-  python setup.py build
-}
-
-# test suite gets stuck at distributed/tests/test_semaphore.py
-#check() {
-#  cd ${_pkg}-${pkgver}
-#  pytest distributed
-#}
-
-package() {
-  cd ${_pkg}-${pkgver}
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
-  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}
-

Copied: python-distributed/repos/community-any/PKGBUILD (from rev 723611, 
python-distributed/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-12 11:46:02 UTC (rev 723612)
@@ -0,0 +1,52 @@
+# Maintainer: Bruno Pagani 
+
+_pkg=distributed
+pkgname=python-${_pkg}
+pkgver=2.30.0
+pkgrel=1
+pkgdesc="Distributed task scheduler for Dask"
+arch=(any)
+url="https://distributed.dask.org/";
+license=(BSD)
+depends=(
+python
+python-click
+python-cloudpickle
+python-dask
+python-msgpack
+python-psutil
+python-setuptools
+python-sortedcontainers
+python-tblib
+python-toolz
+python-tornado
+python-yaml
+python-zict
+)
+checkdepends=(
+python-pytest
+python-fsspec
+python-numpy
+python-pandas
+)
+source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
+#source=(https://github.com/dask/distributed/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('3eb8e4173625cea6ebda2f0a079b813eeabbffd1b24584855cf063ed1cca60b3')
+
+build() {
+  cd ${_pkg}-${pkgver}
+  python setup.py build
+}
+
+# test suite gets stuck at distributed/tests/test_semaphore.py
+#check() {
+#  cd ${_pkg}-${pkgver}
+#  pytest distributed
+#}
+
+package() {
+  cd ${_pkg}-${pkgver}
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}
+


[arch-commits] Commit in python-distributed/repos/community-any (PKGBUILD PKGBUILD)

2020-09-13 Thread Bruno Pagani via arch-commits
Date: Sunday, September 13, 2020 @ 12:45:43
  Author: archange
Revision: 705117

archrelease: copy trunk to community-any

Added:
  python-distributed/repos/community-any/PKGBUILD
(from rev 705116, python-distributed/trunk/PKGBUILD)
Deleted:
  python-distributed/repos/community-any/PKGBUILD

--+
 PKGBUILD |  104 ++---
 1 file changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-13 12:45:18 UTC (rev 705116)
+++ PKGBUILD2020-09-13 12:45:43 UTC (rev 705117)
@@ -1,52 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-_pkg=distributed
-pkgname=python-${_pkg}
-pkgver=2.24.0
-pkgrel=1
-pkgdesc="Distributed task scheduler for Dask"
-arch=(any)
-url="https://distributed.dask.org/";
-license=(BSD)
-depends=(
-python
-python-click
-python-cloudpickle
-python-dask
-python-msgpack
-python-psutil
-python-setuptools
-python-sortedcontainers
-python-tblib
-python-toolz
-python-tornado
-python-yaml
-python-zict
-)
-checkdepends=(
-python-pytest
-python-fsspec
-python-numpy
-python-pandas
-)
-source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
-#source=(https://github.com/dask/distributed/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('1278ba2d4881cdfc43533e7f37da33e4b0448ce038917513efd68b6d9446a98e')
-
-build() {
-  cd ${_pkg}-${pkgver}
-  python setup.py build
-}
-
-# test suite gets stuck at distributed/tests/test_semaphore.py
-#check() {
-#  cd ${_pkg}-${pkgver}
-#  pytest distributed
-#}
-
-package() {
-  cd ${_pkg}-${pkgver}
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
-  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}
-

Copied: python-distributed/repos/community-any/PKGBUILD (from rev 705116, 
python-distributed/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-13 12:45:43 UTC (rev 705117)
@@ -0,0 +1,52 @@
+# Maintainer: Bruno Pagani 
+
+_pkg=distributed
+pkgname=python-${_pkg}
+pkgver=2.26.0
+pkgrel=1
+pkgdesc="Distributed task scheduler for Dask"
+arch=(any)
+url="https://distributed.dask.org/";
+license=(BSD)
+depends=(
+python
+python-click
+python-cloudpickle
+python-dask
+python-msgpack
+python-psutil
+python-setuptools
+python-sortedcontainers
+python-tblib
+python-toolz
+python-tornado
+python-yaml
+python-zict
+)
+checkdepends=(
+python-pytest
+python-fsspec
+python-numpy
+python-pandas
+)
+source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
+#source=(https://github.com/dask/distributed/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('b5471a7af8ec3c1b309767bfd726ff20acb4408f72294f96e7bf8ff89a326a7d')
+
+build() {
+  cd ${_pkg}-${pkgver}
+  python setup.py build
+}
+
+# test suite gets stuck at distributed/tests/test_semaphore.py
+#check() {
+#  cd ${_pkg}-${pkgver}
+#  pytest distributed
+#}
+
+package() {
+  cd ${_pkg}-${pkgver}
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}
+


[arch-commits] Commit in python-distributed/repos/community-any (PKGBUILD PKGBUILD)

2020-08-23 Thread Bruno Pagani via arch-commits
Date: Sunday, August 23, 2020 @ 17:57:39
  Author: archange
Revision: 687180

archrelease: copy trunk to community-any

Added:
  python-distributed/repos/community-any/PKGBUILD
(from rev 687179, python-distributed/trunk/PKGBUILD)
Deleted:
  python-distributed/repos/community-any/PKGBUILD

--+
 PKGBUILD |  104 ++---
 1 file changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-23 17:57:11 UTC (rev 687179)
+++ PKGBUILD2020-08-23 17:57:39 UTC (rev 687180)
@@ -1,52 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-_pkg=distributed
-pkgname=python-${_pkg}
-pkgver=2.22.0
-pkgrel=1
-pkgdesc="Distributed task scheduler for Dask"
-arch=(any)
-url="https://distributed.dask.org/";
-license=(BSD)
-depends=(
-python
-python-click
-python-cloudpickle
-python-dask
-python-msgpack
-python-psutil
-python-setuptools
-python-sortedcontainers
-python-tblib
-python-toolz
-python-tornado
-python-yaml
-python-zict
-)
-checkdepends=(
-python-pytest
-python-fsspec
-python-numpy
-python-pandas
-)
-source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
-#source=(https://github.com/dask/distributed/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('4ebd68f9c15bff19e8b2a2b16ef8fd6640f5fcc3fcf65c14fbe88501d2637530')
-
-build() {
-  cd ${_pkg}-${pkgver}
-  python setup.py build
-}
-
-# test suite gets stuck at distributed/tests/test_semaphore.py
-#check() {
-#  cd ${_pkg}-${pkgver}
-#  pytest distributed
-#}
-
-package() {
-  cd ${_pkg}-${pkgver}
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
-  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}
-

Copied: python-distributed/repos/community-any/PKGBUILD (from rev 687179, 
python-distributed/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-23 17:57:39 UTC (rev 687180)
@@ -0,0 +1,52 @@
+# Maintainer: Bruno Pagani 
+
+_pkg=distributed
+pkgname=python-${_pkg}
+pkgver=2.24.0
+pkgrel=1
+pkgdesc="Distributed task scheduler for Dask"
+arch=(any)
+url="https://distributed.dask.org/";
+license=(BSD)
+depends=(
+python
+python-click
+python-cloudpickle
+python-dask
+python-msgpack
+python-psutil
+python-setuptools
+python-sortedcontainers
+python-tblib
+python-toolz
+python-tornado
+python-yaml
+python-zict
+)
+checkdepends=(
+python-pytest
+python-fsspec
+python-numpy
+python-pandas
+)
+source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
+#source=(https://github.com/dask/distributed/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('1278ba2d4881cdfc43533e7f37da33e4b0448ce038917513efd68b6d9446a98e')
+
+build() {
+  cd ${_pkg}-${pkgver}
+  python setup.py build
+}
+
+# test suite gets stuck at distributed/tests/test_semaphore.py
+#check() {
+#  cd ${_pkg}-${pkgver}
+#  pytest distributed
+#}
+
+package() {
+  cd ${_pkg}-${pkgver}
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}
+


[arch-commits] Commit in python-distributed/repos/community-any (PKGBUILD PKGBUILD)

2020-08-09 Thread Bruno Pagani via arch-commits
Date: Sunday, August 9, 2020 @ 13:47:25
  Author: archange
Revision: 673143

archrelease: copy trunk to community-any

Added:
  python-distributed/repos/community-any/PKGBUILD
(from rev 673142, python-distributed/trunk/PKGBUILD)
Deleted:
  python-distributed/repos/community-any/PKGBUILD

--+
 PKGBUILD |  104 ++---
 1 file changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-09 13:46:59 UTC (rev 673142)
+++ PKGBUILD2020-08-09 13:47:25 UTC (rev 673143)
@@ -1,52 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-_pkg=distributed
-pkgname=python-${_pkg}
-pkgver=2.21.0
-pkgrel=1
-pkgdesc="Distributed task scheduler for Dask"
-arch=(any)
-url="https://distributed.dask.org/";
-license=(BSD)
-depends=(
-python
-python-click
-python-cloudpickle
-python-dask
-python-msgpack
-python-psutil
-python-setuptools
-python-sortedcontainers
-python-tblib
-python-toolz
-python-tornado
-python-yaml
-python-zict
-)
-checkdepends=(
-python-pytest
-python-fsspec
-python-numpy
-python-pandas
-)
-source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
-#source=(https://github.com/dask/distributed/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('8667b21f547ab3e209f4db5a4adbbd32c942616c7e227569cdbaa804882acd71')
-
-build() {
-  cd ${_pkg}-${pkgver}
-  python setup.py build
-}
-
-# test suite gets stuck at distributed/tests/test_semaphore.py
-#check() {
-#  cd ${_pkg}-${pkgver}
-#  pytest distributed
-#}
-
-package() {
-  cd ${_pkg}-${pkgver}
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
-  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}
-

Copied: python-distributed/repos/community-any/PKGBUILD (from rev 673142, 
python-distributed/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-09 13:47:25 UTC (rev 673143)
@@ -0,0 +1,52 @@
+# Maintainer: Bruno Pagani 
+
+_pkg=distributed
+pkgname=python-${_pkg}
+pkgver=2.22.0
+pkgrel=1
+pkgdesc="Distributed task scheduler for Dask"
+arch=(any)
+url="https://distributed.dask.org/";
+license=(BSD)
+depends=(
+python
+python-click
+python-cloudpickle
+python-dask
+python-msgpack
+python-psutil
+python-setuptools
+python-sortedcontainers
+python-tblib
+python-toolz
+python-tornado
+python-yaml
+python-zict
+)
+checkdepends=(
+python-pytest
+python-fsspec
+python-numpy
+python-pandas
+)
+source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
+#source=(https://github.com/dask/distributed/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('4ebd68f9c15bff19e8b2a2b16ef8fd6640f5fcc3fcf65c14fbe88501d2637530')
+
+build() {
+  cd ${_pkg}-${pkgver}
+  python setup.py build
+}
+
+# test suite gets stuck at distributed/tests/test_semaphore.py
+#check() {
+#  cd ${_pkg}-${pkgver}
+#  pytest distributed
+#}
+
+package() {
+  cd ${_pkg}-${pkgver}
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}
+