SHA256
1
0
forked from pool/python-gtk
OBS User unknown 2008-11-03 13:18:39 +00:00 committed by Git OBS Bridge
parent 73bba2dd68
commit af6638b5d5
2 changed files with 22 additions and 3 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Oct 28 17:10:06 CET 2008 - olh@suse.de
- build with -fno-schedule-insns on ppc64 (bnc#428413)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Apr 7 17:27:24 CEST 2008 - matejcik@suse.cz Mon Apr 7 17:27:24 CEST 2008 - matejcik@suse.cz

View File

@ -2,9 +2,16 @@
# spec file for package python-gtk (Version 2.12.1) # spec file for package python-gtk (Version 2.12.1)
# #
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
# #
# 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/ # Please submit bugfixes or comments via http://bugs.opensuse.org/
# #
@ -22,7 +29,7 @@ BuildRequires: gtk-doc
Url: http://www.pygtk.org/ Url: http://www.pygtk.org/
Summary: Python bindings for the GTK+ widget set Summary: Python bindings for the GTK+ widget set
Version: 2.12.1 Version: 2.12.1
Release: 1 Release: 59
License: LGPL v2.1 or later License: LGPL v2.1 or later
Group: Development/Libraries/Python Group: Development/Libraries/Python
Source: %{_name}-%{version}.tar.bz2 Source: %{_name}-%{version}.tar.bz2
@ -86,6 +93,11 @@ cat %{S:1} >>acinclude.m4
%build %build
autoreconf -f -i autoreconf -f -i
%ifarch ppc64
# temporary workaround for Bug 428413 - Python interpreter makes segmentation fault when list python modules
export CFLAGS="$RPM_OPT_FLAGS -fno-schedule-insns"
export CXXFLAGS="$CFLAGS"
%endif
%configure %configure
make %{?jobs:-j%jobs} make %{?jobs:-j%jobs}
@ -123,6 +135,8 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/gtk-doc/html/* %{_datadir}/gtk-doc/html/*
%changelog %changelog
* Tue Oct 28 2008 olh@suse.de
- build with -fno-schedule-insns on ppc64 (bnc#428413)
* Mon Apr 07 2008 matejcik@suse.cz * Mon Apr 07 2008 matejcik@suse.cz
- update to 2.12.1 - update to 2.12.1
* minor bugfixes * minor bugfixes