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

Felix Yan felixonmars at gemini.archlinux.org
Thu Dec 2 12:00:11 UTC 2021


    Date: Thursday, December 2, 2021 @ 12:00:11
  Author: felixonmars
Revision: 1061691

archrelease: copy trunk to community-staging-any

Added:
  python-bleach/repos/community-staging-any/PKGBUILD
    (from rev 1061689, python-bleach/trunk/PKGBUILD)
  python-bleach/repos/community-staging-any/pytest5.patch
    (from rev 1061689, python-bleach/trunk/pytest5.patch)
Deleted:
  python-bleach/repos/community-staging-any/PKGBUILD
  python-bleach/repos/community-staging-any/pytest5.patch

---------------+
 PKGBUILD      |   80 ++++++++++++++++++++++++++++----------------------------
 pytest5.patch |   46 ++++++++++++++++----------------
 2 files changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-12-02 12:00:10 UTC (rev 1061690)
+++ PKGBUILD	2021-12-02 12:00:11 UTC (rev 1061691)
@@ -1,40 +0,0 @@
-# Maintainer: Johannes Löthberg <johannes at kyriasis.com>
-
-pkgname=python-bleach
-pkgver=4.1.0
-pkgrel=2
-
-pkgdesc="An easy whitelist-based HTML-sanitizing tool"
-url="https://pypi.org/project/bleach/"
-arch=('any')
-license=('Apache')
-depends=('python-packaging'
-         'python-six'
-         'python-webencodings')
-makedepends=('python'
-             'python-setuptools')
-checkdepends=('python-pytest')
-
-source=(https://pypi.org/packages/source/b/bleach/bleach-$pkgver.tar.gz)
-
-sha256sums=('0900d8b37eba61a802ee40ac0061f8c2b5dee29c1927dd1d233e075ebf5a71da')
-
-prepare() {
-	cd "$srcdir"/bleach-$pkgver
-}
-
-build() {
-	cd "$srcdir"/bleach-$pkgver
-	python setup.py build
-}
-
-# Upstream broke the test suite.
-check() {
-	cd "$srcdir"/bleach-$pkgver
-	python -m pytest
-}
-
-package() {
-	cd "$srcdir"/bleach-$pkgver
-	python setup.py install --skip-build --optimize=1 --root="$pkgdir"
-}

Copied: python-bleach/repos/community-staging-any/PKGBUILD (from rev 1061689, python-bleach/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-12-02 12:00:11 UTC (rev 1061691)
@@ -0,0 +1,40 @@
+# Maintainer: Johannes Löthberg <johannes at kyriasis.com>
+
+pkgname=python-bleach
+pkgver=4.1.0
+pkgrel=3
+
+pkgdesc="An easy whitelist-based HTML-sanitizing tool"
+url="https://pypi.org/project/bleach/"
+arch=('any')
+license=('Apache')
+depends=('python-packaging'
+         'python-six'
+         'python-webencodings')
+makedepends=('python'
+             'python-setuptools')
+checkdepends=('python-pytest')
+
+source=(https://pypi.org/packages/source/b/bleach/bleach-$pkgver.tar.gz)
+
+sha256sums=('0900d8b37eba61a802ee40ac0061f8c2b5dee29c1927dd1d233e075ebf5a71da')
+
+prepare() {
+	cd "$srcdir"/bleach-$pkgver
+}
+
+build() {
+	cd "$srcdir"/bleach-$pkgver
+	python setup.py build
+}
+
+# Upstream broke the test suite.
+check() {
+	cd "$srcdir"/bleach-$pkgver
+	python -m pytest
+}
+
+package() {
+	cd "$srcdir"/bleach-$pkgver
+	python setup.py install --skip-build --optimize=1 --root="$pkgdir"
+}

Deleted: pytest5.patch
===================================================================
--- pytest5.patch	2021-12-02 12:00:10 UTC (rev 1061690)
+++ pytest5.patch	2021-12-02 12:00:11 UTC (rev 1061691)
@@ -1,23 +0,0 @@
-From 9201b4708a90dc1f841285c6ec47814f6ed17495 Mon Sep 17 00:00:00 2001
-From: Emin Mastizada <emin at linux.com>
-Date: Wed, 16 Oct 2019 17:47:27 +0300
-Subject: [PATCH] Support pytest5 syntax for tests
-
-diff --git a/tests/test_clean.py b/tests/test_clean.py
-index e306cc5..d041ffa 100644
---- a/tests/test_clean.py
-+++ b/tests/test_clean.py
-@@ -24,11 +24,11 @@ def test_only_text_is_cleaned():
- 
-     with pytest.raises(TypeError) as e:
-         clean(some_type)
--    assert "argument cannot be of 'type' type" in str(e)
-+    assert "argument cannot be of 'type' type" in str(e.value)
- 
-     with pytest.raises(TypeError) as e:
-         clean(no_type)
--    assert "NoneType" in str(e)
-+    assert "NoneType" in str(e.value)
- 
- 
- def test_empty():

Copied: python-bleach/repos/community-staging-any/pytest5.patch (from rev 1061689, python-bleach/trunk/pytest5.patch)
===================================================================
--- pytest5.patch	                        (rev 0)
+++ pytest5.patch	2021-12-02 12:00:11 UTC (rev 1061691)
@@ -0,0 +1,23 @@
+From 9201b4708a90dc1f841285c6ec47814f6ed17495 Mon Sep 17 00:00:00 2001
+From: Emin Mastizada <emin at linux.com>
+Date: Wed, 16 Oct 2019 17:47:27 +0300
+Subject: [PATCH] Support pytest5 syntax for tests
+
+diff --git a/tests/test_clean.py b/tests/test_clean.py
+index e306cc5..d041ffa 100644
+--- a/tests/test_clean.py
++++ b/tests/test_clean.py
+@@ -24,11 +24,11 @@ def test_only_text_is_cleaned():
+ 
+     with pytest.raises(TypeError) as e:
+         clean(some_type)
+-    assert "argument cannot be of 'type' type" in str(e)
++    assert "argument cannot be of 'type' type" in str(e.value)
+ 
+     with pytest.raises(TypeError) as e:
+         clean(no_type)
+-    assert "NoneType" in str(e)
++    assert "NoneType" in str(e.value)
+ 
+ 
+ def test_empty():



More information about the arch-commits mailing list