Hello community, here is the log from the commit of package CodeAnalyst for openSUSE:Factory checked in at Wed Apr 6 09:21:33 CEST 2011.
-------- --- CodeAnalyst/CodeAnalyst.changes 2010-01-11 10:28:39.000000000 +0100 +++ /mounts/work_src_done/STABLE/CodeAnalyst/CodeAnalyst.changes 2011-04-04 18:45:04.000000000 +0200 @@ -1,0 +2,15 @@ +Mon Apr 4 18:39:35 CEST 2011 - [email protected] + +- Update to latest version 2.12.3. Changes since 2.8: + * Support public launch for family14h + * Family15h (Orochi) fully supported. + * New CA-OProfile based on OProfile-0.9.6 + * New Session Setting Dialog + * New Event Selection + * Session Setting Template allowing multiple profile settings to be + stored and reused. + * Combining event-based and IBS profile to allow simultaneous data + collection from GUI + * Introducing OProfile daemon/driver monitoring tool + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- CodeAnalyst-gui-2.8.54.tar.bz2 ca-da-online-help.patch ca-enable-oprofile-0.9.6.patch ca-fix-basename.patch ca-fix-su.patch ca-use-dynamic-feature-check.patch destdir.patch New: ---- CodeAnalyst-2_12_3_0126-Public.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ CodeAnalyst.spec ++++++ --- /var/tmp/diff_new_pack.tOddgJ/_old 2011-04-06 09:07:01.000000000 +0200 +++ /var/tmp/diff_new_pack.tOddgJ/_new 2011-04-06 09:07:01.000000000 +0200 @@ -1,7 +1,7 @@ # -# spec file for package CodeAnalyst (Version 2.8.54) +# spec file for package CodeAnalyst # -# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2011 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 @@ -16,32 +16,24 @@ # +%define file_ver 2_12_3_0126-Public + Summary: CodeAnalyst is a Performance Analysis Suite for AMD-based System Name: CodeAnalyst -Version: 2.8.54 -Release: 2 +Version: 2.12.3 +Release: 1 License: GPLv2 Group: Development/Tools/Other Url: http://developer.amd.com/cpu/CodeAnalyst/codeanalystlinux -Source0: http://ftp-developer.amd.com/user/ssuthiku/CALinuxSnapshots/%{name}-gui-%{version}.tar.bz2 +Source0: %{name}-%{file_ver}.tar.bz2 Source1: CodeAnalyst.desktop Source2: DiffAnalyst.desktop # Use oprofile default cpu/watershed/event-buffer size # since using stock oprofile daemon/driver Patch0: ca-use-oprofile-default-buffersize.patch -# Use on-line help -Patch1: ca-da-online-help.patch -# Fix basename issue when building -Patch2: ca-fix-basename.patch # Fix basename issue when building Patch3: ca-fix-oprofile-ibs-check.patch -# Use dynamic feature check -Patch4: ca-use-dynamic-feature-check.patch -# Fix permission issue -Patch5: ca-fix-su.patch -# Enable OProfile-0.9.6 -Patch6: ca-enable-oprofile-0.9.6.patch Requires: binutils Requires: oprofile >= 0.9.4 PreReq: pwdutils @@ -71,17 +63,13 @@ %prep -%setup -q -n %{name}-gui-%{version} -%patch0 -p1 -b .ca-use-oprofile-default-buffersize -%patch1 -p1 -b .ca-da-online-help -%patch2 -p1 -b .ca-fix-basename +%setup -q -n %{name}-%{file_ver} +%patch0 -b .ca-use-oprofile-default-buffersize %patch3 -p0 -b .ca-fix-oprofile-ibs-check -%patch4 -p1 -b .ca-use-dynamic-feature-check -%patch5 -p1 -b .ca-fix-su -%patch6 -p1 -b .ca-enable-oprofile-0.9.6 %build ./autogen.sh +#chmod -x $(find . -name configure) %configure \ --with-oprofile=%{_prefix} \ --disable-oprofile-lib \ ++++++ ca-fix-oprofile-ibs-check.patch ++++++ --- /var/tmp/diff_new_pack.tOddgJ/_old 2011-04-06 09:07:01.000000000 +0200 +++ /var/tmp/diff_new_pack.tOddgJ/_new 2011-04-06 09:07:01.000000000 +0200 @@ -4,24 +4,14 @@ Index: src/ca/gui/oprofile_interface.cpp =================================================================== ---- src/ca/gui/oprofile_interface.cpp (revision 16837) -+++ src/ca/gui/oprofile_interface.cpp (working copy) -@@ -1144,15 +1144,16 @@ - - #if (OP_VERSION_BASE == 0x00903) - command = QString(OP_BINDIR) + +--- src/ca/gui/oprofile_interface.cpp.orig 2010-12-15 03:12:10.000000000 +0100 ++++ src/ca/gui/oprofile_interface.cpp 2011-04-04 11:41:40.458352230 +0200 +@@ -1050,7 +1050,7 @@ bool oprofile_interface::checkMuxSupport + // NOTE: This check allows only the CodeAnalyst Oprofile + // to use MUX. + QString command = QString(OP_BINDIR) + - "opcontrol --help 2>&1 " + + "/opcontrol --help 2>&1 " + - "| grep ibs-fetch 2> /dev/null > /dev/null"; - - ret = (system(command.ascii()) == 0)? true: false; - #endif - - #if (OP_VERSION_BASE >= 0x00905) -+ - command = QString(OP_BINDIR) + -- "oprofiled --help 2>&1 " + -+ "/oprofiled --help 2>&1 " + - "| grep ext-feature 2> /dev/null > /dev/null"; - ret = (system(command.ascii()) == 0)? true: false; - #endif + "| grep multiplexing 2> /dev/null > /dev/null"; + return ((system(command.ascii()) == 0)? true: false); + } ++++++ ca-use-oprofile-default-buffersize.patch ++++++ --- /var/tmp/diff_new_pack.tOddgJ/_old 2011-04-06 09:07:01.000000000 +0200 +++ /var/tmp/diff_new_pack.tOddgJ/_new 2011-04-06 09:07:01.000000000 +0200 @@ -1,7 +1,8 @@ -diff -paurN CodeAnalyst-gui-2.8.54-org/src/ca/gui/atuneoptions.h CodeAnalyst-gui-2.8.54/src/ca/gui/atuneoptions.h ---- CodeAnalyst-gui-2.8.54-org/src/ca/gui/atuneoptions.h 2009-06-10 15:45:23.000000000 -0500 -+++ CodeAnalyst-gui-2.8.54/src/ca/gui/atuneoptions.h 2009-07-08 22:04:40.000000000 -0500 -@@ -117,9 +117,9 @@ enum ChartDensityShownType +Index: src/ca/gui/atuneoptions.h +=================================================================== +--- src/ca/gui/atuneoptions.h.orig 2010-12-15 03:12:10.000000000 +0100 ++++ src/ca/gui/atuneoptions.h 2011-04-04 12:33:12.817997997 +0200 +@@ -100,9 +100,9 @@ enum ChartDensityShownType enum BuffDefaultSizeType { ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
