commit 5e53c997e7ffdf0f32106c51b4dffab3572094597204de751ee23d652de60680 Author: Tomáš Chvátal Date: Fri Sep 20 10:00:06 2019 +0000 Accepting request 731891 from home:jayvdb:py-new inherits pytest dep from base package OBS-URL: https://build.opensuse.org/request/show/731891 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-listener?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/pytest-listener-1.7.0.tar.gz b/pytest-listener-1.7.0.tar.gz new file mode 100644 index 0000000..e558bd8 --- /dev/null +++ b/pytest-listener-1.7.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5582c34bcbd19143a2df75a9dda5da44a08c48c528276c0a8049a33afbc3baa +size 10509 diff --git a/python-pytest-listener.changes b/python-pytest-listener.changes new file mode 100644 index 0000000..3bdb7e9 --- /dev/null +++ b/python-pytest-listener.changes @@ -0,0 +1,9 @@ +------------------------------------------------------------------- +Wed Sep 18 12:04:27 UTC 2019 - John Vandenberg + +- Update to v1.7.0 + +------------------------------------------------------------------- +Thu Mar 21 01:41:38 AM UTC 2019 - John Vandenberg + +- Initial spec for v1.4.0 diff --git a/python-pytest-listener.spec b/python-pytest-listener.spec new file mode 100644 index 0000000..4126dcd --- /dev/null +++ b/python-pytest-listener.spec @@ -0,0 +1,62 @@ +# +# spec file for package python-pytest-listener +# +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-pytest-listener +Version: 1.7.0 +Release: 0 +Summary: A simple network listener for py.test +License: MIT +Group: Development/Languages/Python +URL: https://github.com/manahl/pytest-plugins +Source: https://files.pythonhosted.org/packages/source/p/pytest-listener/pytest-listener-%{version}.tar.gz +BuildRequires: %{python_module setuptools-git} +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-pytest-server-fixtures +Requires: python-six +BuildArch: noarch +# SECTION test requirements +BuildRequires: %{python_module pytest-server-fixtures} +BuildRequires: %{python_module six} +# /SECTION +%python_subpackages + +%description +A simple network listener for py.test. + +%prep +%setup -q -n pytest-listener-%{version} + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +%python_exec setup.py test + +%files %{python_files} +%doc CHANGES.md README.md +%license LICENSE +%{python_sitelib}/* + +%changelog