[python-fixtures] Initial import (#876645)

Pádraig Brady pbrady at fedoraproject.org
Mon Nov 19 09:52:26 UTC 2012


commit 8dae2e5ecad546105d31bce435ec3f9db650e4dc
Author: Pádraig Brady <P at draigBrady.com>
Date:   Mon Nov 19 09:48:33 2012 +0000

    Initial import (#876645)

 .gitignore           |    1 +
 python-fixtures.spec |   56 ++++++++++++++++++++++++++++++++++++++++++++++++++
 sources              |    1 +
 3 files changed, 58 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..6edf2ce 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/fixtures-0.3.9.tar.gz
diff --git a/python-fixtures.spec b/python-fixtures.spec
new file mode 100644
index 0000000..8aca046
--- /dev/null
+++ b/python-fixtures.spec
@@ -0,0 +1,56 @@
+# Created by pyp2rpm-0.5.2
+%global pypi_name fixtures
+
+Name:           python-%{pypi_name}
+Version:        0.3.9
+Release:        4%{?dist}
+Summary:        Fixtures, reusable state for writing clean tests and more
+
+License:        ASL 2.0 or BSD
+URL:            https://launchpad.net/python-fixtures
+Source0:        http://pypi.python.org/packages/source/f/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
+BuildArch:      noarch
+
+BuildRequires:  python2-devel
+
+Requires:       python-testtools
+
+%description
+Fixtures defines a Python contract for reusable state / support logic,
+primarily for unit testing. Helper and adaption logic is included to
+make it easy to write your own fixtures using the fixtures contract.
+Glue code is provided that makes using fixtures that meet the Fixtures
+contract in unittest compatible test cases easy and straight forward.
+
+
+%prep
+%setup -q -n %{pypi_name}-%{version}
+
+
+%build
+%{__python} setup.py build
+
+
+%install
+%{__python} setup.py install --skip-build --root %{buildroot}
+
+
+%files
+%doc README GOALS NEWS Apache-2.0 BSD COPYING
+%{python_sitelib}/%{pypi_name}
+%{python_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
+
+%changelog
+* Fri Nov 16 2012 Pádraig Brady <P at draigBrady.com> - 0.3.9-4
+- Update changelog
+
+* Fri Nov 16 2012 Pádraig Brady <P at draigBrady.com> - 0.3.9-3
+- Fix License:
+
+* Thu Nov 15 2012 Pádraig Brady <P at draigBrady.com> - 0.3.9-2
+- Remove version dependency on python-testtools (assume always >= 0.9.12)
+- BuildRequire python2-devel rather than python-devel
+- Adjust License:
+
+* Wed Nov 14 2012 Pádraig Brady <P at draigBrady.com> - 0.3.9-1
+- Initial package
diff --git a/sources b/sources
index e69de29..5c1fe4e 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+51e99e696aa6d08e214353e5c99303e4  fixtures-0.3.9.tar.gz


More information about the scm-commits mailing list