Date: Sunday, April 9, 2023 @ 16:57:07
Author: felixonmars
Revision: 1443297
archrelease: copy trunk to community-staging-any
Added:
python-pytest-httpbin/repos/community-staging-any/
python-pytest-httpbin/repos/community-staging-any/LICENSE
(from rev 1443296, python-pytest-httpbin/trunk/LICENSE)
python-pytest-httpbin/repos/community-staging-any/PKGBUILD
(from rev 1443296, python-pytest-httpbin/trunk/PKGBUILD)
----------+
LICENSE | 9 +++++++++
PKGBUILD | 37 +++++++++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+)
Copied: python-pytest-httpbin/repos/community-staging-any/LICENSE (from rev
1443296, python-pytest-httpbin/trunk/LICENSE)
===================================================================
--- community-staging-any/LICENSE (rev 0)
+++ community-staging-any/LICENSE 2023-04-09 16:57:07 UTC (rev 1443297)
@@ -0,0 +1,9 @@
+The MIT License (MIT)
+
+Copyright (c) 2014-2015 Kevin McCarthy
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
\ No newline at end of file
Copied: python-pytest-httpbin/repos/community-staging-any/PKGBUILD (from rev
1443296, python-pytest-httpbin/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-09 16:57:07 UTC (rev 1443297)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan <[email protected]>
+
+pkgname=python-pytest-httpbin
+pkgver=1.0.2
+pkgrel=2
+pkgdesc='A py.test fixture for httpbining code'
+arch=('any')
+license=('MIT')
+url='https://github.com/kevin1024/pytest-httpbin'
+depends=('python-pytest' 'python-six' 'httpbin')
+makedepends=('python-setuptools')
+checkdepends=('python-requests')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kevin1024/pytest-httpbin/archive/v$pkgver.tar.gz"
+ LICENSE)
+sha512sums=('b4adac1c37506391d83f7772814b4a9ce5134cc6834d8758e71d39610f8b29e57e72b11b2233be51e41b2c36bc305d40fc4b260a7f83d10390f4e940df8aa366'
+
'949cb93164ce92e0a5acc184cca2da5580e31def2d153771ebfa386030fa2da65bcd48670780096d2cefe3e631dc755fc3024ae417f2d1bb3333bd85a39baf22')
+
+build() {
+ cd pytest-httpbin-$pkgver
+ python setup.py build
+}
+
+check() {
+ # Hack entry points by installing it
+ # https://github.com/kevin1024/pytest-httpbin/issues/64
+
+ cd pytest-httpbin-$pkgver
+ python setup.py install --root="$PWD/tmp_install" --optimize=1
+ local site_packages=$(python -c "import site;
print(site.getsitepackages()[0])")
+ PYTHONPATH="$PWD/tmp_install/$site_packages:$PYTHONPATH" pytest --deselect
tests/test_server.py::test_redirect_location_is_https_for_secure_server
+}
+
+package() {
+ cd pytest-httpbin-$pkgver
+ python setup.py install --root="$pkgdir"/ --optimize=1
+ install -D -m644 ../LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}