[arch-commits] Commit in (9 files)

Daniel M. Capella polyzen at archlinux.org
Fri Apr 16 04:20:15 UTC 2021


    Date: Friday, April 16, 2021 @ 04:20:15
  Author: polyzen
Revision: 919272

rebuilderd runs check() now, remove workaround

Modified:
  python-sphinx-autoapi/trunk/PKGBUILD
  python-sphinx/trunk/PKGBUILD
  python-sphinxcontrib-applehelp/trunk/PKGBUILD
  python-sphinxcontrib-devhelp/trunk/PKGBUILD
  python-sphinxcontrib-htmlhelp/trunk/PKGBUILD
  python-sphinxcontrib-jsmath/trunk/PKGBUILD
  python-sphinxcontrib-qthelp/trunk/PKGBUILD
  python-sphinxcontrib-serializinghtml/trunk/PKGBUILD
  urlwatch/trunk/PKGBUILD

-----------------------------------------------------+
 python-sphinx-autoapi/trunk/PKGBUILD                |    5 +----
 python-sphinx/trunk/PKGBUILD                        |    5 +----
 python-sphinxcontrib-applehelp/trunk/PKGBUILD       |    5 +----
 python-sphinxcontrib-devhelp/trunk/PKGBUILD         |    5 +----
 python-sphinxcontrib-htmlhelp/trunk/PKGBUILD        |    5 +----
 python-sphinxcontrib-jsmath/trunk/PKGBUILD          |    5 +----
 python-sphinxcontrib-qthelp/trunk/PKGBUILD          |    5 +----
 python-sphinxcontrib-serializinghtml/trunk/PKGBUILD |    5 +----
 urlwatch/trunk/PKGBUILD                             |    5 +----
 9 files changed, 9 insertions(+), 36 deletions(-)

Modified: python-sphinx/trunk/PKGBUILD
===================================================================
--- python-sphinx/trunk/PKGBUILD	2021-04-16 04:01:19 UTC (rev 919271)
+++ python-sphinx/trunk/PKGBUILD	2021-04-16 04:20:15 UTC (rev 919272)
@@ -6,7 +6,7 @@
 
 pkgname=python-sphinx
 pkgver=3.5.4
-pkgrel=1
+pkgrel=2
 pkgdesc='Python documentation generator'
 arch=('any')
 url=http://www.sphinx-doc.org/
