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

2020-10-08 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, October 9, 2020 @ 05:05:54
  Author: yan12125
Revision: 722272

archrelease: copy trunk to community-any

Added:
  python-aiobotocore/repos/community-any/PKGBUILD
(from rev 722271, python-aiobotocore/trunk/PKGBUILD)
  python-aiobotocore/repos/community-any/unittest-mock.diff
(from rev 722271, python-aiobotocore/trunk/unittest-mock.diff)
Deleted:
  python-aiobotocore/repos/community-any/PKGBUILD
  python-aiobotocore/repos/community-any/unittest-mock.diff

+
 PKGBUILD   |   98 +--
 unittest-mock.diff |   74 +++---
 2 files changed, 86 insertions(+), 86 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-09 05:05:38 UTC (rev 722271)
+++ PKGBUILD2020-10-09 05:05:54 UTC (rev 722272)
@@ -1,49 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-aiobotocore
-_pkgname=aiobotocore
-pkgver=1.1.1
-pkgrel=1
-pkgdesc='asyncio support for botocore library using aiohttp'
-arch=(any)
-url='https://github.com/aio-libs/aiobotocore'
-license=(Apache)
-depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
-makedepends=(python-setuptools)
-checkdepends=(python-flask python-moto python-pytest python-pytest-asyncio)
-source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz;
-unittest-mock.diff)
-sha256sums=('ffd16de32877486ab484ab1faf5d0feeaab0c0c5054c1acc6b2131e6a6743f3e'
-'ffb6b7e922632f4c2de5c93f61ab53e1730cfe151b0a2dde5dfce6260405866e')
-
-prepare() {
-  cd $_pkgname-$pkgver
-  # community/python-mock is outdated and does not include needed AsyncMock.
-  # Use mock from stdlib instead. It has AsyncMock since 3.8
-  patch -Np1 -i ../unittest-mock.diff
-
-  # Disable dependency pinning
-  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
-  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
-  diff -u setup.py{.orig,} || true
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  export PYTHONPATH="$PWD"
-  # test_lambda uses moto.awslambda, which requires a running Docker service
-  pytest -v -m moto tests \
-  --ignore=tests/test_patches.py \
-  --ignore=tests/test_lambda.py
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-aiobotocore/repos/community-any/PKGBUILD (from rev 722271, 
python-aiobotocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-09 05:05:54 UTC (rev 722272)
@@ -0,0 +1,49 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-aiobotocore
+_pkgname=aiobotocore
+pkgver=1.1.2
+pkgrel=1
+pkgdesc='asyncio support for botocore library using aiohttp'
+arch=(any)
+url='https://github.com/aio-libs/aiobotocore'
+license=(Apache)
+depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
+makedepends=(python-setuptools)
+checkdepends=(python-flask python-moto python-pytest python-pytest-asyncio)
+source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz;
+unittest-mock.diff)
+sha256sums=('3a57646e4692076f3637e1191129377ebb7661f36c29f68ec8318fab82d66e7d'
+'ffb6b7e922632f4c2de5c93f61ab53e1730cfe151b0a2dde5dfce6260405866e')
+
+prepare() {
+  cd $_pkgname-$pkgver
+  # community/python-mock is outdated and does not include needed AsyncMock.
+  # Use mock from stdlib instead. It has AsyncMock since 3.8
+  patch -Np1 -i ../unittest-mock.diff
+
+  # Disable dependency pinning
+  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
+  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
+  diff -u setup.py{.orig,} || true
+}
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  export PYTHONPATH="$PWD"
+  # test_lambda uses moto.awslambda, which requires a running Docker service
+  pytest -v -m moto tests \
+  --ignore=tests/test_patches.py \
+  --ignore=tests/test_lambda.py
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}

Deleted: unittest-mock.diff
===
--- unittest-mock.diff  2020-10-09 05:05:38 UTC (rev 722271)
+++ unittest-mock.diff  2020-10-09 05:05:54 UTC (rev 722272)
@@ -1,37 +0,0 @@
-diff --git a/tests/botocore/test_credentials.py 
b/tests/botocore/test_credentials.py
-index ecbe17e..1b2172e 100644
 a/tests/botocore/test_credentials.py
-+++ b/tests/botocore/test_credentials.py
-@@ -8,7 +8,7 @@ import datetime
- import json
- import subprocess
- 
--import mock
-+from unittest import mock
- from typing import Optional
- 
- import pytest
-diff 

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

2020-09-01 Thread Chih-Hsuan Yen via arch-commits
Date: Tuesday, September 1, 2020 @ 10:36:43
  Author: yan12125
Revision: 695355

archrelease: copy trunk to community-any

Added:
  python-aiobotocore/repos/community-any/PKGBUILD
(from rev 695354, python-aiobotocore/trunk/PKGBUILD)
  python-aiobotocore/repos/community-any/unittest-mock.diff
(from rev 695354, python-aiobotocore/trunk/unittest-mock.diff)
Deleted:
  python-aiobotocore/repos/community-any/PKGBUILD
  python-aiobotocore/repos/community-any/unittest-mock.diff

+
 PKGBUILD   |   98 +--
 unittest-mock.diff |   74 +++---
 2 files changed, 86 insertions(+), 86 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-01 10:32:50 UTC (rev 695354)
