[arch-commits] Commit in (4 files)

Felix Yan felixonmars at archlinux.org
Thu Dec 24 13:02:52 UTC 2020


    Date: Thursday, December 24, 2020 @ 13:02:52
  Author: felixonmars
Revision: 787204

addpkg: python-pytest-socket 0.3.5-1

Added:
  python-pytest-socket/
  python-pytest-socket/repos/
  python-pytest-socket/trunk/
  python-pytest-socket/trunk/PKGBUILD

----------+
 PKGBUILD |   40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

Added: python-pytest-socket/trunk/PKGBUILD
===================================================================
--- python-pytest-socket/trunk/PKGBUILD	                        (rev 0)
+++ python-pytest-socket/trunk/PKGBUILD	2020-12-24 13:02:52 UTC (rev 787204)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=python-pytest-socket
+pkgver=0.3.5
+pkgrel=1
+pkgdesc='Pytest Plugin to disable socket calls during tests'
+arch=('any')
+license=('MIT')
+url='https://github.com/miketheman/pytest-socket'
+depends=('python-pytest')
+makedepends=('python-dephell')
+checkdepends=('python-pytest-cov' 'python-pytest-flake8' 'python-pytest-httpbin')
+source=("https://github.com/miketheman/pytest-socket/archive/$pkgver/$pkgname-$pkgver.tar.gz")
+sha512sums=('9f62c2cdc07721dc707fb84f736dbdeed8264a775d9b477802295409a2abfafad88ee5bf2bb94a305659e81f80b8d6a0486e589b0a0100ab4523ad6d4c12849a')
+
+prepare() {
+  cd pytest-socket-$pkgver
+  dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+  cd pytest-socket-$pkgver
+  python setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd pytest-socket-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PYTHONPATH" pytest --deselect setup.py
+  }
+
+package() {
+  cd pytest-socket-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list