commit malaga for openSUSE:Factory
Hello community, here is the log from the commit of package malaga for openSUSE:Factory checked in at Tue Feb 3 23:55:17 CET 2009. -------- --- malaga/malaga.changes 2008-07-25 11:53:21.000000000 +0200 +++ malaga/malaga.changes 2009-02-03 16:38:36.000000000 +0100 @@ -1,0 +2,9 @@ +Tue Feb 3 16:37:34 CET 2009 - crrodriguez@suse.de + +- remove "la" files +- fix -devel package dependencies +- do not strip binaries on make install, let debuginfo generation to + handle it. +- allow verbose compilation + +------------------------------------------------------------------- calling whatdependson for head-i586 New: ---- malaga-7.12-verbose.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ malaga.spec ++++++ --- /var/tmp/diff_new_pack.G24021/_old 2009-02-03 23:54:17.000000000 +0100 +++ /var/tmp/diff_new_pack.G24021/_new 2009-02-03 23:54:17.000000000 +0100 @@ -1,10 +1,17 @@ # # spec file for package malaga (Version 7.12) # -# 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. +# 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/ # @@ -13,7 +20,7 @@ Name: malaga Version: 7.12 -Release: 1 +Release: 35 Url: http://home.arcor.de/bjoern-beutel/malaga License: GPL v2 or later Summary: A Grammar Development Environment for Natural Languages @@ -21,8 +28,9 @@ Source: %{name}-%{version}.tar.bz2 PreReq: %install_info_prereq Requires: libmalaga7 = %{version} -BuildRequires: glib2-devel gtk2-devel readline-devel +BuildRequires: gtk2-devel readline-devel BuildRoot: %{_tmppath}/%{name}-%{version}-build +Patch0: malaga-7.12-verbose.patch %description Malaga is a software package for the development and application of @@ -58,7 +66,7 @@ License: GPL v2 or later Group: Development/Libraries/C and C++ Summary: Include Files and Libraries mandatory for Development -Requires: libmalaga7 = %{version} glib2-devel +Requires: libmalaga7 = %{version} # File name used up to openSUSE 11.0: Provides: libmalaga7-devel = %{version} Obsoletes: libmalaga7-devel < 7.12 @@ -75,10 +83,11 @@ %prep %setup -q +%patch0 %build -autoreconf -f -i -%configure\ +autoreconf -f -i -v +%configure --with-pic\ --disable-static make %{?jobs:-j%jobs} @@ -86,6 +95,7 @@ %makeinstall mkdir -p $RPM_BUILD_ROOT/usr/share/emacs/site-lisp mv $RPM_BUILD_ROOT%{_datadir}/malaga/malaga.el $RPM_BUILD_ROOT/usr/share/emacs/site-lisp +%{__rm} -f %{buildroot}%{_libdir}/*.la %clean rm -rf $RPM_BUILD_ROOT @@ -118,9 +128,14 @@ %defattr (-,root,root) %{_includedir}/malaga.h %{_libdir}/*.so -%{_libdir}/*.*a %changelog +* Tue Feb 03 2009 crrodriguez@suse.de +- remove "la" files +- fix -devel package dependencies +- do not strip binaries on make install, let debuginfo generation to + handle it. +- allow verbose compilation * Fri Jul 25 2008 sbrabec@suse.cz - Updated to version 7.12 (bnc#394355): * malshow now uses cairo for drawing; line thickness grows with ++++++ malaga-7.12-verbose.patch ++++++ Index: Makefile.in =================================================================== --- Makefile.in.orig 2008-02-28 19:38:21.000000000 +0100 +++ Makefile.in 2009-02-03 16:31:28.000000000 +0100 @@ -76,8 +76,8 @@ DIST = malaga-7.12 .SUFFIXES: .o .c .c.o: - @echo "Compiling $<" - @$(COMPILE) $(GLIB_CFLAGS) $(READLINE_CFLAGS) $< + echo "Compiling $<" + $(COMPILE) $(GLIB_CFLAGS) $(READLINE_CFLAGS) $< # Primary goals. -------------------------------------------------------------- @@ -99,12 +99,12 @@ info: malaga.info install: all info $(INSTALL_DIR) $(bindir) for f in $(MALAGA_BIN); do \ - $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) -s $$f $(bindir)/$$f; \ + $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$f $(bindir)/$$f; \ done $(INSTALL_DIR) $(includedir) $(INSTALL_DATA) $(srcdir)/malaga.h $(includedir)/malaga.h $(INSTALL_DIR) $(libdir) - $(LIBTOOL) --mode=install $(INSTALL_DATA) -s libmalaga.la \ + $(LIBTOOL) --mode=install $(INSTALL_DATA) libmalaga.la \ $(libdir)/libmalaga.la $(INSTALL_DIR) $(datadir)/malaga $(INSTALL_DATA) $(srcdir)/malaga.el $(datadir)/malaga/malaga.el @@ -178,12 +178,12 @@ COMMON_OBJS = analysis.o avl_trees.o bas LIBMALAGA_OBJS = $(COMMON_OBJS) libmalaga.o $(LIBMALAGA_OBJS): - @echo "Compiling $<" - @$(LIBTOOL) --mode=compile $(COMPILE) $(GLIB_CFLAGS) $(srcdir)/$*.c + echo "Compiling $<" + $(LIBTOOL) --mode=compile $(COMPILE) $(GLIB_CFLAGS) $(srcdir)/$*.c libmalaga.la: $(LIBMALAGA_OBJS) - @echo "Linking libmalaga" - @$(LIBTOOL) --mode=link $(LINK) $(LIBMALAGA_OBJS:.o=.lo) $(GLIB_LIBS) \ + echo "Linking libmalaga" + $(LIBTOOL) --mode=link $(LINK) $(LIBMALAGA_OBJS:.o=.lo) $(GLIB_LIBS) \ -lm -o libmalaga.la -version-info $(LIBMALAGA_VERSION) \ -rpath @libdir@ @@ -193,15 +193,15 @@ MALAGA_OBJS = commands_interactive.o bre malaga.o malaga: $(MALAGA_OBJS) libmalaga.la - @echo "Linking malaga" - @$(LIBTOOL) --mode=link $(LINK) $(MALAGA_OBJS) $(GLIB_LIBS) \ + echo "Linking malaga" + $(LIBTOOL) --mode=link $(LINK) $(MALAGA_OBJS) $(GLIB_LIBS) \ $(READLINE_LIBS) -lm libmalaga.la -o malaga # maldump --------------------------------------------------------------------- maldump: maldump.o libmalaga.la - @echo "Linking maldump" - @$(LIBTOOL) --mode=link $(LINK) maldump.o $(GLIB_LIBS) -lm \ + echo "Linking maldump" + $(LIBTOOL) --mode=link $(LINK) maldump.o $(GLIB_LIBS) -lm \ libmalaga.la -o maldump # mallex ---------------------------------------------------------------------- @@ -210,15 +210,15 @@ MALLEX_OBJS = breakpoints.o commands_int mallex.o mallex: $(MALLEX_OBJS) libmalaga.la - @echo "Linking mallex" - @$(LIBTOOL) --mode=link $(LINK) $(MALLEX_OBJS) $(GLIB_LIBS) \ + echo "Linking mallex" + $(LIBTOOL) --mode=link $(LINK) $(MALLEX_OBJS) $(GLIB_LIBS) \ $(READLINE_LIBS) -lm libmalaga.la -o mallex # malmake --------------------------------------------------------------------- malmake: malmake.o libmalaga.la - @echo "Linking malmake" - @$(LIBTOOL) --mode=link $(LINK) malmake.o $(GLIB_LIBS) libmalaga.la \ + echo "Linking malmake" + $(LIBTOOL) --mode=link $(LINK) malmake.o $(GLIB_LIBS) libmalaga.la \ -o malmake # malrul ---------------------------------------------------------------------- @@ -227,8 +227,8 @@ MALRUL_OBJS = malrul.o rule_code.o rule_ rule_symbols.o malrul: $(MALRUL_OBJS) libmalaga.la - @echo "Linking malrul" - @$(LIBTOOL) --mode=link $(LINK) $(MALRUL_OBJS) $(GLIB_LIBS) \ + echo "Linking malrul" + $(LIBTOOL) --mode=link $(LINK) $(MALRUL_OBJS) $(GLIB_LIBS) \ libmalaga.la -o malrul # malshow --------------------------------------------------------------------- @@ -237,12 +237,12 @@ MALSHOW_OBJS = allomorphs.o canvas.o exp variables.o $(MALSHOW_OBJS): - @echo "Compiling $<" - @$(COMPILE) $(GTK_CFLAGS) $(srcdir)/$*.c + echo "Compiling $<" + $(COMPILE) $(GTK_CFLAGS) $(srcdir)/$*.c malshow: $(MALSHOW_OBJS) libmalaga.la - @echo "Linking malshow" - @$(LIBTOOL) --mode=link $(LINK) $(MALSHOW_OBJS) $(GTK_LIBS) \ + echo "Linking malshow" + $(LIBTOOL) --mode=link $(LINK) $(MALSHOW_OBJS) $(GTK_LIBS) \ libmalaga.la -o malshow # malsym ---------------------------------------------------------------------- @@ -250,8 +250,8 @@ malshow: $(MALSHOW_OBJS) libmalaga.la MALSYM_OBJS = malsym.o sym_compiler.o malsym: $(MALSYM_OBJS) libmalaga.la - @echo "Linking malsym" - @$(LIBTOOL) --mode=link $(LINK) $(MALSYM_OBJS) $(GLIB_LIBS) \ + echo "Linking malsym" + $(LIBTOOL) --mode=link $(LINK) $(MALSYM_OBJS) $(GLIB_LIBS) \ libmalaga.la -o malsym #============================================================================== ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de