+++ PKGBUILD2020-09-01 10:36:43 UTC (rev 695355)
@@ -1,49 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-aiobotocore
-_pkgname=aiobotocore
-pkgver=1.1.0
-pkgrel=1
-pkgdesc='asyncio support for botocore library using aiohttp'
-arch=(any)
-url='https://github.com/aio-libs/aiobotocore'
-license=(Apache)
-depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
-makedepends=(python-setuptools)
-checkdepends=(python-flask python-moto python-pytest python-pytest-asyncio)
-source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz;
-unittest-mock.diff)
-sha256sums=('c6fb60b1a29392475a38fbabfc5118e46ccce983bfe0cbb3da91528e92cd8f92'
-'ffb6b7e922632f4c2de5c93f61ab53e1730cfe151b0a2dde5dfce6260405866e')
-
-prepare() {
-  cd $_pkgname-$pkgver
-  # community/python-mock is outdated and does not include needed AsyncMock.
-  # Use mock from stdlib instead. It has AsyncMock since 3.8
-  patch -Np1 -i ../unittest-mock.diff
-
-  # Disable dependency pinning
-  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
-  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
-  diff -u setup.py{.orig,} || true
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  export PYTHONPATH="$PWD"
-  # test_lambda uses moto.awslambda, which requires a running Docker service
-  pytest -v -m moto tests \
-  --ignore=tests/test_patches.py \
-  --ignore=tests/test_lambda.py
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-aiobotocore/repos/community-any/PKGBUILD (from rev 695354, 
python-aiobotocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-01 10:36:43 UTC (rev 695355)
@@ -0,0 +1,49 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-aiobotocore
+_pkgname=aiobotocore
+pkgver=1.1.1
+pkgrel=1
+pkgdesc='asyncio support for botocore library using aiohttp'
+arch=(any)
+url='https://github.com/aio-libs/aiobotocore'
+license=(Apache)
+depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
+makedepends=(python-setuptools)
+checkdepends=(python-flask python-moto python-pytest python-pytest-asyncio)
+source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz;
+unittest-mock.diff)
+sha256sums=('ffd16de32877486ab484ab1faf5d0feeaab0c0c5054c1acc6b2131e6a6743f3e'
+'ffb6b7e922632f4c2de5c93f61ab53e1730cfe151b0a2dde5dfce6260405866e')
+
+prepare() {
+  cd $_pkgname-$pkgver
+  # community/python-mock is outdated and does not include needed AsyncMock.
+  # Use mock from stdlib instead. It has AsyncMock since 3.8
+  patch -Np1 -i ../unittest-mock.diff
+
+  # Disable dependency pinning
+  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
+  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
+  diff -u setup.py{.orig,} || true
+}
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  export PYTHONPATH="$PWD"
+  # test_lambda uses moto.awslambda, which requires a running Docker service
+  pytest -v -m moto tests \
+  --ignore=tests/test_patches.py \
+  --ignore=tests/test_lambda.py
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}

Deleted: unittest-mock.diff
===
--- unittest-mock.diff  2020-09-01 10:32:50 UTC (rev 695354)
+++ unittest-mock.diff  2020-09-01 10:36:43 UTC (rev 695355)
@@ -1,37 +0,0 @@
-diff --git a/tests/botocore/test_credentials.py 
b/tests/botocore/test_credentials.py
-index ecbe17e..1b2172e 100644
 a/tests/botocore/test_credentials.py
-+++ b/tests/botocore/test_credentials.py
-@@ -8,7 +8,7 @@ import datetime
- import json
- import subprocess
- 
--import mock
-+from unittest import mock
- from typing import Optional
- 
- import pytest
-diff 

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

2020-08-24 Thread Chih-Hsuan Yen via arch-commits
Date: Monday, August 24, 2020 @ 12:19:39
  Author: yan12125
Revision: 687604

archrelease: copy trunk to community-any

Added:
  python-aiobotocore/repos/community-any/PKGBUILD
(from rev 687603, python-aiobotocore/trunk/PKGBUILD)
  python-aiobotocore/repos/community-any/unittest-mock.diff
(from rev 687603, python-aiobotocore/trunk/unittest-mock.diff)
Deleted:
  python-aiobotocore/repos/community-any/PKGBUILD
  python-aiobotocore/repos/community-any/unittest-mock.diff

+
 PKGBUILD   |   97 +--
 unittest-mock.diff |   74 +++---
 2 files changed, 86 insertions(+), 85 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-24 12:19:14 UTC (rev 687603)
