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

2020-09-01 Thread Felix Yan via arch-commits
Date: Tuesday, September 1, 2020 @ 21:20:15
  Author: felixonmars
Revision: 695956

archrelease: copy trunk to community-any

Added:
  python-oslo-utils/repos/community-any/PKGBUILD
(from rev 695955, python-oslo-utils/trunk/PKGBUILD)
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch
(from rev 695955, python-oslo-utils/trunk/oslo-utils-py38.patch)
Deleted:
  python-oslo-utils/repos/community-any/PKGBUILD
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch

---+
 PKGBUILD  |   82 -
 oslo-utils-py38.patch |  116 
 2 files changed, 99 insertions(+), 99 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-01 21:19:57 UTC (rev 695955)
+++ PKGBUILD2020-09-01 21:20:15 UTC (rev 695956)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgname=python-oslo-utils
-pkgver=4.4.0
-pkgrel=1
-pkgdesc="Oslo Utility library"
-arch=('any')
-url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
-license=('Apache')
-depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
- 'python-netaddr' 'python-netifaces' 'python-debtcollector')
-makedepends=('python-setuptools')
-checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
-oslo-utils-py38.patch)
-sha512sums=('d3b680333dcb3d3b3d3cc9bbeca49315ab2dbee01c4f4696a0a85684949458a05fe23b319e444e07d7014d60e06d19afaf42aa4319120a5d49db6fd99a2d51e4'
-
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a')
-
-export PBR_VERSION=$pkgver
-
-prepare() {
-  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
-}
-
-build() {
-  cd oslo.utils-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd oslo.utils-$pkgver
-  stestr run
-}
-
-package() {
-  cd oslo.utils-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslo-utils/repos/community-any/PKGBUILD (from rev 695955, 
python-oslo-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-01 21:20:15 UTC (rev 695956)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgname=python-oslo-utils
+pkgver=4.5.0
+pkgrel=1
+pkgdesc="Oslo Utility library"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
+license=('Apache')
+depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
+ 'python-netaddr' 'python-netifaces' 'python-debtcollector')
+makedepends=('python-setuptools')
+checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
+oslo-utils-py38.patch)
+sha512sums=('dfed8940658c539516a255dfef25ff5f4197ee04325cbfe786bca1236326f71852e8c8c8902fb2327723d62f7196cead3bd1d03c1f0b0d102cd5f12f2f509d2f'
+
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a')
+
+export PBR_VERSION=$pkgver
+
+prepare() {
+  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
+}
+
+build() {
+  cd oslo.utils-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd oslo.utils-$pkgver
+  stestr run
+}
+
+package() {
+  cd oslo.utils-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: oslo-utils-py38.patch
===
--- oslo-utils-py38.patch   2020-09-01 21:19:57 UTC (rev 695955)
+++ oslo-utils-py38.patch   2020-09-01 21:20:15 UTC (rev 695956)
@@ -1,58 +0,0 @@
-Description: non-strict callback comparison is not possible in py3.8
-Author: Dimitri John Ledkov 
-Bug-Python: https://bugs.python.org/issue1617161
-Bug-LP: 
https://bugs.launchpad.net/ubuntu/+source/python-oslo.utils/+bug/1841072
-
-Index: python-oslo.utils-3.41.1/oslo_utils/reflection.py
-===
 python-oslo.utils-3.41.1.orig/oslo_utils/reflection.py
-+++ python-oslo.utils-3.41.1/oslo_utils/reflection.py
-@@ -22,6 +22,8 @@ Reflection module.
- 
- import inspect
- import types
-+import platform
-+import warnings
- 
- import six
- 
-@@ -169,7 +171,10 @@ def is_same_callback(callback1, callback
- # This happens when plain methods are given (or static/non-bound
- # methods).
- return True
-+if not strict and platform.python_version() > '3.8':
-+warnings.warn("non strict comparison impossible in py3.8+", 
DeprecationWarning)
- if callback1 == callback2:
-+## 

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

2020-07-28 Thread Felix Yan via arch-commits
Date: Tuesday, July 28, 2020 @ 06:24:32
  Author: felixonmars
Revision: 665617

archrelease: copy trunk to community-any

Added:
  python-oslo-utils/repos/community-any/PKGBUILD
(from rev 665616, python-oslo-utils/trunk/PKGBUILD)
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch
(from rev 665616, python-oslo-utils/trunk/oslo-utils-py38.patch)
Deleted:
  python-oslo-utils/repos/community-any/PKGBUILD
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch

---+
 PKGBUILD  |   82 -
 oslo-utils-py38.patch |  116 
 2 files changed, 99 insertions(+), 99 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-28 06:24:20 UTC (rev 665616)
+++ PKGBUILD2020-07-28 06:24:32 UTC (rev 665617)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgname=python-oslo-utils
-pkgver=4.3.0
-pkgrel=1
-pkgdesc="Oslo Utility library"
-arch=('any')
-url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
-license=('Apache')
-depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
- 'python-netaddr' 'python-netifaces' 'python-debtcollector')
-makedepends=('python-setuptools')
-checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
-oslo-utils-py38.patch)
-sha512sums=('a0dea21a948686dd1de0e52c3f2d803118b04740e925048b7b7f63e7a0e6fe9bb5443f3d9d46ad4debe03ddaf46e4f880a08e3ba86c9ab088e24c9ca5059a65a'
-
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a')
-
-export PBR_VERSION=$pkgver
-
-prepare() {
-  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
-}
-
-build() {
-  cd oslo.utils-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd oslo.utils-$pkgver
-  stestr run
-}
-
-package() {
-  cd oslo.utils-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslo-utils/repos/community-any/PKGBUILD (from rev 665616, 
python-oslo-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-28 06:24:32 UTC (rev 665617)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgname=python-oslo-utils
+pkgver=4.4.0
+pkgrel=1
+pkgdesc="Oslo Utility library"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
+license=('Apache')
+depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
+ 'python-netaddr' 'python-netifaces' 'python-debtcollector')
+makedepends=('python-setuptools')
+checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
+oslo-utils-py38.patch)
+sha512sums=('d3b680333dcb3d3b3d3cc9bbeca49315ab2dbee01c4f4696a0a85684949458a05fe23b319e444e07d7014d60e06d19afaf42aa4319120a5d49db6fd99a2d51e4'
+
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a')
+
+export PBR_VERSION=$pkgver
+
+prepare() {
+  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
+}
+
+build() {
+  cd oslo.utils-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd oslo.utils-$pkgver
+  stestr run
+}
+
+package() {
+  cd oslo.utils-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: oslo-utils-py38.patch
===
--- oslo-utils-py38.patch   2020-07-28 06:24:20 UTC (rev 665616)
+++ oslo-utils-py38.patch   2020-07-28 06:24:32 UTC (rev 665617)
@@ -1,58 +0,0 @@
-Description: non-strict callback comparison is not possible in py3.8
-Author: Dimitri John Ledkov 
-Bug-Python: https://bugs.python.org/issue1617161
-Bug-LP: 
https://bugs.launchpad.net/ubuntu/+source/python-oslo.utils/+bug/1841072
-
-Index: python-oslo.utils-3.41.1/oslo_utils/reflection.py
-===
 python-oslo.utils-3.41.1.orig/oslo_utils/reflection.py
-+++ python-oslo.utils-3.41.1/oslo_utils/reflection.py
-@@ -22,6 +22,8 @@ Reflection module.
- 
- import inspect
- import types
-+import platform
-+import warnings
- 
- import six
- 
-@@ -169,7 +171,10 @@ def is_same_callback(callback1, callback
- # This happens when plain methods are given (or static/non-bound
- # methods).
- return True
-+if not strict and platform.python_version() > '3.8':
-+warnings.warn("non strict comparison impossible in py3.8+", 
DeprecationWarning)
- if callback1 == callback2:
-+## raise 

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

2020-07-23 Thread Felix Yan via arch-commits
Date: Thursday, July 23, 2020 @ 20:26:52
  Author: felixonmars
Revision: 665095

archrelease: copy trunk to community-any

Added:
  python-oslo-utils/repos/community-any/PKGBUILD
(from rev 665094, python-oslo-utils/trunk/PKGBUILD)
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch
(from rev 665094, python-oslo-utils/trunk/oslo-utils-py38.patch)
Deleted:
  python-oslo-utils/repos/community-any/PKGBUILD
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch

---+
 PKGBUILD  |   82 -
 oslo-utils-py38.patch |  116 
 2 files changed, 99 insertions(+), 99 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-23 20:26:33 UTC (rev 665094)
+++ PKGBUILD2020-07-23 20:26:52 UTC (rev 665095)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgname=python-oslo-utils
-pkgver=4.2.2
-pkgrel=1
-pkgdesc="Oslo Utility library"
-arch=('any')
-url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
-license=('Apache')
-depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
- 'python-netaddr' 'python-netifaces' 'python-debtcollector')
-makedepends=('python-setuptools')
-checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
-oslo-utils-py38.patch)
-sha512sums=('4a7c8ba55452dac59118ffbaf5ec99ff5b5feb05850c1d09cad6862dea31db9fcbdd1fd41b636767af5b505654b22e4ef21049967c8140de68bbaa0f29b214cb'
-
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a')
-
-export PBR_VERSION=$pkgver
-
-prepare() {
-  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
-}
-
-build() {
-  cd oslo.utils-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd oslo.utils-$pkgver
-  stestr run
-}
-
-package() {
-  cd oslo.utils-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslo-utils/repos/community-any/PKGBUILD (from rev 665094, 
python-oslo-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-23 20:26:52 UTC (rev 665095)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgname=python-oslo-utils
+pkgver=4.3.0
+pkgrel=1
+pkgdesc="Oslo Utility library"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
+license=('Apache')
+depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
+ 'python-netaddr' 'python-netifaces' 'python-debtcollector')
+makedepends=('python-setuptools')
+checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
+oslo-utils-py38.patch)
+sha512sums=('a0dea21a948686dd1de0e52c3f2d803118b04740e925048b7b7f63e7a0e6fe9bb5443f3d9d46ad4debe03ddaf46e4f880a08e3ba86c9ab088e24c9ca5059a65a'
+
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a')
+
+export PBR_VERSION=$pkgver
+
+prepare() {
+  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
+}
+
+build() {
+  cd oslo.utils-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd oslo.utils-$pkgver
+  stestr run
+}
+
+package() {
+  cd oslo.utils-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: oslo-utils-py38.patch
===
--- oslo-utils-py38.patch   2020-07-23 20:26:33 UTC (rev 665094)
+++ oslo-utils-py38.patch   2020-07-23 20:26:52 UTC (rev 665095)
@@ -1,58 +0,0 @@
-Description: non-strict callback comparison is not possible in py3.8
-Author: Dimitri John Ledkov 
-Bug-Python: https://bugs.python.org/issue1617161
-Bug-LP: 
https://bugs.launchpad.net/ubuntu/+source/python-oslo.utils/+bug/1841072
-
-Index: python-oslo.utils-3.41.1/oslo_utils/reflection.py
-===
 python-oslo.utils-3.41.1.orig/oslo_utils/reflection.py
-+++ python-oslo.utils-3.41.1/oslo_utils/reflection.py
-@@ -22,6 +22,8 @@ Reflection module.
- 
- import inspect
- import types
-+import platform
-+import warnings
- 
- import six
- 
-@@ -169,7 +171,10 @@ def is_same_callback(callback1, callback
- # This happens when plain methods are given (or static/non-bound
- # methods).
- return True
-+if not strict and platform.python_version() > '3.8':
-+warnings.warn("non strict comparison impossible in py3.8+", 
DeprecationWarning)
- if callback1 == callback2:
-+## 

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

2020-06-29 Thread Felix Yan via arch-commits
Date: Monday, June 29, 2020 @ 18:36:36
  Author: felixonmars
Revision: 656420

archrelease: copy trunk to community-any

Added:
  python-oslo-utils/repos/community-any/PKGBUILD
(from rev 656419, python-oslo-utils/trunk/PKGBUILD)
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch
(from rev 656419, python-oslo-utils/trunk/oslo-utils-py38.patch)
Deleted:
  python-oslo-utils/repos/community-any/PKGBUILD
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch

---+
 PKGBUILD  |   82 -
 oslo-utils-py38.patch |  116 
 2 files changed, 99 insertions(+), 99 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-29 18:36:25 UTC (rev 656419)
+++ PKGBUILD2020-06-29 18:36:36 UTC (rev 656420)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgname=python-oslo-utils
-pkgver=4.2.1
-pkgrel=1
-pkgdesc="Oslo Utility library"
-arch=('any')
-url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
-license=('Apache')
-depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
- 'python-netaddr' 'python-netifaces' 'python-debtcollector')
-makedepends=('python-setuptools')
-checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
-oslo-utils-py38.patch)
-sha512sums=('5e26f5595fd0f0dbf5b41db8ba7dc0a9d5415143b3f94814705a3e33fa13c7388b47c8356f0bbb14d89008938a489423e8ba356e426847efccbf9ac930103a17'
-
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a')
-
-export PBR_VERSION=$pkgver
-
-prepare() {
-  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
-}
-
-build() {
-  cd oslo.utils-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd oslo.utils-$pkgver
-  stestr run
-}
-
-package() {
-  cd oslo.utils-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslo-utils/repos/community-any/PKGBUILD (from rev 656419, 
python-oslo-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-29 18:36:36 UTC (rev 656420)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgname=python-oslo-utils
+pkgver=4.2.2
+pkgrel=1
+pkgdesc="Oslo Utility library"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
+license=('Apache')
+depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
+ 'python-netaddr' 'python-netifaces' 'python-debtcollector')
+makedepends=('python-setuptools')
+checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
+oslo-utils-py38.patch)
+sha512sums=('4a7c8ba55452dac59118ffbaf5ec99ff5b5feb05850c1d09cad6862dea31db9fcbdd1fd41b636767af5b505654b22e4ef21049967c8140de68bbaa0f29b214cb'
+
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a')
+
+export PBR_VERSION=$pkgver
+
+prepare() {
+  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
+}
+
+build() {
+  cd oslo.utils-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd oslo.utils-$pkgver
+  stestr run
+}
+
+package() {
+  cd oslo.utils-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: oslo-utils-py38.patch
===
--- oslo-utils-py38.patch   2020-06-29 18:36:25 UTC (rev 656419)
+++ oslo-utils-py38.patch   2020-06-29 18:36:36 UTC (rev 656420)
@@ -1,58 +0,0 @@
-Description: non-strict callback comparison is not possible in py3.8
-Author: Dimitri John Ledkov 
-Bug-Python: https://bugs.python.org/issue1617161
-Bug-LP: 
https://bugs.launchpad.net/ubuntu/+source/python-oslo.utils/+bug/1841072
-
-Index: python-oslo.utils-3.41.1/oslo_utils/reflection.py
-===
 python-oslo.utils-3.41.1.orig/oslo_utils/reflection.py
-+++ python-oslo.utils-3.41.1/oslo_utils/reflection.py
-@@ -22,6 +22,8 @@ Reflection module.
- 
- import inspect
- import types
-+import platform
-+import warnings
- 
- import six
- 
-@@ -169,7 +171,10 @@ def is_same_callback(callback1, callback
- # This happens when plain methods are given (or static/non-bound
- # methods).
- return True
-+if not strict and platform.python_version() > '3.8':
-+warnings.warn("non strict comparison impossible in py3.8+", 
DeprecationWarning)
- if callback1 == callback2:
-+## raise 

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

2020-06-11 Thread Felix Yan via arch-commits
Date: Thursday, June 11, 2020 @ 18:45:15
  Author: felixonmars
Revision: 642111

archrelease: copy trunk to community-any

Added:
  python-oslo-utils/repos/community-any/PKGBUILD
(from rev 642110, python-oslo-utils/trunk/PKGBUILD)
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch
(from rev 642110, python-oslo-utils/trunk/oslo-utils-py38.patch)
Deleted:
  python-oslo-utils/repos/community-any/PKGBUILD
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch

---+
 PKGBUILD  |   82 -
 oslo-utils-py38.patch |  116 
 2 files changed, 99 insertions(+), 99 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-11 18:44:52 UTC (rev 642110)
+++ PKGBUILD2020-06-11 18:45:15 UTC (rev 642111)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgname=python-oslo-utils
-pkgver=4.2.0
-pkgrel=1
-pkgdesc="Oslo Utility library"
-arch=('any')
-url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
-license=('Apache')
-depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
- 'python-netaddr' 'python-netifaces' 'python-debtcollector')
-makedepends=('python-setuptools')
-checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
-oslo-utils-py38.patch)
-sha512sums=('1edddcfbaae1e730357d2408517c5bd79a2e8ed262ff4586225d98588487836eca396a75eba4e245fa9cd1c259f5758563c499bc8d6430cf89e63cbad31ef18c'
-
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a')
-
-export PBR_VERSION=$pkgver
-
-prepare() {
-  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
-}
-
-build() {
-  cd oslo.utils-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd oslo.utils-$pkgver
-  stestr run
-}
-
-package() {
-  cd oslo.utils-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslo-utils/repos/community-any/PKGBUILD (from rev 642110, 
python-oslo-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-11 18:45:15 UTC (rev 642111)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgname=python-oslo-utils
+pkgver=4.2.1
+pkgrel=1
+pkgdesc="Oslo Utility library"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
+license=('Apache')
+depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
+ 'python-netaddr' 'python-netifaces' 'python-debtcollector')
+makedepends=('python-setuptools')
+checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
+oslo-utils-py38.patch)
+sha512sums=('5e26f5595fd0f0dbf5b41db8ba7dc0a9d5415143b3f94814705a3e33fa13c7388b47c8356f0bbb14d89008938a489423e8ba356e426847efccbf9ac930103a17'
+
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a')
+
+export PBR_VERSION=$pkgver
+
+prepare() {
+  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
+}
+
+build() {
+  cd oslo.utils-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd oslo.utils-$pkgver
+  stestr run
+}
+
+package() {
+  cd oslo.utils-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: oslo-utils-py38.patch
===
--- oslo-utils-py38.patch   2020-06-11 18:44:52 UTC (rev 642110)
+++ oslo-utils-py38.patch   2020-06-11 18:45:15 UTC (rev 642111)
@@ -1,58 +0,0 @@
-Description: non-strict callback comparison is not possible in py3.8
-Author: Dimitri John Ledkov 
-Bug-Python: https://bugs.python.org/issue1617161
-Bug-LP: 
https://bugs.launchpad.net/ubuntu/+source/python-oslo.utils/+bug/1841072
-
-Index: python-oslo.utils-3.41.1/oslo_utils/reflection.py
-===
 python-oslo.utils-3.41.1.orig/oslo_utils/reflection.py
-+++ python-oslo.utils-3.41.1/oslo_utils/reflection.py
-@@ -22,6 +22,8 @@ Reflection module.
- 
- import inspect
- import types
-+import platform
-+import warnings
- 
- import six
- 
-@@ -169,7 +171,10 @@ def is_same_callback(callback1, callback
- # This happens when plain methods are given (or static/non-bound
- # methods).
- return True
-+if not strict and platform.python_version() > '3.8':
-+warnings.warn("non strict comparison impossible in py3.8+", 
DeprecationWarning)
- if callback1 == callback2:
-+## 

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

2020-06-04 Thread Felix Yan via arch-commits
Date: Thursday, June 4, 2020 @ 16:35:43
  Author: felixonmars
Revision: 638971

archrelease: copy trunk to community-any

Added:
  python-oslo-utils/repos/community-any/PKGBUILD
(from rev 638970, python-oslo-utils/trunk/PKGBUILD)
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch
(from rev 638970, python-oslo-utils/trunk/oslo-utils-py38.patch)
Deleted:
  python-oslo-utils/repos/community-any/PKGBUILD
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch

---+
 PKGBUILD  |   82 -
 oslo-utils-py38.patch |  116 
 2 files changed, 99 insertions(+), 99 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-04 16:35:18 UTC (rev 638970)
+++ PKGBUILD2020-06-04 16:35:43 UTC (rev 638971)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgname=python-oslo-utils
-pkgver=4.1.1
-pkgrel=1
-pkgdesc="Oslo Utility library"
-arch=('any')
-url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
-license=('Apache')
-depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
- 'python-netaddr' 'python-netifaces' 'python-debtcollector')
-makedepends=('python-setuptools')
-checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
-oslo-utils-py38.patch)
-sha512sums=('f9c48fe72c167b2297a0ee1a6979ff18c48d0c65aa44f4ea85a41a611f492e74ad043fa0b5e987761903760364ed5e25dbd36ee826244ce0ebe8bf0db607'
-
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a')
-
-export PBR_VERSION=$pkgver
-
-prepare() {
-  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
-}
-
-build() {
-  cd oslo.utils-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd oslo.utils-$pkgver
-  stestr run
-}
-
-package() {
-  cd oslo.utils-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslo-utils/repos/community-any/PKGBUILD (from rev 638970, 
python-oslo-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-04 16:35:43 UTC (rev 638971)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgname=python-oslo-utils
+pkgver=4.2.0
+pkgrel=1
+pkgdesc="Oslo Utility library"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
+license=('Apache')
+depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
+ 'python-netaddr' 'python-netifaces' 'python-debtcollector')
+makedepends=('python-setuptools')
+checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
+oslo-utils-py38.patch)
+sha512sums=('1edddcfbaae1e730357d2408517c5bd79a2e8ed262ff4586225d98588487836eca396a75eba4e245fa9cd1c259f5758563c499bc8d6430cf89e63cbad31ef18c'
+
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a')
+
+export PBR_VERSION=$pkgver
+
+prepare() {
+  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
+}
+
+build() {
+  cd oslo.utils-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd oslo.utils-$pkgver
+  stestr run
+}
+
+package() {
+  cd oslo.utils-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: oslo-utils-py38.patch
===
--- oslo-utils-py38.patch   2020-06-04 16:35:18 UTC (rev 638970)
+++ oslo-utils-py38.patch   2020-06-04 16:35:43 UTC (rev 638971)
@@ -1,58 +0,0 @@
-Description: non-strict callback comparison is not possible in py3.8
-Author: Dimitri John Ledkov 
-Bug-Python: https://bugs.python.org/issue1617161
-Bug-LP: 
https://bugs.launchpad.net/ubuntu/+source/python-oslo.utils/+bug/1841072
-
-Index: python-oslo.utils-3.41.1/oslo_utils/reflection.py
-===
 python-oslo.utils-3.41.1.orig/oslo_utils/reflection.py
-+++ python-oslo.utils-3.41.1/oslo_utils/reflection.py
-@@ -22,6 +22,8 @@ Reflection module.
- 
- import inspect
- import types
-+import platform
-+import warnings
- 
- import six
- 
-@@ -169,7 +171,10 @@ def is_same_callback(callback1, callback
- # This happens when plain methods are given (or static/non-bound
- # methods).
- return True
-+if not strict and platform.python_version() > '3.8':
-+warnings.warn("non strict comparison impossible in py3.8+", 
DeprecationWarning)
- if callback1 == callback2:
-+## raise 

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

2020-04-07 Thread Felix Yan via arch-commits
Date: Tuesday, April 7, 2020 @ 22:01:18
  Author: felixonmars
Revision: 612502

archrelease: copy trunk to community-any

Added:
  python-oslo-utils/repos/community-any/PKGBUILD
(from rev 612501, python-oslo-utils/trunk/PKGBUILD)
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch
(from rev 612501, python-oslo-utils/trunk/oslo-utils-py38.patch)
Deleted:
  python-oslo-utils/repos/community-any/PKGBUILD
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch

---+
 PKGBUILD  |   85 ---
 oslo-utils-py38.patch |  116 
 2 files changed, 99 insertions(+), 102 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-07 22:00:57 UTC (rev 612501)
+++ PKGBUILD2020-04-07 22:01:18 UTC (rev 612502)
@@ -1,44 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgname=python-oslo-utils
-pkgver=4.1.0
-pkgrel=1
-pkgdesc="Oslo Utility library"
-arch=('any')
-url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
-license=('Apache')
-depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
- 'python-netaddr' 'python-netifaces' 'python-debtcollector')
-makedepends=('python-setuptools')
-checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
-oslo-utils-py38.patch
-
oslo-utils-oslotest4.patch::https://github.com/openstack/oslo.utils/commit/a830a6b8a18172ec22b343ffd9734355260e48e5.patch)
-sha512sums=('6fa8fdf690fc42d6183912f822d80faed04e2877cc32ad730c75fd7e2fcc0b11476d5fb9cd5fac8411aa2afb78c558eaa57c721e1b940bfecae9759b4f89a2d9'
-
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a'
-
'adb6ec0951bdb6043c3369b2886506dc1ed6216062a537bbb456324467b7a6da069b61dcf6146944f454ff56115cd125c3bd6aa7ecd13f4aaab1991d7c5b8c8d')
-
-export PBR_VERSION=$pkgver
-
-prepare() {
-  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
-  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-oslotest4.patch
-}
-
-build() {
-  cd oslo.utils-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd oslo.utils-$pkgver
-  stestr run
-}
-
-package() {
-  cd oslo.utils-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslo-utils/repos/community-any/PKGBUILD (from rev 612501, 
python-oslo-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-07 22:01:18 UTC (rev 612502)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgname=python-oslo-utils
+pkgver=4.1.1
+pkgrel=1
+pkgdesc="Oslo Utility library"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
+license=('Apache')
+depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
+ 'python-netaddr' 'python-netifaces' 'python-debtcollector')
+makedepends=('python-setuptools')
+checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
+oslo-utils-py38.patch)
+sha512sums=('f9c48fe72c167b2297a0ee1a6979ff18c48d0c65aa44f4ea85a41a611f492e74ad043fa0b5e987761903760364ed5e25dbd36ee826244ce0ebe8bf0db607'
+
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a')
+
+export PBR_VERSION=$pkgver
+
+prepare() {
+  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
+}
+
+build() {
+  cd oslo.utils-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd oslo.utils-$pkgver
+  stestr run
+}
+
+package() {
+  cd oslo.utils-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: oslo-utils-py38.patch
===
--- oslo-utils-py38.patch   2020-04-07 22:00:57 UTC (rev 612501)
+++ oslo-utils-py38.patch   2020-04-07 22:01:18 UTC (rev 612502)
@@ -1,58 +0,0 @@
-Description: non-strict callback comparison is not possible in py3.8
-Author: Dimitri John Ledkov 
-Bug-Python: https://bugs.python.org/issue1617161
-Bug-LP: 
https://bugs.launchpad.net/ubuntu/+source/python-oslo.utils/+bug/1841072
-
-Index: python-oslo.utils-3.41.1/oslo_utils/reflection.py
-===
 python-oslo.utils-3.41.1.orig/oslo_utils/reflection.py
-+++ python-oslo.utils-3.41.1/oslo_utils/reflection.py
-@@ -22,6 +22,8 @@ Reflection module.
- 
- import inspect
- import types
-+import platform
-+import warnings
- 
- import six
- 
-@@ -169,7 +171,10 @@ def 

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

2020-03-11 Thread Felix Yan via arch-commits
Date: Wednesday, March 11, 2020 @ 19:03:13
  Author: felixonmars
Revision: 594595

archrelease: copy trunk to community-any

Added:
  python-oslo-utils/repos/community-any/PKGBUILD
(from rev 594593, python-oslo-utils/trunk/PKGBUILD)
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch
(from rev 594593, python-oslo-utils/trunk/oslo-utils-py38.patch)
Deleted:
  python-oslo-utils/repos/community-any/PKGBUILD
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch

---+
 PKGBUILD  |   85 ++-
 oslo-utils-py38.patch |  116 
 2 files changed, 102 insertions(+), 99 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-11 19:03:09 UTC (rev 594594)
+++ PKGBUILD2020-03-11 19:03:13 UTC (rev 594595)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgname=python-oslo-utils
-pkgver=4.0.1
-pkgrel=1
-pkgdesc="Oslo Utility library"
-arch=('any')
-url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
-license=('Apache')
-depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
- 'python-netaddr' 'python-netifaces' 'python-debtcollector')
-makedepends=('python-setuptools')
-checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
-oslo-utils-py38.patch)
-sha512sums=('1b97c0738826a127c7cca13a545d6bdfe6e773024b274b2f8dde38373d188d9b4e75332633e60f261df8ae18f0572dd5b5a90b29de32c98fc8b15bff379916ff'
-
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a')
-
-export PBR_VERSION=$pkgver
-
-prepare() {
-  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
-}
-
-build() {
-  cd oslo.utils-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd oslo.utils-$pkgver
-  stestr run
-}
-
-package() {
-  cd oslo.utils-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslo-utils/repos/community-any/PKGBUILD (from rev 594593, 
python-oslo-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-11 19:03:13 UTC (rev 594595)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgname=python-oslo-utils
+pkgver=4.1.0
+pkgrel=1
+pkgdesc="Oslo Utility library"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
+license=('Apache')
+depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
+ 'python-netaddr' 'python-netifaces' 'python-debtcollector')
+makedepends=('python-setuptools')
+checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
+oslo-utils-py38.patch
+
oslo-utils-oslotest4.patch::https://github.com/openstack/oslo.utils/commit/a830a6b8a18172ec22b343ffd9734355260e48e5.patch)
+sha512sums=('6fa8fdf690fc42d6183912f822d80faed04e2877cc32ad730c75fd7e2fcc0b11476d5fb9cd5fac8411aa2afb78c558eaa57c721e1b940bfecae9759b4f89a2d9'
+
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a'
+
'adb6ec0951bdb6043c3369b2886506dc1ed6216062a537bbb456324467b7a6da069b61dcf6146944f454ff56115cd125c3bd6aa7ecd13f4aaab1991d7c5b8c8d')
+
+export PBR_VERSION=$pkgver
+
+prepare() {
+  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
+  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-oslotest4.patch
+}
+
+build() {
+  cd oslo.utils-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd oslo.utils-$pkgver
+  stestr run
+}
+
+package() {
+  cd oslo.utils-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: oslo-utils-py38.patch
===
--- oslo-utils-py38.patch   2020-03-11 19:03:09 UTC (rev 594594)
+++ oslo-utils-py38.patch   2020-03-11 19:03:13 UTC (rev 594595)
@@ -1,58 +0,0 @@
-Description: non-strict callback comparison is not possible in py3.8
-Author: Dimitri John Ledkov 
-Bug-Python: https://bugs.python.org/issue1617161
-Bug-LP: 
https://bugs.launchpad.net/ubuntu/+source/python-oslo.utils/+bug/1841072
-
-Index: python-oslo.utils-3.41.1/oslo_utils/reflection.py
-===
 python-oslo.utils-3.41.1.orig/oslo_utils/reflection.py
-+++ python-oslo.utils-3.41.1/oslo_utils/reflection.py
-@@ -22,6 +22,8 @@ Reflection module.
- 
- import inspect
- import types
-+import platform
-+import warnings
- 
- import six
- 
-@@ -169,7 +171,10 @@ def 

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

2020-02-25 Thread Felix Yan via arch-commits
Date: Tuesday, February 25, 2020 @ 16:38:43
  Author: felixonmars
Revision: 581573

archrelease: copy trunk to community-any

Added:
  python-oslo-utils/repos/community-any/PKGBUILD
(from rev 581571, python-oslo-utils/trunk/PKGBUILD)
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch
(from rev 581571, python-oslo-utils/trunk/oslo-utils-py38.patch)
Deleted:
  python-oslo-utils/repos/community-any/PKGBUILD
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch

---+
 PKGBUILD  |   82 -
 oslo-utils-py38.patch |  116 
 2 files changed, 99 insertions(+), 99 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-25 16:38:41 UTC (rev 581572)
+++ PKGBUILD2020-02-25 16:38:43 UTC (rev 581573)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgname=python-oslo-utils
-pkgver=4.0.0
-pkgrel=3
-pkgdesc="Oslo Utility library"
-arch=('any')
-url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
-license=('Apache')
-depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
- 'python-netaddr' 'python-netifaces' 'python-debtcollector')
-makedepends=('python-setuptools')
-checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
-oslo-utils-py38.patch)
-sha512sums=('c2fd4c36c2ceaca482c8d0c2c12e9bd4e9ec18316bc05e2016d2d877cfe916737b8f47ee91c0b672b27e1813c6782c3b81cafac7d1da41a2d35ff0e7ccc11a56'
-
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a')
-
-export PBR_VERSION=$pkgver
-
-prepare() {
-  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
-}
-
-build() {
-  cd oslo.utils-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd oslo.utils-$pkgver
-  stestr run
-}
-
-package() {
-  cd oslo.utils-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslo-utils/repos/community-any/PKGBUILD (from rev 581571, 
python-oslo-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-25 16:38:43 UTC (rev 581573)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgname=python-oslo-utils
+pkgver=4.0.1
+pkgrel=1
+pkgdesc="Oslo Utility library"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
+license=('Apache')
+depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
+ 'python-netaddr' 'python-netifaces' 'python-debtcollector')
+makedepends=('python-setuptools')
+checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
+oslo-utils-py38.patch)
+sha512sums=('1b97c0738826a127c7cca13a545d6bdfe6e773024b274b2f8dde38373d188d9b4e75332633e60f261df8ae18f0572dd5b5a90b29de32c98fc8b15bff379916ff'
+
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a')
+
+export PBR_VERSION=$pkgver
+
+prepare() {
+  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
+}
+
+build() {
+  cd oslo.utils-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd oslo.utils-$pkgver
+  stestr run
+}
+
+package() {
+  cd oslo.utils-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: oslo-utils-py38.patch
===
--- oslo-utils-py38.patch   2020-02-25 16:38:41 UTC (rev 581572)
+++ oslo-utils-py38.patch   2020-02-25 16:38:43 UTC (rev 581573)
@@ -1,58 +0,0 @@
-Description: non-strict callback comparison is not possible in py3.8
-Author: Dimitri John Ledkov 
-Bug-Python: https://bugs.python.org/issue1617161
-Bug-LP: 
https://bugs.launchpad.net/ubuntu/+source/python-oslo.utils/+bug/1841072
-
-Index: python-oslo.utils-3.41.1/oslo_utils/reflection.py
-===
 python-oslo.utils-3.41.1.orig/oslo_utils/reflection.py
-+++ python-oslo.utils-3.41.1/oslo_utils/reflection.py
-@@ -22,6 +22,8 @@ Reflection module.
- 
- import inspect
- import types
-+import platform
-+import warnings
- 
- import six
- 
-@@ -169,7 +171,10 @@ def is_same_callback(callback1, callback
- # This happens when plain methods are given (or static/non-bound
- # methods).
- return True
-+if not strict and platform.python_version() > '3.8':
-+warnings.warn("non strict comparison impossible in py3.8+", 
DeprecationWarning)
- if callback1 == callback2:
-+## 

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

2020-02-13 Thread Felix Yan via arch-commits
Date: Thursday, February 13, 2020 @ 14:03:46
  Author: felixonmars
Revision: 570430

archrelease: copy trunk to community-any

Added:
  python-oslo-utils/repos/community-any/PKGBUILD
(from rev 570429, python-oslo-utils/trunk/PKGBUILD)
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch
(from rev 570429, python-oslo-utils/trunk/oslo-utils-py38.patch)
Deleted:
  python-oslo-utils/repos/community-any/PKGBUILD
  python-oslo-utils/repos/community-any/oslo-utils-py38.patch

---+
 PKGBUILD  |  100 -
 oslo-utils-py38.patch |  116 
 2 files changed, 99 insertions(+), 117 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-13 14:03:29 UTC (rev 570429)
+++ PKGBUILD2020-02-13 14:03:46 UTC (rev 570430)
@@ -1,59 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgbase=python-oslo-utils
-pkgname=(python-oslo-utils python2-oslo-utils)
-pkgver=4.0.0
-pkgrel=2
-pkgdesc="Oslo Utility library"
-arch=('any')
-url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python2-funcsigs'
- 'python-iso8601' 'python2-iso8601' 'python-oslo-i18n' 
'python2-oslo-i18n'
- 'python2-monotonic' 'python-pytz' 'python2-pytz' 'python-netaddr' 
'python2-netaddr'
- 'python-netifaces' 'python2-netifaces' 'python-debtcollector' 
'python2-debtcollector')
-checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
-oslo-utils-py38.patch)
-sha512sums=('c2fd4c36c2ceaca482c8d0c2c12e9bd4e9ec18316bc05e2016d2d877cfe916737b8f47ee91c0b672b27e1813c6782c3b81cafac7d1da41a2d35ff0e7ccc11a56'
-
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a')
-
-export PBR_VERSION=$pkgver
-
-prepare() {
-  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
-  cp -a oslo.utils-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/oslo.utils-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/oslo.utils-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd oslo.utils-$pkgver
-  stestr run
-}
-
-package_python-oslo-utils() {
-  depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
-   'python-netaddr' 'python-netifaces' 'python-debtcollector')
-
-  cd "$srcdir"/oslo.utils-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python2-oslo-utils() {
-  depends=('python2-six' 'python2-pbr' 'python2-iso8601' 'python2-oslo-i18n' 
'python2-monotonic'
-   'python2-pytz' 'python2-netaddr' 'python2-netifaces' 
'python2-debtcollector'
-   'python2-funcsigs')
-
-  cd "$srcdir"/oslo.utils-$pkgver-py2
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslo-utils/repos/community-any/PKGBUILD (from rev 570429, 
python-oslo-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-13 14:03:46 UTC (rev 570430)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgname=python-oslo-utils
+pkgver=4.0.0
+pkgrel=3
+pkgdesc="Oslo Utility library"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
+license=('Apache')
+depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
+ 'python-netaddr' 'python-netifaces' 'python-debtcollector')
+makedepends=('python-setuptools')
+checkdepends=('python-oslotest' 'python-ddt' 'python-eventlet')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/oslo.utils/archive/$pkgver.tar.gz;
+oslo-utils-py38.patch)
+sha512sums=('c2fd4c36c2ceaca482c8d0c2c12e9bd4e9ec18316bc05e2016d2d877cfe916737b8f47ee91c0b672b27e1813c6782c3b81cafac7d1da41a2d35ff0e7ccc11a56'
+
'edc9861dfc02b82d0312774f2484bb5853a9e5b2e7de9ee19efbd7e1220be56e52d99abb15f71dba4d764832835371200e8d7cac2d40c0546d5cfc8daf68554a')
+
+export PBR_VERSION=$pkgver
+
+prepare() {
+  patch -d oslo.utils-$pkgver -p1 -i ../oslo-utils-py38.patch
+}
+
+build() {
+  cd oslo.utils-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd oslo.utils-$pkgver
+  stestr run
+}
+
+package() {
+  cd oslo.utils-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: oslo-utils-py38.patch
===
--- oslo-utils-py38.patch   2020-02-13 14:03:29 UTC (rev 570429)
+++ oslo-utils-py38.patch   2020-02-13 14:03:46 UTC (rev 570430)
@@ -1,58 +0,0 @@
-Description: non-strict callback comparison is not possible in