python-sip/python-sip.spec
Dirk Mueller 62bcbc820a - update to 4.9:
* support for __iter__ and __next__
  * the %API directive
  * the /API/ annotation
  * sipIsAPIEnabled() has been added to the C API
  * sip.getapi() and sip.setapi() have been added to the Python API
  * sip.ispyowned() has been added to the Python API
  * mapped types can now act as a namespace for enums and static methods
  * the /Array/ annotation can now be applied to classes and mapped types
  * the /NoArgParser/ annotation can now be applied to methods as well as functions
  * the --arch flag was added to configure.py to specify which MacOS/X architectures are built
  * SIP is now also licensed under the GPL v2 and v3.

OBS-URL: https://build.opensuse.org/package/show/KDE:Qt/python-sip?expand=0&rev=22
2009-09-28 17:03:40 +00:00

110 lines
2.8 KiB
RPMSpec

#
# spec file for package python-sip (Version 4.8.2)
#
# Copyright (c) 2009 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/
#
# norootforbuild
Name: python-sip
BuildRequires: c++_compiler python python-devel
License: GPL v2 or later
Group: Development/Libraries/Python
Summary: SIP tool to use python sip bindings
Version: 4.9
Release: 1
%define rversion %version
Url: http://www.riverbankcomputing.com/software/sip/intro
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Source0: sip-%{rversion}.tar.bz2
Patch0: disable-rpaths.diff
Patch2: fix-linking.diff
Patch3: fix-linking25.diff
%py_requires
%description
SIP is a tool that makes it very easy to create Python bindings for C
and C++ libraries. It was originally developed to create PyQt, the
Python bindings for the Qt toolkit, but can be used to create bindings
for any C or C++ library.
Authors:
--------
Riverbank Computing Limited
%package devel
License: GPL v2 or later
Group: Development/Libraries/Python
Summary: SIP tool to create python bindings
Requires: %name = %version
%description devel
SIP is a tool that makes it very easy to create Python bindings for C
and C++ libraries. It was originally developed to create PyQt, the
Python bindings for the Qt toolkit, but can be used to create bindings
for any C or C++ library.
This package contains all the developer tools you need to create your
own sip bindings.
Authors:
--------
Riverbank Computing Limited
%prep
%setup -q -n sip-%{rversion}
%patch0
%if %suse_version >1100
%patch2
%else
%patch3
%endif
%build
export CFLAGS="$RPM_OPT_FLAGS"
export CXXFLAGS="$RPM_OPT_FLAGS"
export SUSE_ASNEEDED=0
python configure.py
make %{?jobs:-j %jobs}
%install
make DESTDIR=$RPM_BUILD_ROOT install
mkdir -p $RPM_BUILD_ROOT/usr/share/sip
sed -i 's/"doc" directory/"doc" directory of package %{name}-devel/' README
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc README
%{py_sitedir}/sip.so
%files devel
%defattr(-,root,root)
%doc NEWS ChangeLog LICENSE doc
/usr/bin/sip
%{py_incdir}/sip.h
%{py_sitedir}/sipconfig.py
%{py_sitedir}/sipdistutils.py
/usr/share/sip
%changelog