+++ PKGBUILD2020-08-24 12:19:39 UTC (rev 687604)
@@ -1,48 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-aiobotocore
-_pkgname=aiobotocore
-pkgver=1.0.7
-pkgrel=2
-pkgdesc='asyncio support for botocore library using aiohttp'
-arch=(any)
-url='https://github.com/aio-libs/aiobotocore'
-license=(Apache)
-depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
-checkdepends=(python-flask python-moto python-pytest python-pytest-asyncio)
-source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz;
-unittest-mock.diff)
-sha256sums=('0789c379925c2f65a639e978bb20a35f4e242a46d2272f212f159f9a14f28f13'
-'ffb6b7e922632f4c2de5c93f61ab53e1730cfe151b0a2dde5dfce6260405866e')
-
-prepare() {
-  cd $_pkgname-$pkgver
-  # community/python-mock is outdated and does not include needed AsyncMock.
-  # Use mock from stdlib instead. It has AsyncMock since 3.8
-  patch -Np1 -i ../unittest-mock.diff
-
-  # Disable dependency pinning
-  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
-  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
-  diff -u setup.py{.orig,} || true
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  export PYTHONPATH="$PWD"
-  # test_lambda uses moto.awslambda, which requires a running Docker service
-  pytest -v -m moto tests \
-  --ignore=tests/test_patches.py \
-  --ignore=tests/test_lambda.py
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-aiobotocore/repos/community-any/PKGBUILD (from rev 687603, 
python-aiobotocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-24 12:19:39 UTC (rev 687604)
@@ -0,0 +1,49 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-aiobotocore
+_pkgname=aiobotocore
+pkgver=1.1.0
+pkgrel=1
+pkgdesc='asyncio support for botocore library using aiohttp'
+arch=(any)
+url='https://github.com/aio-libs/aiobotocore'
+license=(Apache)
+depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
+makedepends=(python-setuptools)
+checkdepends=(python-flask python-moto python-pytest python-pytest-asyncio)
+source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz;
+unittest-mock.diff)
+sha256sums=('c6fb60b1a29392475a38fbabfc5118e46ccce983bfe0cbb3da91528e92cd8f92'
+'ffb6b7e922632f4c2de5c93f61ab53e1730cfe151b0a2dde5dfce6260405866e')
+
+prepare() {
+  cd $_pkgname-$pkgver
+  # community/python-mock is outdated and does not include needed AsyncMock.
+  # Use mock from stdlib instead. It has AsyncMock since 3.8
+  patch -Np1 -i ../unittest-mock.diff
+
+  # Disable dependency pinning
+  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
+  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
+  diff -u setup.py{.orig,} || true
+}
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  export PYTHONPATH="$PWD"
+  # test_lambda uses moto.awslambda, which requires a running Docker service
+  pytest -v -m moto tests \
+  --ignore=tests/test_patches.py \
+  --ignore=tests/test_lambda.py
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}

Deleted: unittest-mock.diff
===
--- unittest-mock.diff  2020-08-24 12:19:14 UTC (rev 687603)
+++ unittest-mock.diff  2020-08-24 12:19:39 UTC (rev 687604)
@@ -1,37 +0,0 @@
-diff --git a/tests/botocore/test_credentials.py 
b/tests/botocore/test_credentials.py
-index ecbe17e..1b2172e 100644
 a/tests/botocore/test_credentials.py
-+++ b/tests/botocore/test_credentials.py
-@@ -8,7 +8,7 @@ import datetime
- import json
- import subprocess
- 
--import mock
-+from unittest import mock
- from typing import Optional
- 
- import pytest
-diff --git 

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

2020-04-16 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, April 17, 2020 @ 04:12:41
  Author: yan12125
Revision: 615403

archrelease: copy trunk to community-any

Added:
  python-aiobotocore/repos/community-any/PKGBUILD
(from rev 615402, python-aiobotocore/trunk/PKGBUILD)
  python-aiobotocore/repos/community-any/unittest-mock.diff
(from rev 615402, python-aiobotocore/trunk/unittest-mock.diff)
Deleted:
  python-aiobotocore/repos/community-any/PKGBUILD
  python-aiobotocore/repos/community-any/unittest-mock.diff

+
 PKGBUILD   |   88 ++-
 unittest-mock.diff |   74 +-
 2 files changed, 83 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-17 04:11:04 UTC (rev 615402)
+++ PKGBUILD2020-04-17 04:12:41 UTC (rev 615403)
@@ -1,42 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-aiobotocore
-_pkgname=aiobotocore
-pkgver=1.0.3
-pkgrel=1
-pkgdesc='asyncio support for botocore library using aiohttp'
-arch=(any)
-url='https://github.com/aio-libs/aiobotocore'
-license=(Apache)
-depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
-checkdepends=(python-flask python-moto python-pytest python-pytest-asyncio)
-source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz;
-unittest-mock.diff)
-sha256sums=('a80420047960d75434cf68b56eee9a5b765b5c9df4b279fe54d69e3d5fb1e84f'
-'ffb6b7e922632f4c2de5c93f61ab53e1730cfe151b0a2dde5dfce6260405866e')
-
-prepare() {
-  cd $_pkgname-$pkgver
-  patch -Np1 -i ../unittest-mock.diff
-
-  # Disable dependency pinning
-  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
-  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
-  diff -u setup.py{.orig,} || true
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  PYTHONPATH="$PWD/build/lib:$PWD" pytest -v -m moto tests 
--ignore=tests/test_patches.py
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-aiobotocore/repos/community-any/PKGBUILD (from rev 615402, 
python-aiobotocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-17 04:12:41 UTC (rev 615403)
@@ -0,0 +1,46 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-aiobotocore
+_pkgname=aiobotocore
+pkgver=1.0.4
+pkgrel=1
+pkgdesc='asyncio support for botocore library using aiohttp'
+arch=(any)
+url='https://github.com/aio-libs/aiobotocore'
+license=(Apache)
+depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
+checkdepends=(python-flask python-moto python-pytest python-pytest-asyncio)
+source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz;
+unittest-mock.diff)
+sha256sums=('ef9cae30ee8fa2b0b70e92a45d221d6ee7e77d2d7dc26a4e79ab13eaa1e7200d'
+'ffb6b7e922632f4c2de5c93f61ab53e1730cfe151b0a2dde5dfce6260405866e')
+
+prepare() {
+  cd $_pkgname-$pkgver
+  patch -Np1 -i ../unittest-mock.diff
+
+  # Disable dependency pinning
+  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
+  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
+  diff -u setup.py{.orig,} || true
+}
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  export PYTHONPATH="$PWD/build/lib:$PWD"
+  # test_lambda uses moto.awslambda, which requires a running Docker service
+  pytest -v -m moto tests \
+  --ignore=tests/test_patches.py \
+  --ignore=tests/test_lambda.py
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}

