Hello community, here is the log from the commit of package makedumpfile for openSUSE:Factory checked in at 2012-10-26 17:24:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/makedumpfile (Old) and /work/SRC/openSUSE:Factory/.makedumpfile.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "makedumpfile", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:Factory/makedumpfile/makedumpfile.changes 2011-11-10 15:50:54.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.makedumpfile.new/makedumpfile.changes 2012-10-26 17:24:15.000000000 +0200 @@ -1,0 +2,18 @@ +Wed Sep 26 21:08:36 UTC 2012 - [email protected] + +- include makedumpfile.conf(5) man page in the package. + +------------------------------------------------------------------- +Tue Jun 19 12:10:40 UTC 2012 - [email protected] + +- makedumpfile-x86-return-in-nonvoid-function.patch: add a missing + return statement. + +------------------------------------------------------------------- +Mon Jun 18 16:12:40 UTC 2012 - [email protected] + +- upgrade to makedumpfile-1.4.4. +- activate LZO support +- makedumpfile-supports-3.0.patch: dropped (upstreams). + +------------------------------------------------------------------- Old: ---- makedumpfile-1.4.0.tar.bz2 makedumpfile-supports-3.0.patch New: ---- makedumpfile-1.4.4.tar.bz2 makedumpfile-x86-return-in-nonvoid-function.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ makedumpfile.spec ++++++ --- /var/tmp/diff_new_pack.X4IaVC/_old 2012-10-26 17:24:16.000000000 +0200 +++ /var/tmp/diff_new_pack.X4IaVC/_new 2012-10-26 17:24:16.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package makedumpfile # -# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2012 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 @@ -15,24 +15,27 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # -# norootforbuild - Name: makedumpfile -BuildRequires: libdw-devel libebl-devel libelf-devel zlib-devel +BuildRequires: libdw-devel +BuildRequires: libebl-devel +BuildRequires: libelf-devel +BuildRequires: zlib-devel %if 0%{?suse_version} >= 1140 || 0%{?sles_version} >= 11 -BuildRequires: libbz2-devel lzma-devel +BuildRequires: libbz2-devel +BuildRequires: lzma-devel %endif -License: GPL-2.0 -Version: 1.4.0 -Release: 1 +BuildRequires: lzo-devel +Version: 1.4.4 +Release: 0 Summary: Partial kernel dump +License: GPL-2.0 Group: System/Kernel Url: https://sourceforge.net/projects/makedumpfile/ Source: %{name}-%{version}.tar.bz2 Source1: README.static Patch0: %{name}-coptflags.diff -Patch1: %{name}-supports-3.0.patch +Patch1: %{name}-x86-return-in-nonvoid-function.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build ExclusiveArch: %ix86 x86_64 ia64 ppc64 s390x %arm @@ -71,14 +74,16 @@ fi fi export LIBS_STATIC LIBS_DYNAMIC -make COPTFLAGS="$RPM_OPT_FLAGS" +make COPTFLAGS="$RPM_OPT_FLAGS" USELZO=on %install mkdir -p $RPM_BUILD_ROOT/bin install -c -m 0755 makedumpfile $RPM_BUILD_ROOT/bin install -c -m 0755 makedumpfile-R.pl $RPM_BUILD_ROOT/bin mkdir -p $RPM_BUILD_ROOT%{_mandir}/man8 +mkdir -p $RPM_BUILD_ROOT%{_mandir}/man5 install -c -m 0644 makedumpfile.8 $RPM_BUILD_ROOT%{_mandir}/man8 +install -c -m 0644 makedumpfile.conf.5 $RPM_BUILD_ROOT%{_mandir}/man5 %clean [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT ++++++ makedumpfile-1.4.0.tar.bz2 -> makedumpfile-1.4.4.tar.bz2 ++++++ ++++ 4655 lines of diff (skipped) ++++++ makedumpfile-coptflags.diff ++++++ --- /var/tmp/diff_new_pack.X4IaVC/_old 2012-10-26 17:24:16.000000000 +0200 +++ /var/tmp/diff_new_pack.X4IaVC/_new 2012-10-26 17:24:16.000000000 +0200 @@ -1,13 +1,13 @@ --- - Makefile | 9 ++++++--- - 1 file changed, 6 insertions(+), 3 deletions(-) + Makefile | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) --- a/Makefile +++ b/Makefile -@@ -4,10 +4,10 @@ VERSION=1.4.0 - DATE=12 September 2011 - +@@ -8,10 +8,10 @@ ifeq ($(strip $CC),) CC = gcc + endif + -CFLAGS = -g -O2 -Wall -D_FILE_OFFSET_BITS=64 \ +CFLAGS = $(COPTFLAGS) -g -O2 -Wall -D_FILE_OFFSET_BITS=64 \ -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE \ @@ -17,12 +17,15 @@ -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE # LDFLAGS = -L/usr/local/lib -I/usr/local/include -@@ -38,7 +38,7 @@ $(OBJ_ARCH): $(SRC_ARCH) - $(CC) $(CFLAGS_ARCH) -c -o ./$@ ./$(@:.o=.c) +@@ -45,9 +45,9 @@ OBJ_PART = print_info.o dwarf_info.o elf + SRC_ARCH = arch/arm.c arch/x86.c arch/x86_64.c arch/ia64.c arch/ppc64.c arch/s390x.c arch/ppc.c + OBJ_ARCH = arch/arm.o arch/x86.o arch/x86_64.o arch/ia64.o arch/ppc64.o arch/s390x.o arch/ppc.o + +-LIBS = -ldw -lbz2 -lebl -ldl -lelf -lz ++LIBS = -ldw -lebl -lelf $(LIBS_STATIC) -Wl,-Bdynamic -ldl -lz $(LIBS_DYNAMIC) + ifneq ($(LINKTYPE), dynamic) +-LIBS := -static $(LIBS) ++LIBS := -Wl,-Bstatic $(LIBS) + endif - makedumpfile: $(SRC) $(OBJ_PART) $(OBJ_ARCH) -- $(CC) $(CFLAGS) $(LDFLAGS) $(OBJ_PART) $(OBJ_ARCH) -o $@ $< -static -ldw -lbz2 -lebl -ldl -lelf -lz -+ $(CC) $(CFLAGS) $(LDFLAGS) $(OBJ_PART) $(OBJ_ARCH) -o $@ $< -Wl,-Bstatic -ldw -lebl -lelf $(LIBS_STATIC) -Wl,-Bdynamic -ldl -lz $(LIBS_DYNAMIC) - echo .TH MAKEDUMPFILE 8 \"$(DATE)\" \"makedumpfile v$(VERSION)\" \"Linux System Administrator\'s Manual\" > temp.8 - grep -v "^.TH MAKEDUMPFILE 8" makedumpfile.8 >> temp.8 - mv temp.8 makedumpfile.8 + ifeq ($(USELZO), on) ++++++ makedumpfile-x86-return-in-nonvoid-function.patch ++++++ --- arch/x86.c | 1 + 1 file changed, 1 insertion(+) --- a/arch/x86.c +++ b/arch/x86.c @@ -64,6 +64,7 @@ remap_init(void) } max_numnodes = n; + return TRUE; } int -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
