File dbus-1-python3.spec of Package dbus-1-python
#
# spec file for package dbus-1-python3
#
# Copyright (c) 2013 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/
#
%if 0%{?suse_version} <= 1140
%{!?python3_sitearch: %global python3_sitearch %(python3 -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
%{!?py3_ver: %global py3_ver %(python3 -c "import sys; version=str(sys.version_info[0]) + '.' + str(sys.version_info[1]); print(version)")}
%endif
Name: dbus-1-python3
Version: 1.2.0
Release: 0
Summary: Python bindings for D-Bus
License: MIT
Group: Development/Libraries/Python
Url: http://www.freedesktop.org/wiki/Software/DBusBindings/
Source0: http://dbus.freedesktop.org/releases/dbus-python/dbus-python-%{version}.tar.gz
#BuildRequires: epydoc
BuildRequires: fdupes
BuildRequires: python3-2to3
BuildRequires: python3-devel >= 3.2
%if 0%{?suse_version} && 0%{?suse_version} <= 1140
BuildRequires: docutils
%else
BuildRequires: python3-docutils
%endif
BuildRequires: pkgconfig(dbus-1) >= 1.6.0
BuildRequires: pkgconfig(dbus-glib-1)
Requires: python3-xml
Requires: dbus-1 >= %( echo `rpm -q --queryformat '%{VERSION}' dbus-1`)
Requires: python(abi) = %{py3_ver}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
D-Bus python bindings for use with python programs.
%package -n dbus-1-python3-devel
Summary: Python bindings for D-Bus
Group: Development/Libraries/Python
Requires: dbus-1-python3 = %{version}
Requires: dbus-1 >= %( echo `rpm -q --queryformat '%{VERSION}' dbus-1`)
Requires: dbus-1-devel >= %( echo `rpm -q --queryformat '%{VERSION}' dbus-1-devel`)
%description -n dbus-1-python3-devel
Developer files for Python bindings for D-Bus.
%prep
%setup -q -n dbus-python-%{version}
%build
2to3 -w -n .
export CFLAGS="%{optflags} -fstack-protector -fno-strict-aliasing -fPIC"
export PYTHON=python3
#api doc require epydoc that currently not avaliable for py3
%configure --docdir=%{_docdir}/dbus-1-python3 --disable-api-docs
make %{?_smp_mflags}
%install
make DESTDIR=%{buildroot} install
# Remove libtool config files
rm -f %{buildroot}%{python3_sitearch}/*.la
# Install additional docs
install -pm 0644 AUTHORS COPYING ChangeLog %{buildroot}%{_docdir}/dbus-1-python3/
# Remove files that will be included in dbus-1-python-devel
rm -f %{buildroot}%{_docdir}/dbus-1-python3/{API_CHANGES.*,HACKING.*,PY3PORT.*,tutorial.*}
# Install devel docs (do it manually to fix also rpmlint warning "files-duplicate" with %%fdupes)
mkdir -p %{buildroot}%{_docdir}/dbus-1-python3-devel-doc
#skip api dir
cp -a doc/ examples/ %{buildroot}%{_docdir}/dbus-1-python3-devel-doc/
# Remove Makefile* (fix rpmlint warning "makefile-junk")
rm -f %{buildroot}%{_docdir}/dbus-1-python3-devel-doc/examples/Makefile*
#avoid conflicts with py2
mv %{buildroot}%{_includedir}/dbus-1.0/dbus/dbus-python.h \
%{buildroot}%{_includedir}/dbus-1.0/dbus/dbus-python-%{py3_ver}.h
mv %{buildroot}%{_libdir}/pkgconfig/dbus-python.pc \
%{buildroot}%{_libdir}/pkgconfig/dbus-python-%{py3_ver}.pc
%fdupes -s %{buildroot}
%files
%defattr(-,root,root,-)
%doc %{_docdir}/dbus-1-python3/
%{python3_sitelib}/*
%{python3_sitearch}/*
%files -n dbus-1-python3-devel
%defattr(-,root,root,-)
%doc %{_docdir}/dbus-1-python3-devel-doc/
#this files just to avoid confict
%{_includedir}/dbus-1.0/dbus/dbus-python-%{py3_ver}.h
%{_libdir}/pkgconfig/dbus-python-%{py3_ver}.pc
%changelog