Deleted: unittest-mock.diff
===
--- unittest-mock.diff  2020-04-17 04:11:04 UTC (rev 615402)
+++ unittest-mock.diff  2020-04-17 04:12:41 UTC (rev 615403)
@@ -1,37 +0,0 @@
-diff --git a/tests/botocore/test_credentials.py 
b/tests/botocore/test_credentials.py
-index ecbe17e..1b2172e 100644
 a/tests/botocore/test_credentials.py
-+++ b/tests/botocore/test_credentials.py
-@@ -8,7 +8,7 @@ import datetime
- import json
- import subprocess
- 
--import mock
-+from unittest import mock
- from typing import Optional
- 
- import pytest
-diff --git a/tests/botocore/test_signers.py b/tests/botocore/test_signers.py
-index 0e4035e..7529760 100644
 a/tests/botocore/test_signers.py
-+++ b/tests/botocore/test_signers.py
-@@ -1,5 +1,5 @@
- import pytest
--import mock
-+from unittest import mock
- 
- import aiobotocore
- import aiobotocore.credentials
-diff --git a/tests/botocore/test_utils.py b/tests/botocore/test_utils.py
-index 3d17b87..4089cf1 100644
 

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

2020-04-10 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, April 10, 2020 @ 12:27:43
  Author: yan12125
Revision: 613086

archrelease: copy trunk to community-any

Added:
  python-aiobotocore/repos/community-any/PKGBUILD
(from rev 613085, python-aiobotocore/trunk/PKGBUILD)
  python-aiobotocore/repos/community-any/unittest-mock.diff
(from rev 613085, python-aiobotocore/trunk/unittest-mock.diff)
Deleted:
  python-aiobotocore/repos/community-any/PKGBUILD
  python-aiobotocore/repos/community-any/unittest-mock.diff

+
 PKGBUILD   |   84 +--
 unittest-mock.diff |   74 ++--
 2 files changed, 79 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-10 12:27:28 UTC (rev 613085)
+++ PKGBUILD2020-04-10 12:27:43 UTC (rev 613086)
@@ -1,42 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-aiobotocore
-_pkgname=aiobotocore
-pkgver=1.0.2
-pkgrel=1
-pkgdesc='asyncio support for botocore library using aiohttp'
-arch=(any)
-url='https://github.com/aio-libs/aiobotocore'
-license=(Apache)
-depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
-checkdepends=(python-flask python-moto python-pytest python-pytest-asyncio)
-source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz;
-unittest-mock.diff)
-sha256sums=('0f8c3fab20f18fce65eacf547a144c2d18953006dec89b9ff13b0f343a5e91dd'
-'ffb6b7e922632f4c2de5c93f61ab53e1730cfe151b0a2dde5dfce6260405866e')
-
-prepare() {
-  cd $_pkgname-$pkgver
-  patch -Np1 -i ../unittest-mock.diff
-
-  # Disable dependency pinning
-  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
-  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
-  diff -u setup.py{.orig,} || true
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  PYTHONPATH="$PWD/build/lib:$PWD" pytest -v -m moto tests 
--ignore=tests/test_patches.py
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-aiobotocore/repos/community-any/PKGBUILD (from rev 613085, 
python-aiobotocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-10 12:27:43 UTC (rev 613086)
@@ -0,0 +1,42 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-aiobotocore
+_pkgname=aiobotocore
+pkgver=1.0.3
+pkgrel=1
+pkgdesc='asyncio support for botocore library using aiohttp'
+arch=(any)
+url='https://github.com/aio-libs/aiobotocore'
+license=(Apache)
+depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
+checkdepends=(python-flask python-moto python-pytest python-pytest-asyncio)
+source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz;
+unittest-mock.diff)
+sha256sums=('a80420047960d75434cf68b56eee9a5b765b5c9df4b279fe54d69e3d5fb1e84f'
+'ffb6b7e922632f4c2de5c93f61ab53e1730cfe151b0a2dde5dfce6260405866e')
+
+prepare() {
+  cd $_pkgname-$pkgver
+  patch -Np1 -i ../unittest-mock.diff
+
+  # Disable dependency pinning
+  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
+  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
+  diff -u setup.py{.orig,} || true
+}
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  PYTHONPATH="$PWD/build/lib:$PWD" pytest -v -m moto tests 
--ignore=tests/test_patches.py
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}

