Bump to python3-pytest-repeat 0.8.0
authorDongHun Kwak <dh0128.kwak@samsung.com>
Mon, 12 Apr 2021 06:19:21 +0000 (15:19 +0900)
committerDongHun Kwak <dh0128.kwak@samsung.com>
Mon, 12 Apr 2021 06:31:07 +0000 (15:31 +0900)
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
packaging/python3-pytest-repeat.manifest [new file with mode: 0644]
packaging/python3-pytest-repeat.spec [new file with mode: 0644]

diff --git a/packaging/python3-pytest-repeat.manifest b/packaging/python3-pytest-repeat.manifest
new file mode 100644 (file)
index 0000000..017d22d
--- /dev/null
@@ -0,0 +1,5 @@
+<manifest>
+ <request>
+    <domain name="_"/>
+ </request>
+</manifest>
diff --git a/packaging/python3-pytest-repeat.spec b/packaging/python3-pytest-repeat.spec
new file mode 100644 (file)
index 0000000..8ec8eb7
--- /dev/null
@@ -0,0 +1,35 @@
+Name:           python3-pytest-repeat
+Version:        0.8.0
+Release:        1
+Summary:        pytest-repeat is a plugin for pytest
+License:        MPL-2.0
+Group:          Development/Languages/Python
+Source:         pytest-repeat-%{version}.tar.gz
+Source1001:     %{name}.manifest
+
+BuildRequires:  pkgconfig(python3)
+BuildRequires:  python3-setuptools
+BuildRequires:  python3-setuptools_scm
+
+BuildArch:      noarch
+
+%description
+pytest-repeat is a plugin for pytest that makes it easy to repeat a single test, or multiple tests, a specific number of times.
+
+
+%prep
+%setup -q -n pytest-repeat-%{version}
+
+%build
+cp %{SOURCE1001} .
+%{_bindir}/python3 setup.py build
+
+%install
+%{_bindir}/python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
+
+%files
+%manifest %{name}.manifest
+%license LICENSE
+%{python3_sitelib}/pytest_repeat.py
+%{python3_sitelib}/__pycache__/*.cpython-*.pyc
+%{python3_sitelib}/pytest_repeat-%{version}-py%{python3_version}.egg-info/*