]> git.pld-linux.org Git - packages/python-soaplib.git/commitdiff
- initial.
authorcieciwa <cieciwa@pld-linux.org>
Mon, 4 Jul 2011 14:04:48 +0000 (14:04 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    python-soaplib.spec -> 1.1

python-soaplib.spec [new file with mode: 0644]

diff --git a/python-soaplib.spec b/python-soaplib.spec
new file mode 100644 (file)
index 0000000..56ee464
--- /dev/null
@@ -0,0 +1,58 @@
+# TODO
+# - better group
+
+%define                _rc     beta2
+%define        module  soaplib
+Summary:       A transport and architecture agnostic soap (de)serialization library that focuses on making small, rpc-like messaging work.
+Name:          python-%{module}
+Version:       2.0.0
+Release:       0.1_%{_rc}
+License:       LGPL
+Group:         Development/Languages/Python
+Source0:       http://pypi.python.org/packages/source/s/%{module}/%{module}-%{version}-%{_rc}.tar.gz
+# Source0-md5: 294bc8db05011bfa14e00a6a9368e2ae
+URL:           http://pypi.python.org/pypi/%{module}/%{version}-%{_rc}
+BuildRequires: python-distribute
+BuildRequires: rpm-pythonprov
+BuildRequires: rpmbuild(macros) >= 1.228
+Requires(post,preun):  /sbin/chkconfig
+BuildArch:     noarch
+BuildRoot:     %{tmpdir}/%{name}-%{version}-%{_rc}-root-%(id -u -n)
+
+%description
+This is a simple, easily extendible soap library that provides several useful
+tools for creating and publishing soap web services in python.  This package
+features on-demand wsdl generation for the published services, a
+wsgi-compliant web application, support for complex class structures, binary
+attachments, and a simple framework for creating additional serialization 
+mechanisms.
+    
+This project uses lxml as it's XML API, providing full namespace support.
+        
+%prep
+%setup -q -n %{module}-%{version}-%{_rc}
+
+%build
+%{__python} setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__python} setup.py install \
+       --skip-build \
+       --optimize=2 \
+       --root=$RPM_BUILD_ROOT
+
+%py_postclean
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc PKG-INFO
+
+%{py_sitescriptdir}/%{module}
+%if "%{py_ver}" > "2.4"
+%{py_sitescriptdir}/%{module}-*.egg-info
+%endif
+%attr(644,root,root) %{py_sitescriptdir}/%{module}-*pth
This page took 0.135982 seconds and 4 git commands to generate.