Deleted: unittest-mock.diff
===
--- unittest-mock.diff  2020-04-10 12:27:28 UTC (rev 613085)
+++ unittest-mock.diff  2020-04-10 12:27:43 UTC (rev 613086)
@@ -1,37 +0,0 @@
-diff --git a/tests/botocore/test_credentials.py 
b/tests/botocore/test_credentials.py
-index ecbe17e..1b2172e 100644
 a/tests/botocore/test_credentials.py
-+++ b/tests/botocore/test_credentials.py
-@@ -8,7 +8,7 @@ import datetime
- import json
- import subprocess
- 
--import mock
-+from unittest import mock
- from typing import Optional
- 
- import pytest
-diff --git a/tests/botocore/test_signers.py b/tests/botocore/test_signers.py
-index 0e4035e..7529760 100644
 a/tests/botocore/test_signers.py
-+++ b/tests/botocore/test_signers.py
-@@ -1,5 +1,5 @@
- import pytest
--import mock
-+from unittest import mock
- 
- import aiobotocore
- import aiobotocore.credentials
-diff --git a/tests/botocore/test_utils.py b/tests/botocore/test_utils.py
-index 3d17b87..4089cf1 100644
 a/tests/botocore/test_utils.py
-+++ b/tests/botocore/test_utils.py
-@@ -1,7 +1,7 @@
- import asyncio
- import pytest
- import json
--import mock
-+from unittest 

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

2020-04-06 Thread Chih-Hsuan Yen via arch-commits
Date: Tuesday, April 7, 2020 @ 04:52:17
  Author: yan12125
Revision: 612426

archrelease: copy trunk to community-any

Added:
  python-aiobotocore/repos/community-any/PKGBUILD
(from rev 612425, python-aiobotocore/trunk/PKGBUILD)
  python-aiobotocore/repos/community-any/unittest-mock.diff
(from rev 612425, python-aiobotocore/trunk/unittest-mock.diff)
Deleted:
  python-aiobotocore/repos/community-any/PKGBUILD
  python-aiobotocore/repos/community-any/unittest-mock.diff

+
 PKGBUILD   |   84 +--
 unittest-mock.diff |   74 ++--
 2 files changed, 79 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-07 04:51:21 UTC (rev 612425)
+++ PKGBUILD2020-04-07 04:52:17 UTC (rev 612426)
@@ -1,42 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-aiobotocore
-_pkgname=aiobotocore
-pkgver=1.0.1
-pkgrel=1
-pkgdesc='asyncio support for botocore library using aiohttp'
-arch=(any)
-url='https://github.com/aio-libs/aiobotocore'
-license=(Apache)
-depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
-checkdepends=(python-flask python-moto python-pytest python-pytest-asyncio)
-source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz;
-unittest-mock.diff)
-sha256sums=('55b3afca3da9e3bee4a902d7af1a1e9dadb16fb79b46b5ee6a896654509d3bee'
-'ffb6b7e922632f4c2de5c93f61ab53e1730cfe151b0a2dde5dfce6260405866e')
-
-prepare() {
-  cd $_pkgname-$pkgver
-  patch -Np1 -i ../unittest-mock.diff
-
-  # Disable dependency pinning
-  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
-  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
-  diff -u setup.py{.orig,} || true
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  PYTHONPATH="$PWD/build/lib:$PWD" pytest -v -m moto tests 
--ignore=tests/test_patches.py
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-aiobotocore/repos/community-any/PKGBUILD (from rev 612425, 
python-aiobotocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-07 04:52:17 UTC (rev 612426)
@@ -0,0 +1,42 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-aiobotocore
+_pkgname=aiobotocore
+pkgver=1.0.2
+pkgrel=1
+pkgdesc='asyncio support for botocore library using aiohttp'
+arch=(any)
+url='https://github.com/aio-libs/aiobotocore'
+license=(Apache)
+depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
+checkdepends=(python-flask python-moto python-pytest python-pytest-asyncio)
+source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz;
+unittest-mock.diff)
+sha256sums=('0f8c3fab20f18fce65eacf547a144c2d18953006dec89b9ff13b0f343a5e91dd'
+'ffb6b7e922632f4c2de5c93f61ab53e1730cfe151b0a2dde5dfce6260405866e')
+
+prepare() {
+  cd $_pkgname-$pkgver
+  patch -Np1 -i ../unittest-mock.diff
+
+  # Disable dependency pinning
+  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
+  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
+  diff -u setup.py{.orig,} || true
+}
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  PYTHONPATH="$PWD/build/lib:$PWD" pytest -v -m moto tests 
--ignore=tests/test_patches.py
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}

Deleted: unittest-mock.diff
===
--- unittest-mock.diff  2020-04-07 04:51:21 UTC (rev 612425)
+++ unittest-mock.diff  2020-04-07 04:52:17 UTC (rev 612426)
@@ -1,37 +0,0 @@
-diff --git a/tests/botocore/test_credentials.py 
b/tests/botocore/test_credentials.py
-index ecbe17e..1b2172e 100644
 a/tests/botocore/test_credentials.py
-+++ b/tests/botocore/test_credentials.py
-@@ -8,7 +8,7 @@ import datetime
- import json
- import subprocess
- 
--import mock
-+from unittest import mock
- from typing import Optional
- 
- import pytest
-diff --git a/tests/botocore/test_signers.py b/tests/botocore/test_signers.py
-index 0e4035e..7529760 100644
 a/tests/botocore/test_signers.py
