[python-crank] Initial import

Luke Macken lmacken at fedoraproject.org
Thu Apr 4 17:24:13 UTC 2013


commit c1696c365f6a4ec66e7e047d23edb9cce751b42a
Author: Luke Macken <lmacken at redhat.com>
Date:   Thu Apr 4 13:24:04 2013 -0400

    Initial import

 .gitignore        |    1 +
 python-crank.spec |   50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 sources           |    1 +
 3 files changed, 52 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..1328245 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/crank-0.6.4.tar.gz
diff --git a/python-crank.spec b/python-crank.spec
new file mode 100644
index 0000000..deb608b
--- /dev/null
+++ b/python-crank.spec
@@ -0,0 +1,50 @@
+%global modname crank
+
+Name:               python-crank
+Version:            0.6.4
+Release:            1%{?dist}
+Summary:            Generalization of dispatch mechanism for use across frameworks
+
+Group:              Development/Libraries
+License:            MIT
+URL:                http://pypi.python.org/pypi/crank
+Source0:            http://pypi.python.org/packages/source/c/%{modname}/%{modname}-%{version}.tar.gz
+
+BuildArch:          noarch
+
+BuildRequires:      python2-devel
+
+
+%description
+Generalization of dispatch mechanism for use across frameworks.
+
+
+%prep
+%setup -q -n %{modname}-%{version}
+
+# Remove bundled egg-info in case it exists
+rm -rf %{modname}.egg-info
+
+
+%build
+%{__python} setup.py build
+
+
+%install
+%{__python} setup.py install -O1 --skip-build --root=%{buildroot}
+
+
+# The current upstream tarball doesn't contain the tests
+#%check
+#%{__python} setup.py test
+
+
+%files
+%doc
+%{python_sitelib}/%{modname}/
+%{python_sitelib}/%{modname}-%{version}*
+
+
+%changelog
+* Wed Apr 03 2013 Luke Macken <lmacken at redhat.com> 0.6.4-1
+- Initial package for Fedora
diff --git a/sources b/sources
index e69de29..004a219 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+0daaebe63943da537837973039939de5  crank-0.6.4.tar.gz


More information about the scm-commits mailing list