65 lines
1.7 KiB
RPMSpec
65 lines
1.7 KiB
RPMSpec
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
|
|
|
%define pyrex_versio 0.9.3
|
|
%define dbus_glib_version 0.70
|
|
%define dbus_version 0.90
|
|
|
|
Summary: D-Bus Python Bindings
|
|
Name: dbus-python
|
|
Version: 0.70
|
|
Release: 5
|
|
URL: http://www.freedesktop.org/software/dbus/
|
|
Source0: http://dbus.freedesktop.org/releases/%{name}-%{version}.tar.gz
|
|
Patch0: dbus-python-0.70-fix-binary-modules-dir.patch
|
|
License: AFL/GPL
|
|
Group: System Environment/Libraries
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
BuildRequires: dbus-devel >= %{dbus_version}
|
|
BuildRequires: dbus-glib-devel >= %{dbus_glib_version}
|
|
BuildRequires: Pyrex >= %{pyrex_version}
|
|
|
|
%description
|
|
|
|
D-Bus python bindings for use with python programs.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p1 -b .fix-binary-modules-dir
|
|
|
|
%build
|
|
|
|
CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
|
|
|
|
%install
|
|
rm -rf %{buildroot}
|
|
|
|
PKG_CONFIG_PATH=%{_libdir}/pkgconfig %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
|
|
%doc COPYING ChangeLog NEWS
|
|
|
|
%{python_sitearch}/dbus/*.so
|
|
%{python_sitearch}/dbus/*.py*
|
|
|
|
%changelog
|
|
* Thu Jul 20 2006 Jesse Keating <jkeating@redhat.com> - 0.70-5
|
|
- Remove unnecessary obsoletes
|
|
|
|
* Tue Jul 18 2006 John (J5) Palmieri <johnp@redhat.com> - 0.70-4
|
|
- Try python_sitearch this time
|
|
|
|
* Tue Jul 18 2006 John (J5) Palmieri <johnp@redhat.com> - 0.70-3
|
|
- Add a BR on dbus-devel
|
|
|
|
* Tue Jul 18 2006 John (J5) Palmieri <johnp@redhat.com> - 0.70-2
|
|
- Spec file cleanups
|
|
- Add PKG_CONFIG_PATH
|
|
|
|
* Mon Jul 17 2006 John (J5) Palmieri <johnp@redhat.com> - 0.70-1
|
|
- Initial package import
|