1
0

Accepting request 86123 from Base:System

- add libtool as buildrequire to make the spec file more reliable (forwarded request 86110 from coolo)

OBS-URL: https://build.opensuse.org/request/show/86123
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gettext-runtime?expand=0&rev=29
This commit is contained in:
Lars Vogdt 2011-10-03 07:19:45 +00:00 committed by Git OBS Bridge
commit 3f0d5388d0
4 changed files with 30 additions and 4 deletions

View File

@ -20,6 +20,7 @@
Name: gettext-csharp Name: gettext-csharp
BuildRequires: fdupes mono-devel perl-libintl-perl tcl BuildRequires: fdupes mono-devel perl-libintl-perl tcl
BuildRequires: libtool
Requires: mono Requires: mono
Url: http://www.gnu.org/software/gettext/ Url: http://www.gnu.org/software/gettext/
License: LGPLv2.1+ License: LGPLv2.1+

View File

@ -20,6 +20,7 @@
Name: gettext-java Name: gettext-java
BuildRequires: fdupes gcc-c++ gcc-java perl-libintl-perl tcl BuildRequires: fdupes gcc-c++ gcc-java perl-libintl-perl tcl
BuildRequires: libtool
Url: http://www.gnu.org/software/gettext/ Url: http://www.gnu.org/software/gettext/
License: LGPLv2.1+ License: LGPLv2.1+
Group: Development/Tools/Other Group: Development/Tools/Other

View File

@ -1,9 +1,30 @@
-------------------------------------------------------------------
Sun Oct 2 14:24:27 CEST 2011 - dmueller@suse.de
- revert last change - it is not the testsuite that hangs
but everything. The better workaround is to disable openmp
-------------------------------------------------------------------
Sat Oct 1 05:39:12 UTC 2011 - coolo@suse.com
- add libtool as buildrequire to make the spec file more reliable
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Oct 1 02:00:30 UTC 2011 - crrodriguez@opensuse.org Sat Oct 1 02:00:30 UTC 2011 - crrodriguez@opensuse.org
- Test suite hangs in qemu-arm due to bugs in the emulator - Test suite hangs in qemu-arm due to bugs in the emulator
workaround this issue. workaround this issue.
-------------------------------------------------------------------
Thu Sep 29 13:27:17 CEST 2011 - dmueller@suse.de
- fix build
-------------------------------------------------------------------
Thu Sep 29 10:20:07 UTC 2011 - adrian@suse.de
- disable openmp when qemu is used for building (like on arm)
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jan 7 10:36:22 CET 2011 - meissner@suse.de Fri Jan 7 10:36:22 CET 2011 - meissner@suse.de

View File

@ -23,6 +23,7 @@ Name: gettext-runtime
Version: 0.18.1.1 Version: 0.18.1.1
Release: 2 Release: 2
BuildRequires: gcc-c++ perl-libintl-perl tcl BuildRequires: gcc-c++ perl-libintl-perl tcl
BuildRequires: libtool
# To get an updated linkdupes.sh (in case there are new dupes), temproarily enable: # To get an updated linkdupes.sh (in case there are new dupes), temproarily enable:
#BuildRequires: fdupes #BuildRequires: fdupes
Url: http://www.gnu.org/software/gettext/ Url: http://www.gnu.org/software/gettext/
@ -114,7 +115,11 @@ autoreconf -fiv
#sh autogen.sh #sh autogen.sh
export CFLAGS="%{optflags} -pipe -W -Wall -Dgcc_is_lint" export CFLAGS="%{optflags} -pipe -W -Wall -Dgcc_is_lint"
export CXXFLAGS="$CFLAGS -Dgcc_is_lint" export CXXFLAGS="$CFLAGS -Dgcc_is_lint"
%configure --enable-shared %if 0%{?qemu_user_space_build:1}
OPTS="--disable-openmp"
%endif
%configure --enable-shared $OPTS
make %{?_smp_mflags} GMSGFMT=../src/msgfmt make %{?_smp_mflags} GMSGFMT=../src/msgfmt
# use texinfo.tex supplied by the system (texinfo) # use texinfo.tex supplied by the system (texinfo)
# make -C gettext-tools/doc gettext.pdf # make -C gettext-tools/doc gettext.pdf
@ -155,7 +160,6 @@ echo ".so man3/dgettext.3" > dcgettext.3
# s390s fails this test, # s390s fails this test,
# Starting test_recursive_lock ...test-lock: pthread_mutex_lock.c:66: __pthread_mutex_lock: Assertion `mutex->__data.__owner == 0' failed. # Starting test_recursive_lock ...test-lock: pthread_mutex_lock.c:66: __pthread_mutex_lock: Assertion `mutex->__data.__owner == 0' failed.
%if ! 0%{?qemu_user_space_build}
make check || { make check || {
%ifarch s390x %ifarch s390x
echo "got this during mbuild testing on s390x (on both times which make check ran):" echo "got this during mbuild testing on s390x (on both times which make check ran):"
@ -166,7 +170,6 @@ make check || {
exit 5 exit 5
%endif %endif
} }
%endif
%clean %clean
rm -rf %{buildroot} rm -rf %{buildroot}