diff --git a/README.md b/README.md index 13aff0a..885b238 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-cssselect +cssselect parses CSS3 Selectors and translates them to XPath 1.0. + diff --git a/python-cssselect.spec b/python-cssselect.spec new file mode 100644 index 0000000..5ea0cce --- /dev/null +++ b/python-cssselect.spec @@ -0,0 +1,63 @@ +Name: python-cssselect +Version: 0.9.1 +Release: 1mamba +Summary: cssselect parses CSS3 Selectors and translates them to XPath 1.0 +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://pypi.python.org/pypi/cssselect +Source: http://pypi.python.org/packages/source/c/cssselect/cssselect-%{version}.tar.gz +License: BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +BuildRequires: libpython-devel +Requires: python >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%prep +%setup -q -n cssselect-%{version} + +%build +CFLAGS="%{optflags}" %{__python} setup.py build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} setup.py install \ + -O1 --skip-build \ + --root="%{buildroot}" \ + --install-headers=%{_includedir}/python \ + --install-lib=%{python_sitearch} \ + --single-version-externally-managed \ + --record=%{name}.filelist + +sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist + +%files -f %{name}.filelist +%defattr(-,root,root) +## note: this list is just an example; modify as required +# %{python_sitearch}/%{name}.py* +# %{python_sitearch}/%{name}.so +%doc AUTHORS LICENSE +## note: eventually add the remaining documents (if any) +# %doc CHANGES README.rst + +%changelog +* Thu Nov 21 2013 Automatic Build System 0.9.1-1mamba +- automatic version update by autodist + +* Tue Oct 15 2013 Automatic Build System 0.9-1mamba +- automatic update by autodist + +* Fri May 17 2013 Silvan Calarco 0.8-2mamba +- python 2.7 mass rebuild + +* Tue Mar 19 2013 Automatic Build System 0.8-1mamba +- automatic version update by autodist + +* Sun Dec 23 2012 Silvan Calarco 0.7.1-1mamba +- package created by silvan using the webbuild interface