[arch-commits] Commit in python-intervals/repos/community-staging-any (4 files)
Evangelos Foutras
foutrelis at archlinux.org
Wed Nov 11 15:16:35 UTC 2020
Date: Wednesday, November 11, 2020 @ 15:16:35
Author: foutrelis
Revision: 751044
archrelease: copy trunk to community-staging-any
Added:
python-intervals/repos/community-staging-any/PKGBUILD
(from rev 751043, python-intervals/trunk/PKGBUILD)
python-intervals/repos/community-staging-any/pytest5.patch
(from rev 751043, python-intervals/trunk/pytest5.patch)
Deleted:
python-intervals/repos/community-staging-any/PKGBUILD
python-intervals/repos/community-staging-any/pytest5.patch
---------------+
PKGBUILD | 76 ++++++++++++++++++++++++++++----------------------------
pytest5.patch | 42 +++++++++++++++---------------
2 files changed, 59 insertions(+), 59 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2020-11-11 15:16:32 UTC (rev 751043)
+++ PKGBUILD 2020-11-11 15:16:35 UTC (rev 751044)
@@ -1,38 +0,0 @@
-# Maintainer: Jelle van der Waa <jelle at archlinux.org>
-# Contributor: Husam Bilal <husam212 AT gmail DOT com>
-
-_name=intervals
-pkgname="python-${_name}"
-pkgver=0.8.1
-pkgrel=4
-pkgdesc='Python tools for handling intervals (ranges of comparable objects).'
-url='https://github.com/kvesteri/intervals'
-depends=('python' 'python-infinity')
-checkdepends=('python-pytest')
-makedepends=('python' 'python-setuptools')
-license=('BSD')
-arch=('any')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz"
- 'pytest5.patch')
-sha512sums=('f97142d5f1c8d4da21692b856803481878ac2b2afc3b81937de456bacbf66ebb129b1fe9a070ac442cbc6bbe26fdaf2ed839f8fc8b26392b4bd1ce032d054e65'
- 'af545bec7d8157259197e045396d69ac1791b5e0420056fca69bea444cceacaa208ae568fd80792f614e1c775611ea22c48521bdd47dbdd976a699c150835f96')
-
-prepare() {
- cd "${srcdir}/${_name}-${pkgver}"
- patch -Np1 -i ../pytest5.patch
-}
-build() {
- cd "${srcdir}/${_name}-${pkgver}"
- python setup.py build
-}
-
-check() {
- cd "${srcdir}/${_name}-${pkgver}"
- py.test
-}
-
-package() {
- cd "${srcdir}/${_name}-${pkgver}"
- python setup.py install --root="${pkgdir}/" --optimize=1
- install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
Copied: python-intervals/repos/community-staging-any/PKGBUILD (from rev 751043, python-intervals/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2020-11-11 15:16:35 UTC (rev 751044)
@@ -0,0 +1,38 @@
+# Maintainer: Jelle van der Waa <jelle at archlinux.org>
+# Contributor: Husam Bilal <husam212 AT gmail DOT com>
+
+_name=intervals
+pkgname="python-${_name}"
+pkgver=0.8.1
+pkgrel=5
+pkgdesc='Python tools for handling intervals (ranges of comparable objects).'
+url='https://github.com/kvesteri/intervals'
+depends=('python' 'python-infinity')
+checkdepends=('python-pytest')
+makedepends=('python' 'python-setuptools')
+license=('BSD')
+arch=('any')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz"
+ 'pytest5.patch')
+sha512sums=('f97142d5f1c8d4da21692b856803481878ac2b2afc3b81937de456bacbf66ebb129b1fe9a070ac442cbc6bbe26fdaf2ed839f8fc8b26392b4bd1ce032d054e65'
+ 'af545bec7d8157259197e045396d69ac1791b5e0420056fca69bea444cceacaa208ae568fd80792f614e1c775611ea22c48521bdd47dbdd976a699c150835f96')
+
+prepare() {
+ cd "${srcdir}/${_name}-${pkgver}"
+ patch -Np1 -i ../pytest5.patch
+}
+build() {
+ cd "${srcdir}/${_name}-${pkgver}"
+ python setup.py build
+}
+
+check() {
+ cd "${srcdir}/${_name}-${pkgver}"
+ py.test
+}
+
+package() {
+ cd "${srcdir}/${_name}-${pkgver}"
+ python setup.py install --root="${pkgdir}/" --optimize=1
+ install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
Deleted: pytest5.patch
===================================================================
--- pytest5.patch 2020-11-11 15:16:32 UTC (rev 751043)
+++ pytest5.patch 2020-11-11 15:16:35 UTC (rev 751044)
@@ -1,21 +0,0 @@
-diff -upr intervals-0.8.1.orig/tests/interval/test_initialization.py intervals-0.8.1/tests/interval/test_initialization.py
---- intervals-0.8.1.orig/tests/interval/test_initialization.py 2016-07-10 21:14:03.000000000 +0300
-+++ intervals-0.8.1/tests/interval/test_initialization.py 2019-11-01 17:26:19.862962549 +0200
-@@ -23,7 +23,7 @@ class TestIntervalInit(object):
- 'First argument should be a list or tuple. If you wish to '
- 'initialize an interval from string, use from_string factory '
- 'method.'
-- ) in str(e)
-+ ) in str(e.value)
-
- def test_invalid_argument(self):
- with raises(IllegalArgument) as e:
-@@ -31,7 +31,7 @@ class TestIntervalInit(object):
- assert (
- 'The bounds may be equal only if at least one of the bounds is '
- 'closed.'
-- ) in str(e)
-+ ) in str(e.value)
-
- def test_floats(self):
- interval = FloatInterval((0.2, 0.5))
Copied: python-intervals/repos/community-staging-any/pytest5.patch (from rev 751043, python-intervals/trunk/pytest5.patch)
===================================================================
--- pytest5.patch (rev 0)
+++ pytest5.patch 2020-11-11 15:16:35 UTC (rev 751044)
@@ -0,0 +1,21 @@
+diff -upr intervals-0.8.1.orig/tests/interval/test_initialization.py intervals-0.8.1/tests/interval/test_initialization.py
+--- intervals-0.8.1.orig/tests/interval/test_initialization.py 2016-07-10 21:14:03.000000000 +0300
++++ intervals-0.8.1/tests/interval/test_initialization.py 2019-11-01 17:26:19.862962549 +0200
+@@ -23,7 +23,7 @@ class TestIntervalInit(object):
+ 'First argument should be a list or tuple. If you wish to '
+ 'initialize an interval from string, use from_string factory '
+ 'method.'
+- ) in str(e)
++ ) in str(e.value)
+
+ def test_invalid_argument(self):
+ with raises(IllegalArgument) as e:
+@@ -31,7 +31,7 @@ class TestIntervalInit(object):
+ assert (
+ 'The bounds may be equal only if at least one of the bounds is '
+ 'closed.'
+- ) in str(e)
++ ) in str(e.value)
+
+ def test_floats(self):
+ interval = FloatInterval((0.2, 0.5))
More information about the arch-commits
mailing list