-+++ b/tests/botocore/test_signers.py
-@@ -1,5 +1,5 @@
- import pytest
--import mock
-+from unittest import mock
- 
- import aiobotocore
- import aiobotocore.credentials
-diff --git a/tests/botocore/test_utils.py b/tests/botocore/test_utils.py
-index 3d17b87..4089cf1 100644
 a/tests/botocore/test_utils.py
-+++ b/tests/botocore/test_utils.py
-@@ -1,7 +1,7 @@
- import asyncio
- import pytest
- import json
--import mock
-+from unittest 

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

2020-02-24 Thread Chih-Hsuan Yen via arch-commits
Date: Tuesday, February 25, 2020 @ 06:46:28
  Author: yan12125
Revision: 580934

archrelease: copy trunk to community-any

Added:
  python-aiobotocore/repos/community-any/PKGBUILD
(from rev 580933, python-aiobotocore/trunk/PKGBUILD)
Deleted:
  python-aiobotocore/repos/community-any/PKGBUILD
  python-aiobotocore/repos/community-any/fix-tests-with-proxies.patch
  python-aiobotocore/repos/community-any/python-aiobotocore-moto-1.3.14.diff

-+
 PKGBUILD|   87 +++---
 fix-tests-with-proxies.patch|   30 ---
 python-aiobotocore-moto-1.3.14.diff |   22 
 3 files changed, 39 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-25 06:46:07 UTC (rev 580933)
+++ PKGBUILD2020-02-25 06:46:28 UTC (rev 580934)
@@ -1,48 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-aiobotocore
-_pkgname=aiobotocore
-pkgver=0.11.1
-pkgrel=1
-pkgdesc='asyncio support for botocore library using aiohttp'
-arch=(any)
-url='https://github.com/aio-libs/aiobotocore'
-license=(Apache)
-depends=(python python-aiohttp python-botocore python-wrapt 
python-async_generator)
-checkdepends=(python-flask python-moto python-pytest python-pytest-asyncio)
-source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz;
-fix-tests-with-proxies.patch
-$pkgname-moto-1.3.14.diff)
-sha256sums=('2fd5787ff73a945f7f42f78cc0322d066f570254a805e7c02854895e45f61860'
-'248aee05a468848dda2c40185f49714ebe8b789913dd7bb49018d69f1f3606f7'
-'94b560d753ac31709e9ffb3771759561979e061772de1789f7dfe102fe01ca8c')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  patch -Np1 -i ../fix-tests-with-proxies.patch
-  # Workaround removal of DEFAULT_TOPIC_POLICY from moto.sns.models
-  # See: https://github.com/spulec/moto/pull/2517
-  patch -Np1 -i ../$pkgname-moto-1.3.14.diff
-
-  # Disable dependency pinning
-  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
-  rm -v tests/test_patches.py
-  sed -i -r "s#'(botocore.*),<.*',#'\1',#" setup.py
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  PYTHONPATH=build/lib pytest -v -m moto tests
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-aiobotocore/repos/community-any/PKGBUILD (from rev 580933, 
python-aiobotocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-25 06:46:28 UTC (rev 580934)
@@ -0,0 +1,39 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-aiobotocore
+_pkgname=aiobotocore
+pkgver=0.12.0
+pkgrel=1
+pkgdesc='asyncio support for botocore library using aiohttp'
+arch=(any)
+url='https://github.com/aio-libs/aiobotocore'
+license=(Apache)
+depends=(python python-aiohttp python-botocore python-wrapt 
python-aioitertools)
+checkdepends=(python-flask python-moto python-pytest python-pytest-asyncio)
+source=("https://github.com/aio-libs/aiobotocore/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('fa73d5f1306d30c827c7b229648c3a4c6797ee71d4a97de4f7a579b144d82338')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  # Disable dependency pinning
+  # Upstream tracking issue: https://github.com/aio-libs/aiobotocore/issues/670
+  sed --in-place=.orig -r "s#'(botocore.*),<.*',#'\1',#" setup.py
+  diff -u setup.py{.orig,} || true
+}
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  PYTHONPATH="$PWD/build/lib:$PWD" pytest -v -m moto tests 
--ignore=tests/test_patches.py
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}

Deleted: fix-tests-with-proxies.patch
===
--- fix-tests-with-proxies.patch2020-02-25 06:46:07 UTC (rev 580933)
+++ fix-tests-with-proxies.patch2020-02-25 06:46:28 UTC (rev 580934)
@@ -1,30 +0,0 @@
-diff --git a/tests/conftest.py b/tests/conftest.py
-index 2af2ff7..14c2974 100644
 a/tests/conftest.py
