Hello community, here is the log from the commit of package papi for openSUSE:Factory checked in at 2013-08-23 11:05:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/papi (Old) and /work/SRC/openSUSE:Factory/.papi.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "papi" Changes: -------- --- /work/SRC/openSUSE:Factory/papi/papi.changes 2013-08-13 10:12:25.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.papi.new/papi.changes 2013-08-23 11:05:14.000000000 +0200 @@ -1,0 +2,6 @@ +Thu Aug 22 13:28:40 CEST 2013 - [email protected] + +- Add papi-dont_skip_float_argument.patch to not skip float arguments + from the command line. + +------------------------------------------------------------------- New: ---- papi-dont_skip_float_argument.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ papi.spec ++++++ --- /var/tmp/diff_new_pack.rrNeUc/_old 2013-08-23 11:05:15.000000000 +0200 +++ /var/tmp/diff_new_pack.rrNeUc/_new 2013-08-23 11:05:15.000000000 +0200 @@ -50,6 +50,8 @@ #PAPI doesn't support the s390 architecture ExcludeArch: s390, s390x Patch: papi-codecleanup.patch +# PATCH-FIX-UPSTREAM Remove erroneous increment in cmdline handling +Patch1: papi-dont_skip_float_argument.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: autoconf >= 2.61 BuildRequires: automake @@ -94,6 +96,7 @@ %prep %setup -q %patch +%patch1 %build #export SUSE_ASNEEDED=0 ++++++ papi-dont_skip_float_argument.patch ++++++ commit 1b8ff5898a06d54de76dccab21fa867d43f0b782 Author: James Ralph <[email protected]> Date: Tue Aug 20 15:43:40 2013 -0400 command_line util: Fix skipping event bug. The command line utility had an extranious index increment which resulted in skipping the reporting of event counts. Remove the increment. Reported by Steve Kaufmann --- src/utils/command_line.c | 1 - 1 file changed, 1 deletion(-) Index: src/utils/command_line.c =================================================================== --- src/utils/command_line.c.orig 2013-08-06 18:12:26.000000000 +0200 +++ src/utils/command_line.c 2013-08-22 13:25:26.735891471 +0200 @@ -136,7 +136,6 @@ main( int argc, char **argv ) break; case PAPI_DATATYPE_FP64: printf( "%s : \t%0.3f", argv[i], *((double *)(&values[j])) ); - j++; break; case PAPI_DATATYPE_BIT64: printf( "%s : \t0x%llX", argv[i], values[j] ); -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
