]> git.pld-linux.org Git - packages/python-smmap.git/commitdiff
New auto/th/python-smmap-0.8.2-1
authorArtur Frysiak <artur@frysiak.net>
Thu, 1 Nov 2012 10:59:27 +0000 (11:59 +0100)
committerArtur Frysiak <artur@frysiak.net>
Thu, 1 Nov 2012 10:59:27 +0000 (11:59 +0100)
python-smmap.spec [new file with mode: 0644]

diff --git a/python-smmap.spec b/python-smmap.spec
new file mode 100644 (file)
index 0000000..4d7dc44
--- /dev/null
@@ -0,0 +1,53 @@
+#
+# Conditional build:
+%bcond_without tests   # do not perform "make test"
+
+%define        module  smmap
+Summary:       A pure git implementation of a sliding window memory map manager
+# Name must match the python module/package name (as in 'import' statement)
+Name:          python-%{module}
+Version:       0.8.2
+Release:       1
+License:       BSD
+Group:         Development/Languages/Python
+Source0:       http://pypi.python.org/packages/source/s/smmap/%{module}-%{version}.tar.gz
+# Source0-md5: f5426b7626ddcf5e447253fae0396b0c
+URL:           https://github.com/Byron/smmap
+BuildRequires: python-distribute
+BuildRequires: rpm-pythonprov
+# if py_postclean is used
+BuildRequires: rpmbuild(macros) >= 1.219
+Requires:      python-modules
+BuildArch:     noarch
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+A pure git implementation of a sliding window memory map manager.
+
+%prep
+%setup -q -n %{module}-%{version}
+
+%build
+%{__python} setup.py build
+
+%{?with_tests:%{__python} setup.py test}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__python} setup.py install \
+       --skip-build \
+       --optimize=2 \
+       --root=$RPM_BUILD_ROOT
+
+%{__rm} -r $RPM_BUILD_ROOT%{py_sitescriptdir}/smmap/test
+
+%py_postclean
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%dir %{py_sitescriptdir}/smmap
+%{py_sitescriptdir}/smmap/*.py[co]
+%{py_sitescriptdir}/smmap-*.egg-info
This page took 0.077874 seconds and 4 git commands to generate.