]> git.pld-linux.org Git - packages/python-rpdb.git/commitdiff
- initial auto/th/python-rpdb-0.1.3-1
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Sun, 23 Feb 2014 15:57:33 +0000 (16:57 +0100)
committerArkadiusz Miśkiewicz <arekm@maven.pl>
Sun, 23 Feb 2014 15:57:33 +0000 (16:57 +0100)
python-rpdb.spec [new file with mode: 0644]

diff --git a/python-rpdb.spec b/python-rpdb.spec
new file mode 100644 (file)
index 0000000..24426e4
--- /dev/null
@@ -0,0 +1,94 @@
+#
+# Conditional build:
+%bcond_without python2         # Python 2.x module
+%bcond_without python3         # Python 3.x module
+#
+%define        module  rpdb
+#
+Summary:       pdb wrapper with remote access via tcp socket
+Name:          python-rpdb
+Version:       0.1.3
+Release:       1
+License:       ?
+Group:         Development/Languages/Python
+Source0:       https://pypi.python.org/packages/source/r/rpdb/rpdb-%{version}.tar.gz
+# Source0-md5: 4f350f523446a9100395d41b0b05c6cb
+URL:           https://pypi.python.org/pypi/rpdb/
+%if %{with python2}
+BuildRequires: python-devel
+BuildRequires: python-modules
+Requires:      python
+%endif
+%if %{with python3}
+BuildRequires: python3-2to3
+BuildRequires: python3-devel
+BuildRequires: python3-modules
+%endif
+BuildRequires: rpm-pythonprov
+Requires:      python-devel-src
+BuildArch:     noarch
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+A wrapper around pdb that will re-route stdin and stdout to a socket
+handler.
+
+%package -n    python3-%{module}
+Summary:       pdb wrapper with remote access via tcp socket
+Version:       0.1.3
+Release:       1
+Group:         Libraries/Python
+Requires:      python3
+Requires:      python3-devel-tools
+
+%description -n python3-%{module}
+A wrapper around pdb that will re-route stdin and stdout to a socket
+handler.
+
+%prep
+%setup  -q -n %{module}-%{version}
+
+%build
+%if %{with python2}
+%{__python} ./setup.py build --build-base py2
+%endif
+%if %{with python3}
+%{__python3} ./setup.py build --build-base py3
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%if %{with python2}
+%{__python} ./setup.py build \
+       --build-base py2 \
+       install \
+       --optimize 2 \
+       --root=$RPM_BUILD_ROOT
+%endif
+%if %{with python3}
+install -d $RPM_BUILD_ROOT%{_examplesdir}/python3-%{module}-%{version}
+%{__python3} ./setup.py build \
+       --build-base py3 \
+       install \
+       --optimize 2 \
+       --root=$RPM_BUILD_ROOT
+%endif
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%if %{with python2}
+%files
+%defattr(644,root,root,755)
+%doc PKG-INFO
+%{py_sitescriptdir}/%{module}
+%{py_sitescriptdir}/*egg-info
+%endif
+
+%if %{with python3}
+%files -n python3-%{module}
+%defattr(644,root,root,755)
+%doc PKG-INFO
+%{py3_sitescriptdir}/%{module}
+%{py3_sitescriptdir}/*egg-info
+%endif
This page took 0.155865 seconds and 4 git commands to generate.