@@ -44,9 +44,6 @@
 check() {
   cd Sphinx-$pkgver
   LC_ALL="en_US.UTF-8" make test
-
-  # Remove created cache files for reproduciblity with rebuilderd
-  find tests -type d -name __pycache__ -exec rm -r {} +
 }
 
 package() {

Modified: python-sphinx-autoapi/trunk/PKGBUILD
===================================================================
--- python-sphinx-autoapi/trunk/PKGBUILD	2021-04-16 04:01:19 UTC (rev 919271)
+++ python-sphinx-autoapi/trunk/PKGBUILD	2021-04-16 04:20:15 UTC (rev 919272)
@@ -4,7 +4,7 @@
 _name=sphinx-autoapi
 pkgname=python-sphinx-autoapi
 pkgver=1.7.0
-pkgrel=3
+pkgrel=4
 pkgdesc="A new approach to API documentation in Sphinx."
 arch=('any')
 url="https://github.com/readthedocs/sphinx-autoapi"
@@ -32,9 +32,6 @@
   cd "$pkgname-$pkgver"
   export PYTHONPATH="build:${PYTHONPATH}"
   pytest -v
-
-  # Remove created cache files for reproduciblity with rebuilderd
-  rm -r tests{,/python}/__pycache__
 }
 
 package() {

Modified: python-sphinxcontrib-applehelp/trunk/PKGBUILD
===================================================================
--- python-sphinxcontrib-applehelp/trunk/PKGBUILD	2021-04-16 04:01:19 UTC (rev 919271)
+++ python-sphinxcontrib-applehelp/trunk/PKGBUILD	2021-04-16 04:20:15 UTC (rev 919272)
@@ -3,7 +3,7 @@
 _name=sphinxcontrib-applehelp
 pkgname=python-sphinxcontrib-applehelp
 pkgver=1.0.2
-pkgrel=5
+pkgrel=6
 pkgdesc='Sphinx extension which outputs Apple help books'
 arch=('any')
 url=https://github.com/sphinx-doc/sphinxcontrib-applehelp
@@ -21,9 +21,6 @@
 check() {
   cd $_name-$pkgver
   pytest
-
-  # Remove created cache files for reproduciblity with rebuilderd
-  rm -r tests/__pycache__
 }
 
 package() {

Modified: python-sphinxcontrib-devhelp/trunk/PKGBUILD
===================================================================
--- python-sphinxcontrib-devhelp/trunk/PKGBUILD	2021-04-16 04:01:19 UTC (rev 919271)
+++ python-sphinxcontrib-devhelp/trunk/PKGBUILD	2021-04-16 04:20:15 UTC (rev 919272)
@@ -3,7 +3,7 @@
 _name=sphinxcontrib-devhelp
 pkgname=python-sphinxcontrib-devhelp
 pkgver=1.0.2
-pkgrel=5
+pkgrel=6
 pkgdesc='Sphinx extension which outputs Devhelp document'
 arch=('any')
 url=https://github.com/sphinx-doc/sphinxcontrib-devhelp
@@ -21,9 +21,6 @@
 check() {
   cd $_name-$pkgver
   pytest
-
-  # Remove created cache files for reproduciblity with rebuilderd
-  rm -r tests/__pycache__
 }
 
 package() {

Modified: python-sphinxcontrib-htmlhelp/trunk/PKGBUILD
===================================================================
--- python-sphinxcontrib-htmlhelp/trunk/PKGBUILD	2021-04-16 04:01:19 UTC (rev 919271)
+++ python-sphinxcontrib-htmlhelp/trunk/PKGBUILD	2021-04-16 04:20:15 UTC (rev 919272)
@@ -3,7 +3,7 @@
 _name=sphinxcontrib-htmlhelp
 pkgname=python-sphinxcontrib-htmlhelp
 pkgver=1.0.3
-pkgrel=5
+pkgrel=6
 pkgdesc='Sphinx extension which renders HTML help files'
 arch=('any')
 url=https://github.com/sphinx-doc/sphinxcontrib-htmlhelp
@@ -21,9 +21,6 @@
 check() {
   cd $_name-$pkgver
   pytest
-
-  # Remove created cache files for reproduciblity with rebuilderd
-  rm -r tests/__pycache__
 }
 
 package() {

Modified: python-sphinxcontrib-jsmath/trunk/PKGBUILD
===================================================================
--- python-sphinxcontrib-jsmath/trunk/PKGBUILD	2021-04-16 04:01:19 UTC (rev 919271)
+++ python-sphinxcontrib-jsmath/trunk/PKGBUILD	2021-04-16 04:20:15 UTC (rev 919272)
@@ -3,7 +3,7 @@
 _name=sphinxcontrib-jsmath
 pkgname=python-sphinxcontrib-jsmath
 pkgver=1.0.1
-pkgrel=8
+pkgrel=9
 pkgdesc='Sphinx extension which renders display math in HTML via JavaScript'
 arch=('any')
 url=https://github.com/sphinx-doc/sphinxcontrib-jsmath
@@ -21,9 +21,6 @@
 check() {
   cd $_name-$pkgver
   pytest
-
-  # Remove created cache files for reproduciblity with rebuilderd
-  rm -r tests/__pycache__
 }
 
 package() {

Modified: python-sphinxcontrib-qthelp/trunk/PKGBUILD
===================================================================
--- python-sphinxcontrib-qthelp/trunk/PKGBUILD	2021-04-16 04:01:19 UTC (rev 919271)
+++ python-sphinxcontrib-qthelp/trunk/PKGBUILD	2021-04-16 04:20:15 UTC (rev 919272)
@@ -3,7 +3,7 @@
 _name=sphinxcontrib-qthelp
 pkgname=python-sphinxcontrib-qthelp
 pkgver=1.0.3
-pkgrel=5
+pkgrel=6
 pkgdesc='Sphinx extension which outputs QtHelp document'
 arch=('any')
 url=https://github.com/sphinx-doc/sphinxcontrib-qthelp
@@ -21,9 +21,6 @@
 check() {
   cd $_name-$pkgver
   pytest
-
-  # Remove created cache files for reproduciblity with rebuilderd
-  rm -r tests/__pycache__
 }
 
 package() {

Modified: python-sphinxcontrib-serializinghtml/trunk/PKGBUILD
===================================================================
--- python-sphinxcontrib-serializinghtml/trunk/PKGBUILD	2021-04-16 04:01:19 UTC (rev 919271)
+++ python-sphinxcontrib-serializinghtml/trunk/PKGBUILD	2021-04-16 04:20:15 UTC (rev 919272)
@@ -3,7 +3,7 @@
 _name=sphinxcontrib-serializinghtml
 pkgname=python-sphinxcontrib-serializinghtml
 pkgver=1.1.4
-pkgrel=5
+pkgrel=6
 pkgdesc='Sphinx extension which outputs "serialized" HTML files (json and pickle)'
 arch=('any')
 url=https://github.com/sphinx-doc/sphinxcontrib-serializinghtml
@@ -21,9 +21,6 @@
 check() {
   cd $_name-$pkgver
   pytest
-
-  # Remove created cache files for reproduciblity with rebuilderd
-  rm -r tests/__pycache__
 }
 
 package() {

Modified: urlwatch/trunk/PKGBUILD
===================================================================
--- urlwatch/trunk/PKGBUILD	2021-04-16 04:01:19 UTC (rev 919271)
+++ urlwatch/trunk/PKGBUILD	2021-04-16 04:20:15 UTC (rev 919272)
@@ -6,7 +6,7 @@
 
 pkgname=urlwatch
 pkgver=2.23
-pkgrel=1
+pkgrel=2
 pkgdesc='Tool for monitoring webpages for updates'
 arch=('any')
 url=https://thp.io/2008/urlwatch/
@@ -37,9 +37,6 @@
 check() {
   cd $pkgname-$pkgver
   pytest
-
-  # Remove created cache files for reproduciblity with rebuilderd
-  rm -r {lib/urlwatch/tests,share/urlwatch/examples}/__pycache__
 }
 
 package() {



More information about the arch-commits mailing list