[python-testrepository] initial import (#913200)

Pádraig Brady pbrady at fedoraproject.org
Wed Jun 5 12:27:06 UTC 2013


commit 9d2a737218e5a9f1209700a2f22e84175b65b869
Author: Pádraig Brady <P at draigBrady.com>
Date:   Wed Jun 5 13:26:23 2013 +0100

    initial import (#913200)

 .gitignore                 |    1 +
 python-testrepository.spec |   66 ++++++++++++++++++++++++++++++++++++++++++++
 sources                    |    1 +
 3 files changed, 68 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..62d1e79 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/testrepository-0.0.15.tar.gz
diff --git a/python-testrepository.spec b/python-testrepository.spec
new file mode 100644
index 0000000..f70181c
--- /dev/null
+++ b/python-testrepository.spec
@@ -0,0 +1,66 @@
+# Created by pyp2rpm-1.0.1
+%global pypi_name testrepository
+
+Name:           python-%{pypi_name}
+Version:        0.0.15
+Release:        4%{?dist}
+Summary:        A repository of test results
+
+License:        ASL 2.0
+URL:            https://launchpad.net/testrepository
+Source0:        http://pypi.python.org/packages/source/t/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
+BuildArch:      noarch
+
+BuildRequires:  python2-devel
+BuildRequires:  python-setuptools
+BuildRequires:  python-fixtures
+buildRequires:  python-subunit
+BuildRequires:  python-testtools
+BuildRequires:  python-extras
+
+Requires:       python-fixtures
+Requires:       python-subunit
+Requires:       python-testtools
+Requires:       python-extras
+
+%description
+Provides a database of test results which can be used to
+support easy developer workflows, supporting functionality
+like isolating failing tests. Testrepository is compatible
+with any test suite that can output subunit. This includes any
+TAP test suite and any pyunit compatible test suite.
+
+
+%prep
+%setup -q -n %{pypi_name}-%{version}
+# Remove bundled egg-info
+rm -rf %{pypi_name}.egg-info
+
+
+%build
+%{__python} setup.py build
+
+
+%install
+%{__python} setup.py install --skip-build --root %{buildroot}
+
+
+%check
+%{__python} setup.py test
+
+
+%files
+%doc README.txt Apache-2.0
+%{_bindir}/testr
+%{python_sitelib}/%{pypi_name}
+%{python_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
+
+%changelog
+* Thu May 30 2013 Pádraig Brady <P at draigBrady.com> - 0.0.15-4
+- Update to 0.0.15
+
+* Wed Feb 20 2013 Pádraig Brady <P at draigBrady.com> - 0.0.14-1
+- Update to 0.0.14
+
+* Thu Jan 03 2013 Pádraig Brady <P at draigBrady.com> - 0.0.11-1
+- Initial package.
diff --git a/sources b/sources
index e69de29..16f797f 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+2a2c67918abc7ac53f68197032928192  testrepository-0.0.15.tar.gz


More information about the scm-commits mailing list