-+++ b/tests/conftest.py
-@@ -71,18 +71,20 @@ async def assert_num_uploads_found(
- @pytest.fixture
- def aa_fail_proxy_config(monkeypatch):
- # NOTE: name of this fixture must be alphabetically first to run first
--monkeypatch.setenv('HTTP_PROXY', 'http://localhost:54321')
--monkeypatch.setenv('HTTPS_PROXY', 'http://localhost:54321')
-+monkeypatch.setenv('http_proxy', 'http://localhost:54321')
-+monkeypatch.setenv('https_proxy', 'http://localhost:54321')
-+
-+monkeypatch.delenv('no_proxy', raising=False)
- 
- 
- @pytest.fixture
- def aa_succeed_proxy_config(monkeypatch):
- # NOTE: name of this fixture must be alphabetically first to run first
--

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

2019-07-18 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, July 19, 2019 @ 03:22:53
  Author: yan12125
Revision: 491966

archrelease: copy trunk to community-any

Added:
  python-aiobotocore/repos/community-any/PKGBUILD
(from rev 491965, python-aiobotocore/trunk/PKGBUILD)
  python-aiobotocore/repos/community-any/moto-1.3.8.patch
(from rev 491965, python-aiobotocore/trunk/moto-1.3.8.patch)
Deleted:
  python-aiobotocore/repos/community-any/PKGBUILD
  python-aiobotocore/repos/community-any/moto-1.3.8.patch

--+
 PKGBUILD |   84 ++---
 moto-1.3.8.patch |   52 
 2 files changed, 68 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-19 03:22:15 UTC (rev 491965)
+++ PKGBUILD2019-07-19 03:22:53 UTC (rev 491966)
@@ -1,42 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-aiobotocore
-_pkgname=aiobotocore
-pkgver=0.10.2
-pkgrel=2
-pkgdesc='asyncio support for botocore library using aiohttp'
-arch=(any)
-url='https://github.com/aio-libs/aiobotocore'
-license=(Apache)
-depends=(python python-aiohttp python-botocore python-wrapt 
python-async_generator)
-checkdepends=(python-flask python-moto python-pytest python-pytest-asyncio)
-source=("$pkgname-$pkgver.tar.gz"::"https://github.com/aio-libs/aiobotocore/archive/$pkgver.tar.gz;
-moto-1.3.8.patch)
-sha256sums=('0748808cfe3063e8cb2902d076370034513f321ca10317b2464fadaa718fae85'
-'7953b9cf8b4256cf0020098a978ef5c48097dfbaafe1c2cbf22d590ed1b07e5c')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  # used in a skipped test only
-  sed -i '/from dill.source import getsource/d' tests/test_patches.py
-
-  patch -Np1 -i ../moto-1.3.8.patch
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  # test_patches works only for pinned versions of dependencies
-  PYTHONPATH=build/lib pytest -v -m moto -k 'not test_patches' tests
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-aiobotocore/repos/community-any/PKGBUILD (from rev 491965, 
python-aiobotocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-19 03:22:53 UTC (rev 491966)
@@ -0,0 +1,42 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-aiobotocore
+_pkgname=aiobotocore
+pkgver=0.10.3
+pkgrel=1
+pkgdesc='asyncio support for botocore library using aiohttp'
+arch=(any)
+url='https://github.com/aio-libs/aiobotocore'
+license=(Apache)
+depends=(python python-aiohttp python-botocore python-wrapt 
python-async_generator)
+checkdepends=(python-flask python-moto python-pytest python-pytest-asyncio)
+source=("$pkgname-$pkgver.tar.gz"::"https://github.com/aio-libs/aiobotocore/archive/$pkgver.tar.gz;
+moto-1.3.8.patch)
+sha256sums=('5af3a575dee8f6d4bda36a237807edc7e864cc0e45c0b20dc07521191ee04759'
+'7953b9cf8b4256cf0020098a978ef5c48097dfbaafe1c2cbf22d590ed1b07e5c')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  # used in a skipped test only
+  sed -i '/from dill.source import getsource/d' tests/test_patches.py
+
+  patch -Np1 -i ../moto-1.3.8.patch
+}
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  # test_patches works only for pinned versions of dependencies
+  PYTHONPATH=build/lib pytest -v -m moto -k 'not test_patches' tests
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}

Deleted: moto-1.3.8.patch
===
--- moto-1.3.8.patch2019-07-19 03:22:15 UTC (rev 491965)
+++ moto-1.3.8.patch2019-07-19 03:22:53 UTC (rev 491966)
@@ -1,26 +0,0 @@
 aiobotocore-0.10.2/tests/test_basic_s3.py.orig 2019-05-06 
