forked from pool/libxml2
update to 2.9.0 OBS-URL: https://build.opensuse.org/request/show/145538 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libxml2?expand=0&rev=75
91 lines
2.7 KiB
RPMSpec
91 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package python-libxml2
|
|
#
|
|
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: python-libxml2
|
|
Version: 2.9.0
|
|
Release: 0
|
|
Summary: Python Bindings for libxml2
|
|
License: MIT
|
|
Group: Development/Libraries/Python
|
|
Url: http://xmlsoft.org
|
|
Source: ftp://xmlsoft.org/libxml2/libxml2-%{version}.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: libxml2-devel
|
|
BuildRequires: python-devel
|
|
BuildRequires: python-xml
|
|
Requires: libxml2-2 = %{version}
|
|
# Uncomment to save space:
|
|
#NoSource: 0
|
|
Obsoletes: libxml2-python < %{version}
|
|
Provides: libxml2-python = %{version}
|
|
|
|
%description
|
|
The libxml2-python package contains a module that permits applications
|
|
written in the Python programming language to use the interface
|
|
supplied by the libxml2 library to manipulate XML files.
|
|
|
|
This library allows manipulation of XML files. It includes support for
|
|
reading, modifying, and writing XML and HTML files. There is DTD
|
|
support that includes parsing and validation even with complex DTDs,
|
|
either at parse time or later once the document has been modified.
|
|
|
|
%prep
|
|
%setup -q -n libxml2-%{version}
|
|
|
|
%build
|
|
# workaround for bnc#310196
|
|
%ifarch s390 s390x
|
|
export RPM_OPT_FLAGS=${RPM_OPT_FLAGS/-O2/-O1}
|
|
%endif
|
|
export CFLAGS="%{optflags} -fno-strict-aliasing"
|
|
%configure \
|
|
--with-fexceptions \
|
|
--with-history \
|
|
--enable-ipv6 \
|
|
--with-sax1 \
|
|
--with-regexps \
|
|
--with-threads \
|
|
--with-reader \
|
|
--with-http
|
|
|
|
# use libxml2 as built by libxml2 source package
|
|
mkdir .libs
|
|
cp -v %{_libdir}/libxml2.la .
|
|
make -C python %{?_smp_mflags}
|
|
|
|
%install
|
|
make -C python install \
|
|
DESTDIR=%{buildroot} \
|
|
pythondir=%{py_sitedir} \
|
|
PYTHON_SITE_PACKAGES=%{py_sitedir}
|
|
chmod a-x python/tests/*.py
|
|
# Unwanted doc stuff
|
|
rm -fr %{buildroot}%{_datadir}/doc
|
|
rm -f python/tests/Makefile*
|
|
# #223696
|
|
rm -f %{buildroot}%{py_sitedir}/*.{la,a}
|
|
|
|
%files
|
|
%defattr(-, root, root)
|
|
%doc python/TODO
|
|
%doc python/libxml2class.txt
|
|
%doc python/tests
|
|
%{py_sitedir}/*
|
|
|
|
%changelog
|