From f27af5ead386f1ecd1a8c74180f3f844f1dba8b9 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Fri, 3 Aug 2018 14:36:50 +0000 Subject: i486-specific patches for python modules --- community/python-apipkg/PKGBUILD | 4 ++++ community/python-atomicwrites/PKGBUILD | 4 ++++ community/python-cachecontrol/PKGBUILD | 4 ++++ community/python-distlib/PKGBUILD | 5 +++++ community/python-distro/PKGBUILD | 30 ++++++++++++++++++++++++++++++ community/python-html5lib/PKGBUILD | 4 ++++ community/python-iniconfig/PKGBUILD | 4 ++++ community/python-lockfile/PKGBUILD | 5 +++++ community/python-mock/PKGBUILD | 5 +++++ community/python-msgpack/PKGBUILD | 4 ++++ community/python-pbr/PKGBUILD | 4 ++++ community/python-pluggy/PKGBUILD | 4 ++++ community/python-py/PKGBUILD | 4 ++++ community/python-pytest/PKGBUILD | 5 +++++ community/python-setuptools-scm/PKGBUILD | 4 ++++ community/python-webencodings/PKGBUILD | 4 ++++ community/python2-funcsigs/PKGBUILD | 4 ++++ 17 files changed, 98 insertions(+) create mode 100644 community/python-apipkg/PKGBUILD create mode 100644 community/python-atomicwrites/PKGBUILD create mode 100644 community/python-cachecontrol/PKGBUILD create mode 100644 community/python-distlib/PKGBUILD create mode 100644 community/python-distro/PKGBUILD create mode 100644 community/python-html5lib/PKGBUILD create mode 100644 community/python-iniconfig/PKGBUILD create mode 100644 community/python-lockfile/PKGBUILD create mode 100644 community/python-mock/PKGBUILD create mode 100644 community/python-msgpack/PKGBUILD create mode 100644 community/python-pbr/PKGBUILD create mode 100644 community/python-pluggy/PKGBUILD create mode 100644 community/python-py/PKGBUILD create mode 100644 community/python-pytest/PKGBUILD create mode 100644 community/python-setuptools-scm/PKGBUILD create mode 100644 community/python-webencodings/PKGBUILD create mode 100644 community/python2-funcsigs/PKGBUILD (limited to 'community') diff --git a/community/python-apipkg/PKGBUILD b/community/python-apipkg/PKGBUILD new file mode 100644 index 00000000..ed73f8de --- /dev/null +++ b/community/python-apipkg/PKGBUILD @@ -0,0 +1,4 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + unset check +fi diff --git a/community/python-atomicwrites/PKGBUILD b/community/python-atomicwrites/PKGBUILD new file mode 100644 index 00000000..ed73f8de --- /dev/null +++ b/community/python-atomicwrites/PKGBUILD @@ -0,0 +1,4 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + unset check +fi diff --git a/community/python-cachecontrol/PKGBUILD b/community/python-cachecontrol/PKGBUILD new file mode 100644 index 00000000..ed73f8de --- /dev/null +++ b/community/python-cachecontrol/PKGBUILD @@ -0,0 +1,4 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + unset check +fi diff --git a/community/python-distlib/PKGBUILD b/community/python-distlib/PKGBUILD new file mode 100644 index 00000000..870e034f --- /dev/null +++ b/community/python-distlib/PKGBUILD @@ -0,0 +1,5 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + # currently tests are failing, they are disabled not due to dependencies + unset check +fi diff --git a/community/python-distro/PKGBUILD b/community/python-distro/PKGBUILD new file mode 100644 index 00000000..32d99307 --- /dev/null +++ b/community/python-distro/PKGBUILD @@ -0,0 +1,30 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + # disable sphinx for now, needs too many packages + makedepends=(${makedepends[@]//python-sphinx/}) + makedepends=(${makedepends[@]//python2-sphinx/}) + + eval "$( + declare -f build | \ + sed ' + s/make man SPHINXBUILD=sphinx-build2// + s/make man SPHINXBUILD=sphinx-build// + ' + )" + + eval "$( + declare -f package_python-distro | \ + sed ' + /install.*man.*ld.1/d + ' + )" + + eval "$( + declare -f package_python2-distro | \ + sed ' + /install.*man.*ld.1/d + ' + )" + + unset check +fi diff --git a/community/python-html5lib/PKGBUILD b/community/python-html5lib/PKGBUILD new file mode 100644 index 00000000..ed73f8de --- /dev/null +++ b/community/python-html5lib/PKGBUILD @@ -0,0 +1,4 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + unset check +fi diff --git a/community/python-iniconfig/PKGBUILD b/community/python-iniconfig/PKGBUILD new file mode 100644 index 00000000..ed73f8de --- /dev/null +++ b/community/python-iniconfig/PKGBUILD @@ -0,0 +1,4 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + unset check +fi diff --git a/community/python-lockfile/PKGBUILD b/community/python-lockfile/PKGBUILD new file mode 100644 index 00000000..e50d2ff2 --- /dev/null +++ b/community/python-lockfile/PKGBUILD @@ -0,0 +1,5 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + makedepends+=('python-pbr' 'python2-pbr') + unset check +fi diff --git a/community/python-mock/PKGBUILD b/community/python-mock/PKGBUILD new file mode 100644 index 00000000..e50d2ff2 --- /dev/null +++ b/community/python-mock/PKGBUILD @@ -0,0 +1,5 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + makedepends+=('python-pbr' 'python2-pbr') + unset check +fi diff --git a/community/python-msgpack/PKGBUILD b/community/python-msgpack/PKGBUILD new file mode 100644 index 00000000..ed73f8de --- /dev/null +++ b/community/python-msgpack/PKGBUILD @@ -0,0 +1,4 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + unset check +fi diff --git a/community/python-pbr/PKGBUILD b/community/python-pbr/PKGBUILD new file mode 100644 index 00000000..ed73f8de --- /dev/null +++ b/community/python-pbr/PKGBUILD @@ -0,0 +1,4 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + unset check +fi diff --git a/community/python-pluggy/PKGBUILD b/community/python-pluggy/PKGBUILD new file mode 100644 index 00000000..ed73f8de --- /dev/null +++ b/community/python-pluggy/PKGBUILD @@ -0,0 +1,4 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + unset check +fi diff --git a/community/python-py/PKGBUILD b/community/python-py/PKGBUILD new file mode 100644 index 00000000..ed73f8de --- /dev/null +++ b/community/python-py/PKGBUILD @@ -0,0 +1,4 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + unset check +fi diff --git a/community/python-pytest/PKGBUILD b/community/python-pytest/PKGBUILD new file mode 100644 index 00000000..6c63d86f --- /dev/null +++ b/community/python-pytest/PKGBUILD @@ -0,0 +1,5 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + makedepends+=('python-setuptools-scm' 'python2-setuptools-scm') + unset check +fi diff --git a/community/python-setuptools-scm/PKGBUILD b/community/python-setuptools-scm/PKGBUILD new file mode 100644 index 00000000..ed73f8de --- /dev/null +++ b/community/python-setuptools-scm/PKGBUILD @@ -0,0 +1,4 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + unset check +fi diff --git a/community/python-webencodings/PKGBUILD b/community/python-webencodings/PKGBUILD new file mode 100644 index 00000000..ed73f8de --- /dev/null +++ b/community/python-webencodings/PKGBUILD @@ -0,0 +1,4 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + unset check +fi diff --git a/community/python2-funcsigs/PKGBUILD b/community/python2-funcsigs/PKGBUILD new file mode 100644 index 00000000..ed73f8de --- /dev/null +++ b/community/python2-funcsigs/PKGBUILD @@ -0,0 +1,4 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + unset check +fi -- cgit v1.2.3-54-g00ecf