21:25:17.837243558 +0800
-+++ aiobotocore-0.10.2/tests/test_basic_s3.py  2019-05-06 21:25:24.003906932 
+0800
-@@ -311,6 +311,7 @@
- assert data == b'foo'
- 
- 
-+@pytest.mark.xfail(reason='Incompatible with moto 1.3.8')
- @pytest.mark.moto
- @pytest.mark.asyncio
- async def test_copy_with_query_string(s3_client, create_object, bucket_name):
-@@ -329,6 +330,7 @@
- assert data == b'foo'
- 
- 
-+@pytest.mark.xfail(reason='Incompatible with moto 1.3.8')
- @pytest.mark.moto
- @pytest.mark.asyncio
- async def test_can_copy_with_dict_form(s3_client, create_object, bucket_name):
-@@ -347,6 +349,7 @@
- assert data == b'foo'
- 
- 
-+@pytest.mark.xfail(reason='Incompatible with moto 1.3.8')
- @pytest.mark.moto
- @pytest.mark.asyncio
- async def test_can_copy_with_dict_form_with_version(

Copied: python-aiobotocore/repos/community-any/moto-1.3.8.patch (from rev 
491965, python-aiobotocore/trunk/moto-1.3.8.patch)
===
--- moto-1.3.8.patch 

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

2019-05-06 Thread Chih-Hsuan Yen via arch-commits
Date: Monday, May 6, 2019 @ 13:38:18
  Author: yan12125
Revision: 460909

archrelease: copy trunk to community-any

Added:
  python-aiobotocore/repos/community-any/PKGBUILD
(from rev 460908, python-aiobotocore/trunk/PKGBUILD)
  python-aiobotocore/repos/community-any/moto-1.3.8.patch
(from rev 460908, python-aiobotocore/trunk/moto-1.3.8.patch)
Deleted:
  python-aiobotocore/repos/community-any/PKGBUILD
  python-aiobotocore/repos/community-any/moto-1.3.8.patch

--+
 PKGBUILD |   84 ++---
 moto-1.3.8.patch |   52 
 2 files changed, 68 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-06 13:38:04 UTC (rev 460908)
+++ PKGBUILD2019-05-06 13:38:18 UTC (rev 460909)
@@ -1,42 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-aiobotocore
-_pkgname=aiobotocore
-pkgver=0.10.2
-pkgrel=1
-pkgdesc='asyncio support for botocore library using aiohttp'
-arch=(any)
-url='https://github.com/aio-libs/aiobotocore'
-license=(Apache)
-depends=(python python-aiohttp python-botocore python-wrapt 
python-async_generator)
-checkdepends=(python-flask python-moto python-pytest python-pytest-asyncio)
-source=("$pkgname-$pkgver.tar.gz"::"https://github.com/aio-libs/aiobotocore/archive/$pkgver.tar.gz;
-moto-1.3.8.patch)
-sha256sums=('0748808cfe3063e8cb2902d076370034513f321ca10317b2464fadaa718fae85'
-'7953b9cf8b4256cf0020098a978ef5c48097dfbaafe1c2cbf22d590ed1b07e5c')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  # used in a skipped test only
-  sed -i '/from dill.source import getsource/d' tests/test_patches.py
-
-  patch -Np1 -i ../moto-1.3.8.patch
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  # test_patches works only for pinned versions of dependencies
-  PYTHONPATH=build/lib pytest -v -m moto -k 'not test_patches' tests
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-aiobotocore/repos/community-any/PKGBUILD (from rev 460908, 
python-aiobotocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-06 13:38:18 UTC (rev 460909)
@@ -0,0 +1,42 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-aiobotocore
+_pkgname=aiobotocore
+pkgver=0.10.2
+pkgrel=2
+pkgdesc='asyncio support for botocore library using aiohttp'
+arch=(any)
+url='https://github.com/aio-libs/aiobotocore'
+license=(Apache)
+depends=(python python-aiohttp python-botocore python-wrapt 
python-async_generator)
+checkdepends=(python-flask python-moto python-pytest python-pytest-asyncio)
+source=("$pkgname-$pkgver.tar.gz"::"https://github.com/aio-libs/aiobotocore/archive/$pkgver.tar.gz;
+moto-1.3.8.patch)
+sha256sums=('0748808cfe3063e8cb2902d076370034513f321ca10317b2464fadaa718fae85'
+'7953b9cf8b4256cf0020098a978ef5c48097dfbaafe1c2cbf22d590ed1b07e5c')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  # used in a skipped test only
+  sed -i '/from dill.source import getsource/d' tests/test_patches.py
+
+  patch -Np1 -i ../moto-1.3.8.patch
+}
+
+build() {
+  cd $_pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  # test_patches works only for pinned versions of dependencies
+  PYTHONPATH=build/lib pytest -v -m moto -k 'not test_patches' tests
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}

Deleted: moto-1.3.8.patch
===
--- moto-1.3.8.patch2019-05-06 13:38:04 UTC (rev 460908)
+++ moto-1.3.8.patch2019-05-06 13:38:18 UTC (rev 460909)
@@ -1,26 +0,0 @@
 aiobotocore-0.10.2/tests/test_basic_s3.py.orig 2019-05-06 
21:25:17.837243558 +0800
-+++ aiobotocore-0.10.2/tests/test_basic_s3.py  2019-05-06 21:25:24.003906932 
+0800
-@@ -311,6 +311,7 @@
- assert data == b'foo'
- 
- 
-+@pytest.mark.xfail(reason='Incompatible with moto 1.3.8')
- @pytest.mark.moto
- @pytest.mark.asyncio
- async def test_copy_with_query_string(s3_client, create_object, bucket_name):
-@@ -329,6 +330,7 @@
- assert data == b'foo'
- 
- 
-+@pytest.mark.xfail(reason='Incompatible with moto 1.3.8')
- @pytest.mark.moto
- @pytest.mark.asyncio
- async def test_can_copy_with_dict_form(s3_client, create_object, bucket_name):
-@@ -347,6 +349,7 @@
- assert data == b'foo'
- 
- 
-+@pytest.mark.xfail(reason='Incompatible with moto 1.3.8')
- @pytest.mark.moto
- @pytest.mark.asyncio
- async def test_can_copy_with_dict_form_with_version(

Copied: python-aiobotocore/repos/community-any/moto-1.3.8.patch (from rev 
460908, python-aiobotocore/trunk/moto-1.3.8.patch)
===
--- moto-1.3.8.patch