Blame SPECS/valgrind.spec

2a1fab
# For RHEL8 we need this before using any scl macro.
2a1fab
%global __python /usr/bin/python3
2a1fab
2a1fab
%{?scl:%scl_package valgrind}
2a1fab
2a1fab
Summary: Tool for finding memory management bugs in programs
2a1fab
Name: %{?scl_prefix}valgrind
2a1fab
Version: 3.15.0
2a1fab
Release: 9%{?dist}
2a1fab
Epoch: 1
2a1fab
License: GPLv2+
2a1fab
URL: http://www.valgrind.org/
2a1fab
Group: Development/Debuggers
2a1fab
2a1fab
# Only necessary for RHEL, will be ignored on Fedora
2a1fab
2a1fab
# Are we building for a Software Collection?
2a1fab
%{?scl:%global is_scl 1}
2a1fab
%{!?scl:%global is_scl 0}
2a1fab
2a1fab
# We never want the openmpi subpackage when building a software collecton.
2a1fab
# We always want it for fedora.
2a1fab
# We only want it for older rhel. But not s390x for too old rhel.
2a1fab
%if %{is_scl}
2a1fab
  %global build_openmpi 0
2a1fab
%else
2a1fab
  %if 0%{?fedora}
2a1fab
    %global build_openmpi 1
2a1fab
  %endif
2a1fab
  %if 0%{?rhel}
2a1fab
    %if 0%{?rhel} > 7
2a1fab
      %global build_openmpi 0
2a1fab
    %else
2a1fab
      %ifarch s390x
2a1fab
	%global build_openmpi (%{?rhel} > 6)
2a1fab
      %else
2a1fab
	%global build_openmpi 1
2a1fab
      %endif
2a1fab
    %endif
2a1fab
  %endif
2a1fab
%endif
2a1fab
2a1fab
# We only want to build the valgrind-tools-devel package for Fedora proper
2a1fab
# as convenience. But not for DTS or RHEL.
2a1fab
%if %{is_scl}
2a1fab
  %global build_tools_devel 0
2a1fab
%else
2a1fab
  %if 0%{?rhel}
2a1fab
    %global build_tools_devel 0
2a1fab
  %else
2a1fab
    %global build_tools_devel 1
2a1fab
  %endif
2a1fab
%endif
2a1fab
2a1fab
# Whether to run the full regtest or only a limited set
2a1fab
# The full regtest includes gdb_server integration tests
2a1fab
# and experimental tools.
2a1fab
# Only run full regtests on fedora, but not on older rhel
2a1fab
# or when creating scl, the gdb_server tests might hang.
2a1fab
%if %{is_scl}
2a1fab
  %global run_full_regtest 0
2a1fab
%else
2a1fab
  %if 0%{?fedora}
2a1fab
    %global run_full_regtest 1
2a1fab
  %endif
2a1fab
  %if 0%{?rhel}
2a1fab
    %global run_full_regtest (%rhel >= 7)
2a1fab
  %endif
2a1fab
%endif
2a1fab
2a1fab
# Generating minisymtabs doesn't really work for the staticly linked
2a1fab
# tools. Note (below) that we don't strip the vgpreload libraries at all
2a1fab
# because valgrind might read and need the debuginfo in those (client)
2a1fab
# libraries for better error reporting and sometimes correctly unwinding.
2a1fab
# So those will already have their full symbol table.
2a1fab
%undefine _include_minidebuginfo
2a1fab
2a1fab
Source0: ftp://sourceware.org/pub/valgrind/valgrind-%{version}.tar.bz2
2a1fab
2a1fab
# Needs investigation and pushing upstream
2a1fab
Patch1: valgrind-3.9.0-cachegrind-improvements.patch
2a1fab
2a1fab
# KDE#211352 - helgrind races in helgrind's own mythread_wrapper
2a1fab
Patch2: valgrind-3.9.0-helgrind-race-supp.patch
2a1fab
2a1fab
# Make ld.so supressions slightly less specific.
2a1fab
Patch3: valgrind-3.9.0-ldso-supp.patch
2a1fab
2a1fab
# We want all executables and libraries in libexec instead of lib
2a1fab
# so they are only available for valgrind usage itself and so the
2a1fab
# same directory is used independent of arch.
2a1fab
Patch4: valgrind-3.15.0-pkglibexecdir.patch
2a1fab
2a1fab
# KDE#398649 s390x z13 support doesn't build with older gcc/binutils
2a1fab
# Disable z13 support (on rhel6)
2a1fab
Patch5: valgrind-3.15.0-disable-s390x-z13.patch
2a1fab
2a1fab
# Add some stack-protector
2a1fab
Patch6: valgrind-3.15.0-some-stack-protector.patch
2a1fab
2a1fab
# KDE#406561  mcinfcallWSRU gdbserver_test fails on ppc64
2a1fab
Patch7: valgrind-3.15.0-ppc64-filter_gdb.patch
2a1fab
2a1fab
# KDE#407218 Add support for the copy_file_range syscall
2a1fab
Patch8: valgrind-3.15.0-copy_file_range.patch
2a1fab
2a1fab
# KDE#407307 Intercept stpcpy also in ld.so for arm64
2a1fab
Patch9: valgrind-3.15.0-arm64-ld-stpcpy.patch
2a1fab
2a1fab
# commit 59784c aarch64 (arm64) isn't a supported architecture for exp-sgcheck.
2a1fab
Patch10: valgrind-3.15.0-exp-sgcheck-no-aarch64.patch
2a1fab
2a1fab
# commit 917e42 Make memcheck/tests/arm64-linux/scalar work under root
2a1fab
Patch11: valgrind-3.15.0-scalar-arm64.patch
2a1fab
2a1fab
# commit abc09f Make memcheck/tests/x86-linux/scalar test work under root.
2a1fab
Patch12: valgrind-3.15.0-scalar-x86.patch
2a1fab
2a1fab
# KDE#407764 s390x: drd fails on z13 due to function wrapping issue
2a1fab
Patch13: valgrind-3.15.0-s390x-wrap-drd.patch
2a1fab
2a1fab
# Add some -Wl,z,now.
2a1fab
Patch14: valgrind-3.15.0-some-Wl-z-now.patch
2a1fab
2a1fab
# KDE#408009 Expose rdrand and f16c even on avx if host cpu supports them
2a1fab
Patch15: valgrind-3.15.0-avx-rdrand-f16c.patch
2a1fab
2a1fab
# KDE#408091 Missing pkey syscalls
2a1fab
Patch16: valgrind-3.15.0-pkey.patch
2a1fab
2a1fab
BuildRequires: glibc-devel
2a1fab
2a1fab
%if %{build_openmpi}
2a1fab
BuildRequires: openmpi-devel
2a1fab
%endif
2a1fab
2a1fab
%if %{run_full_regtest}
2a1fab
BuildRequires: gdb
2a1fab
%endif
2a1fab
2a1fab
# gdbserver_tests/filter_make_empty uses ps in test
2a1fab
BuildRequires: procps
2a1fab
2a1fab
# Some testcases require g++ to build
2a1fab
BuildRequires: gcc-c++
2a1fab
2a1fab
# check_headers_and_includes uses Getopt::Long
2a1fab
%if 0%{?fedora}
2a1fab
BuildRequires: perl-generators
2a1fab
%endif
2a1fab
BuildRequires: perl(Getopt::Long)
2a1fab
2a1fab
# We always autoreconf
2a1fab
BuildRequires: automake
2a1fab
BuildRequires: autoconf
2a1fab
2a1fab
%{?scl:Requires:%scl_runtime}
2a1fab
2a1fab
# We need to fixup selinux file context when doing a scl build.
2a1fab
# In RHEL6 we might need to fix up the labels even though the
2a1fab
# meta package sets up a fs equivalence. See post.
2a1fab
%if 0%{?rhel} == 6
2a1fab
%{?scl:Requires(post): /sbin/restorecon}
2a1fab
%endif
2a1fab
2a1fab
# We could use %%valgrind_arches as defined in redhat-rpm-config
2a1fab
# But that is really for programs using valgrind, it defines the
2a1fab
# set of architectures that valgrind works correctly on.
2a1fab
ExclusiveArch: %{ix86} x86_64 ppc ppc64 ppc64le s390x armv7hl aarch64
2a1fab
2a1fab
# Define valarch, the architecture name that valgrind uses
2a1fab
# And only_arch, the configure option to only build for that arch.
2a1fab
%ifarch %{ix86}
2a1fab
%define valarch x86
2a1fab
%define only_arch --enable-only32bit
2a1fab
%endif
2a1fab
%ifarch x86_64
2a1fab
%define valarch amd64
2a1fab
%define only_arch --enable-only64bit
2a1fab
%endif
2a1fab
%ifarch ppc
2a1fab
%define valarch ppc32
2a1fab
%define only_arch --enable-only32bit
2a1fab
%endif
2a1fab
%ifarch ppc64
2a1fab
%define valarch ppc64be
2a1fab
%define only_arch --enable-only64bit
2a1fab
%endif
2a1fab
%ifarch ppc64le
2a1fab
%define valarch ppc64le
2a1fab
%define only_arch --enable-only64bit
2a1fab
%endif
2a1fab
%ifarch s390x
2a1fab
%define valarch s390x
2a1fab
%define only_arch --enable-only64bit
2a1fab
%endif
2a1fab
%ifarch armv7hl
2a1fab
%define valarch arm
2a1fab
%define only_arch --enable-only32bit
2a1fab
%endif
2a1fab
%ifarch aarch64
2a1fab
%define valarch arm64
2a1fab
%define only_arch --enable-only64bit
2a1fab
%endif
2a1fab
2a1fab
%description
2a1fab
Valgrind is an instrumentation framework for building dynamic analysis
2a1fab
tools. There are Valgrind tools that can automatically detect many
2a1fab
memory management and threading bugs, and profile your programs in
2a1fab
detail. You can also use Valgrind to build new tools. The Valgrind
2a1fab
distribution currently includes six production-quality tools: a memory
2a1fab
error detector (memcheck, the default tool), two thread error
2a1fab
detectors (helgrind and drd), a cache and branch-prediction profiler
2a1fab
(cachegrind), a call-graph generating cache and branch-prediction
2a1fab
profiler (callgrind), and a heap profiler (massif).
2a1fab
2a1fab
%package devel
2a1fab
Summary: Development files for valgrind aware programs
2a1fab
Group: Development/Debuggers
2a1fab
Requires: %{?scl_prefix}valgrind = %{epoch}:%{version}-%{release}
2a1fab
2a1fab
%description devel
2a1fab
Header files and libraries for development of valgrind aware programs.
2a1fab
2a1fab
%if %{build_tools_devel}
2a1fab
%package tools-devel
2a1fab
Summary: Development files for building valgrind tools.
2a1fab
Group: Development/Debuggers
2a1fab
Requires: %{?scl_prefix}valgrind-devel = %{epoch}:%{version}-%{release}
2a1fab
Provides: %{name}-static = %{epoch}:%{version}-%{release}
2a1fab
2a1fab
%description tools-devel
2a1fab
Header files and libraries for development of valgrind tools.
2a1fab
%endif
2a1fab
2a1fab
%if %{build_openmpi}
2a1fab
%package openmpi
2a1fab
Summary: OpenMPI support for valgrind
2a1fab
Group: Development/Debuggers
2a1fab
Requires: %{?scl_prefix}valgrind = %{epoch}:%{version}-%{release}
2a1fab
2a1fab
%description openmpi
2a1fab
A wrapper library for debugging OpenMPI parallel programs with valgrind.
2a1fab
See the section on Debugging MPI Parallel Programs with Valgrind in the
2a1fab
Valgrind User Manual for details.
2a1fab
%endif
2a1fab
2a1fab
%prep
2a1fab
%setup -q -n %{?scl:%{pkg_name}}%{!?scl:%{name}}-%{version}
2a1fab
2a1fab
%patch1 -p1
2a1fab
%patch2 -p1
2a1fab
%patch3 -p1
2a1fab
%patch4 -p1
2a1fab
2a1fab
# Disable s390x z13 support on old rhel, binutils is just too old.
2a1fab
%if 0%{?rhel} == 6
2a1fab
%patch5 -p1
2a1fab
%endif
2a1fab
2a1fab
# Old rhel gcc doesn't have -fstack-protector-strong.
2a1fab
%if 0%{?fedora} || 0%{?rhel} >= 7
2a1fab
%patch6 -p1
2a1fab
%endif
2a1fab
2a1fab
%patch7 -p1
2a1fab
%patch8 -p1
2a1fab
%patch9 -p1
2a1fab
%patch10 -p1
2a1fab
%patch11 -p1
2a1fab
%patch12 -p1
2a1fab
%patch13 -p1
2a1fab
2a1fab
# This depends on patch6, old rhel gcc doesn't have -fstack-protector-strong.
2a1fab
%if 0%{?fedora} || 0%{?rhel} >= 7
2a1fab
%patch14 -p1
2a1fab
%endif
2a1fab
2a1fab
%patch15 -p1
2a1fab
%patch16 -p1
2a1fab
2a1fab
%build
2a1fab
2a1fab
# Some patches (might) touch Makefile.am or configure.ac files.
2a1fab
# Just always autoreconf so we don't need patches to prebuild files.
2a1fab
./autogen.sh
2a1fab
2a1fab
# Old openmpi-devel has version depended paths for mpicc.
2a1fab
%if %{build_openmpi}
2a1fab
%if 0%{?fedora} >= 13 || 0%{?rhel} >= 6
2a1fab
%define mpiccpath %{!?scl:%{_libdir}}%{?scl:%{_root_libdir}}/openmpi/bin/mpicc
2a1fab
%else
2a1fab
%define mpiccpath %{!?scl:%{_libdir}}%{?scl:%{_root_libdir}}/openmpi/*/bin/mpicc
2a1fab
%endif
2a1fab
%else
2a1fab
# We explicitly don't want the libmpi wrapper. So make sure that configure
2a1fab
# doesn't pick some random mpi compiler that happens to be installed.
2a1fab
%define mpiccpath /bin/false
2a1fab
%endif
2a1fab
2a1fab
# Filter out "hardening" flags that don't make sense for valgrind.
2a1fab
# -fstack-protector just cannot work (valgrind would have to implement
2a1fab
# its own version since it doesn't link with glibc and handles stack
2a1fab
# setup itself). We patch some flags back in just for those helper
2a1fab
# programs where it does make sense.
2a1fab
#
2a1fab
# -Wl,-z,now doesn't make sense for static linked tools
2a1fab
# and would prevent using the vgpreload libraries on binaries that
2a1fab
# don't link themselves against libraries (like pthread) which symbols
2a1fab
# are needed (but only if the inferior itself would use them).
2a1fab
#
2a1fab
# -O2 doesn't work for the vgpreload libraries either. They are meant
2a1fab
# to not be optimized to show precisely what happened. valgrind adds
2a1fab
# -O2 itself wherever suitable.
2a1fab
#
2a1fab
# On ppc64[be] -fexceptions is troublesome.
2a1fab
# It might cause an undefined reference to `_Unwind_Resume'
2a1fab
# in libcoregrind-ppc64be-linux.a(libcoregrind_ppc64be_linux_a-readelf.o):
2a1fab
# In function `read_elf_symtab__ppc64be_linux.
2a1fab
#
2a1fab
# Also disable strict symbol checks because the vg_preload library
2a1fab
# will use hidden/undefined symbols from glibc like __libc_freeres.
2a1fab
%undefine _strict_symbol_defs_build
2a1fab
2a1fab
%ifarch ppc64
2a1fab
CFLAGS="`echo " %{optflags} " | sed 's/ -fstack-protector\([-a-z]*\) / / g;s/ -O2 / /g;s/ -fexceptions / /g;'`"
2a1fab
%else
2a1fab
CFLAGS="`echo " %{optflags} " | sed 's/ -fstack-protector\([-a-z]*\) / / g;s/ -O2 / /g;'`"
2a1fab
%endif
2a1fab
export CFLAGS
2a1fab
2a1fab
# Older Fedora/RHEL only had __global_ldflags.
2a1fab
# Even older didn't even have that (so we don't need to scrub them).
2a1fab
%if 0%{?build_ldflags:1}
2a1fab
LDFLAGS="`echo " %{build_ldflags} "    | sed 's/ -Wl,-z,now / / g;'`"
2a1fab
%else
2a1fab
%if 0%{?__global_ldflags:1}
2a1fab
LDFLAGS="`echo " %{__global_ldflags} " | sed 's/ -Wl,-z,now / / g;'`"
2a1fab
%endif
2a1fab
%endif
2a1fab
export LDFLAGS
2a1fab
2a1fab
%configure \
2a1fab
  --with-mpicc=%{mpiccpath} \
2a1fab
  %{only_arch} \
2a1fab
  GDB=%{_bindir}/gdb
2a1fab
2a1fab
make %{?_smp_mflags}
2a1fab
2a1fab
%install
2a1fab
rm -rf $RPM_BUILD_ROOT
2a1fab
make DESTDIR=$RPM_BUILD_ROOT install
2a1fab
mkdir docs/installed
2a1fab
mv $RPM_BUILD_ROOT%{_datadir}/doc/valgrind/* docs/installed/
2a1fab
rm -f docs/installed/*.ps
2a1fab
2a1fab
# We want the MPI wrapper installed under the openmpi libdir so the script
2a1fab
# generating the MPI library requires picks them up and sets up the right
2a1fab
# openmpi libmpi.so requires. Install symlinks in the original/upstream
2a1fab
# location for backwards compatibility.
2a1fab
%if %{build_openmpi}
2a1fab
pushd $RPM_BUILD_ROOT%{_libdir}
2a1fab
mkdir -p openmpi/valgrind
2a1fab
cd valgrind
2a1fab
mv libmpiwrap-%{valarch}-linux.so ../openmpi/valgrind/
2a1fab
ln -s ../openmpi/valgrind/libmpiwrap-%{valarch}-linux.so
2a1fab
popd
2a1fab
%endif
2a1fab
2a1fab
%if %{build_tools_devel}
2a1fab
%ifarch %{ix86} x86_64
2a1fab
# To avoid multilib clashes in between i?86 and x86_64,
2a1fab
# tweak installed <valgrind/config.h> a little bit.
2a1fab
for i in HAVE_PTHREAD_CREATE_GLIBC_2_0 HAVE_PTRACE_GETREGS HAVE_AS_AMD64_FXSAVE64; do
2a1fab
  sed -i -e 's,^\(#define '$i' 1\|/\* #undef '$i' \*/\)$,#ifdef __x86_64__\n# define '$i' 1\n#endif,' \
2a1fab
    $RPM_BUILD_ROOT%{_includedir}/valgrind/config.h
2a1fab
done
2a1fab
%endif
2a1fab
%else
2a1fab
# Remove files we aren't going to package.
2a1fab
# See tools-devel files.
2a1fab
rm $RPM_BUILD_ROOT%{_includedir}/valgrind/config.h
2a1fab
rm $RPM_BUILD_ROOT%{_includedir}/valgrind/libvex*h
2a1fab
rm $RPM_BUILD_ROOT%{_includedir}/valgrind/pub_tool_*h
2a1fab
rm -rf $RPM_BUILD_ROOT%{_includedir}/valgrind/vki
2a1fab
rm $RPM_BUILD_ROOT%{_libdir}/valgrind/*.a
2a1fab
%endif
2a1fab
2a1fab
# We don't want debuginfo generated for the vgpreload libraries.
2a1fab
# Turn off execute bit so they aren't included in the debuginfo.list.
2a1fab
# We'll turn the execute bit on again in %%files.
2a1fab
chmod 644 $RPM_BUILD_ROOT%{_libexecdir}/valgrind/vgpreload*-%{valarch}-*so
2a1fab
2a1fab
%check
2a1fab
# Make sure some info about the system is in the build.log
2a1fab
# Add || true because rpm on copr EPEL6 acts weirdly and we don't want
2a1fab
# to break the build.
2a1fab
uname -a
2a1fab
rpm -q glibc gcc binutils || true
2a1fab
%if %{run_full_regtest}
2a1fab
rpm -q gdb || true
2a1fab
%endif
2a1fab
2a1fab
LD_SHOW_AUXV=1 /bin/true
2a1fab
cat /proc/cpuinfo
2a1fab
2a1fab
# Make sure a basic binary runs. There should be no errors.
2a1fab
./vg-in-place --error-exitcode=1 /bin/true --help
2a1fab
2a1fab
# Build the test files with the software collection compiler if available.
2a1fab
%{?scl:PATH=%{_bindir}${PATH:+:${PATH}}}
2a1fab
# Make sure no extra CFLAGS, CXXFLAGS or LDFLAGS leak through,
2a1fab
# the testsuite sets all flags necessary. See also configure above.
2a1fab
make %{?_smp_mflags} CFLAGS="" CXXFLAGS="" LDFLAGS="" check
2a1fab
2a1fab
# Workaround https://bugzilla.redhat.com/show_bug.cgi?id=1434601
2a1fab
# for gdbserver tests.
2a1fab
export PYTHONCOERCECLOCALE=0
2a1fab
2a1fab
echo ===============TESTING===================
2a1fab
%if %{run_full_regtest}
2a1fab
  make regtest || :
2a1fab
%else
2a1fab
  make nonexp-regtest || :
2a1fab
%endif
2a1fab
2a1fab
# Make sure test failures show up in build.log
2a1fab
# Gather up the diffs (at most the first 20 lines for each one)
2a1fab
MAX_LINES=20
2a1fab
diff_files=`find gdbserver_tests */tests -name '*.diff*' | sort`
2a1fab
if [ z"$diff_files" = z ] ; then
2a1fab
   echo "Congratulations, all tests passed!" >> diffs
2a1fab
else
2a1fab
   for i in $diff_files ; do
2a1fab
      echo "=================================================" >> diffs
2a1fab
      echo $i                                                  >> diffs
2a1fab
      echo "=================================================" >> diffs
2a1fab
      if [ `wc -l < $i` -le $MAX_LINES ] ; then
2a1fab
         cat $i                                                >> diffs
2a1fab
      else
2a1fab
         head -n $MAX_LINES $i                                 >> diffs
2a1fab
         echo "<truncated beyond $MAX_LINES lines>"            >> diffs
2a1fab
      fi
2a1fab
   done
2a1fab
fi
2a1fab
cat diffs
2a1fab
echo ===============END TESTING===============
2a1fab
2a1fab
%files
2a1fab
%doc COPYING NEWS README_*
2a1fab
%doc docs/installed/html docs/installed/*.pdf
2a1fab
%{_bindir}/*
2a1fab
%dir %{_libexecdir}/valgrind
2a1fab
# Install everything in the libdir except the .so.
2a1fab
# The vgpreload so files might need file mode adjustment.
2a1fab
%{_libexecdir}/valgrind/*[^o]
2a1fab
# Turn on executable bit again for vgpreload libraries.
2a1fab
# Was disabled in %%install to prevent debuginfo stripping.
2a1fab
%attr(0755,root,root) %{_libexecdir}/valgrind/vgpreload*-%{valarch}-*so
2a1fab
%{_mandir}/man1/*
2a1fab
2a1fab
%files devel
2a1fab
%dir %{_includedir}/valgrind
2a1fab
%{_includedir}/valgrind/valgrind.h
2a1fab
%{_includedir}/valgrind/callgrind.h
2a1fab
%{_includedir}/valgrind/drd.h
2a1fab
%{_includedir}/valgrind/helgrind.h
2a1fab
%{_includedir}/valgrind/memcheck.h
2a1fab
%{_libdir}/pkgconfig/valgrind.pc
2a1fab
2a1fab
%if %{build_tools_devel}
2a1fab
%files tools-devel
2a1fab
%{_includedir}/valgrind/config.h
2a1fab
%{_includedir}/valgrind/libvex*h
2a1fab
%{_includedir}/valgrind/pub_tool_*h
2a1fab
%{_includedir}/valgrind/vki
2a1fab
%dir %{_libdir}/valgrind
2a1fab
%{_libdir}/valgrind/*.a
2a1fab
%endif
2a1fab
2a1fab
%if %{build_openmpi}
2a1fab
%files openmpi
2a1fab
%dir %{_libdir}/valgrind
2a1fab
%{_libdir}/openmpi/valgrind/libmpiwrap*.so
2a1fab
%{_libdir}/valgrind/libmpiwrap*.so
2a1fab
%endif
2a1fab
2a1fab
%if 0%{?rhel} == 6
2a1fab
%post
2a1fab
# There is a bug in rpm (rhbz#214737) that might cause post to be run
2a1fab
# even thought the binary isn't installed when installing two multilib
2a1fab
# versions at the same time.
2a1fab
if [ -x %{_bindir}/valgrind ]; then
2a1fab
# On RHEL6 the fs equivalency should be setup by the devtoolset meta
2a1fab
# package, but because of a rpm bug (rhbz#924044) it might not work.
2a1fab
%{?scl:/sbin/restorecon %{_bindir}/valgrind}%{!?scl:true}
2a1fab
fi
2a1fab
%endif
2a1fab
2a1fab
%changelog
2a1fab
* Wed May 29 2019 Mark Wielaard <mjw@redhat.com> - 3.15.0-9
2a1fab
- Add valgrind-3.15.0-pkey.patch
2a1fab
- Add valgrind-3.15.0-avx-rdrand-f16c.patch.
2a1fab
2a1fab
* Fri May 24 2019 Mark Wielaard <mjw@redhat.com> - 3.15.0-6
2a1fab
- Update valgrind-3.15.0-copy_file_range.patch.
2a1fab
- Update valgrind-3.15.0-some-stack-protector.patch to include getoff.
2a1fab
- Add valgrind-3.15.0-some-Wl-z-now.patch
2a1fab
- Add valgrind-3.15.0-s390x-wrap-drd.patch
2a1fab
2a1fab
* Mon May 20 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-5
2a1fab
- Add valgrind-3.15.0-exp-sgcheck-no-aarch64.patch
2a1fab
- Add valgrind-3.15.0-scalar-arm64.patch
2a1fab
- Add valgrind-3.15.0-scalar-x86.patch
2a1fab
2a1fab
* Wed May  8 2019 Mark Wielaard <mjw@redhat.com> - 3.15.0-4
2a1fab
- Add valgrind-3.15.0-copy_file_range.patch
2a1fab
- Add valgrind-3.15.0-arm64-ld-stpcpy.patch
2a1fab
2a1fab
* Tue May  7 2019 Mark Wielaard <mjw@redhat.com> - 3.15.0-2
2a1fab
- valgrind-3.15.0 final
2a1fab
- clean up build flags
2a1fab
2a1fab
* Wed Apr 17 2019 Mark Wielaard <mjw@redhat.com> - 3.14.0-11
2a1fab
- Rebuilt with s390x-vec-facility-bit for 8.1.0 (#1669234)
2a1fab
2a1fab
* Thu Jan 24 2019 Mark Wielaard <mjw@redhat.com> - 3.14.0-10
2a1fab
- Add valgrind-3.14.0-s390x-vec-facility-bit.patch.
2a1fab
2a1fab
* Mon Jan  7 2019 Mark Wielaard <mjw@redhat.com> - 3.14.0-9
2a1fab
- Add valgrind-3.14.0-power9-addex.patch
2a1fab
2a1fab
* Thu Dec 20 2018 Mark Wielaard <mjw@redhat.com> - 3.14.0-8
2a1fab
- Update valgrind-3.14.0-jm-vmx-constraints.patch for ppc64. (#1658680)
2a1fab
- Show all diff files in check, not just the main/default one.
2a1fab
2a1fab
* Mon Dec 17 2018 Mark Wielaard <mjw@redhat.com> - 3.14.0-7
2a1fab
- Add valgrind-3.14.0-arm64-ptrace-traceme.patch
2a1fab
- Add valgrind-3.14.0-mc_translate-vecret.patch
2a1fab
2a1fab
* Wed Dec 12 2018 Mark Wielaard <mjw@redhat.com> - 3.14.0-6
2a1fab
- Add valgrind-3.14.0-final_tidyup.patch
2a1fab
- Add valgrind-3.14.0-ppc64-ldbrx.patch
2a1fab
- Add valgrind-3.14.0-ppc64-unaligned-words.patch
2a1fab
- Add valgrind-3.14.0-ppc64-lxvd2x.patch
2a1fab
- Add valgrind-3.14.0-ppc64-unaligned-vecs.patch
2a1fab
- Add valgrind-3.14.0-ppc64-lxvb16x.patch
2a1fab
- Add valgrind-3.14.0-set_AV_CR6.patch
2a1fab
- Add valgrind-3.14.0-undef_malloc_args.patch
2a1fab
- Add valgrind-3.14.0-jm-vmx-constraints.patch
2a1fab
- Add valgrind-3.14.0-sigkill.patch
2a1fab
- Add valgrind-3.14.0-ppc64-ptrace.patch
2a1fab
2a1fab
* Tue Dec  4 2018 Mark Wielaard <mjw@redhat.com>
2a1fab
- Add valgrind-3.14.0-wcsncmp.patch (#1655642)
2a1fab
2a1fab
- Replace valgrind-3.14.0-s390x-vec-float-point-{code,test}.patch
2a1fab
  with upstream versions. (#1525405)
2a1fab
2a1fab
* Fri Nov 23 2018 Mark Wielaard  <mjw@redhat.com> - 3.14.0-4
2a1fab
- Add valgrind-3.14.0-get_otrack_shadow_offset_wrk-ppc.patch,
2a1fab
  valgrind-3.14.0-new-strlen-IROps.patch,
2a1fab
  valgrind-3.14.0-ppc-instr-new-IROps.patch,
2a1fab
  valgrind-3.14.0-memcheck-new-IROps.patch,
2a1fab
  valgrind-3.14.0-ppc-frontend-new-IROps.patch,
2a1fab
  valgrind-3.14.0-transform-popcount64-ctznat64.patch and
2a1fab
  valgrind-3.14.0-enable-ppc-Iop_Sar_Shr8.patch (#1532205)
2a1fab
2a1fab
* Wed Nov 21 2018 Mark Wielaard  <mjw@redhat.com> - 3.14.0-3
2a1fab
- Add valgrind-3.14.0-s390z-more-z13-fixes.patch.
2a1fab
2a1fab
* Tue Nov 20 2018 Mark Wielaard  <mjw@redhat.com> - 3.14.0-2
2a1fab
- Add valgrind-3.14.0-s390x-fix-reg-alloc-vr-vs-fpr.patch.
2a1fab
- Add valgrind-3.14.0-s390x-sign-extend-lochi.patch.
2a1fab
- Add valgrind-3.14.0-s390x-vec-reg-vgdb.patch.
2a1fab
- Add valgrind-3.14.0-s390x-vec-float-point-code.patch
2a1fab
  and valgrind-3.14.0-s390x-vec-float-point-tests.patch
2a1fab
- Only run full regtests on x86_64 on fedora or latest rhel.
2a1fab
2a1fab
* Tue Oct  9 2018 Mark Wielaard  <mjw@redhat.com> - 3.14.0-1
2a1fab
- valgrind 3.14.0 (#1569600).
2a1fab
- Enable s390x again.
2a1fab
2a1fab
* Fri Aug 10 2018 Mark Wielaard  <mjw@fedoraproject.org> - 3.13.0-29
2a1fab
- Add valgrind-3.13.0-utime.patch
2a1fab
2a1fab
* Thu Aug  9 2018 Florian Weimer <fweimer@redhat.com> - 1:3.13.0-28
2a1fab
- Rebuild to remove s390x packages due to lack of z13 support (#1525405)
2a1fab
2a1fab
* Fri Aug  3 2018 Mark Wielaard  <mjw@fedoraproject.org> - 3.13.0-27
2a1fab
- Add valgrind-3.13.0-ppc64-xsmaxcdp.patch
2a1fab
2a1fab
* Fri Aug  3 2018 Mark Wielaard  <mjw@fedoraproject.org> - 3.13.0-26
2a1fab
- Use valgrind_arches for ExclusiveArch when defined.
2a1fab
- Use restorecon for scl on rhel6 to work around rpm bug (#1610676).
2a1fab
2a1fab
* Tue Jul 31 2018 Mark Wielaard  <mjw@fedoraproject.org> - 3.13.0-25
2a1fab
- Add valgrind-3.13.0-x86-arch_prctl.patch (#1610304)
2a1fab
2a1fab
* Mon Jul 30 2018 Florian Weimer <fweimer@redhat.com> - 3.13.0-24
2a1fab
- Rebuild with fixed binutils
2a1fab
2a1fab
* Fri Jul 27 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-23
2a1fab
- Remove valgrind-3.13.0-arm-disable-vfp-test.patch
2a1fab
2a1fab
* Thu Jul 26 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-22
2a1fab
- Add valgrind-3.13.0-arch_prctl.patch (#1608824)
2a1fab
2a1fab
* Thu Jul 12 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-21
2a1fab
- Add valgrind-3.13.0-separate-code.patch (#1600034)
2a1fab
- Add valgrind-3.13.0-arm-disable-vfp-test.patch
2a1fab
2a1fab
* Thu Jul  5 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-20
2a1fab
- Don't try a full_regtest under scl, also don't adjust PATH.
2a1fab
2a1fab
* Thu Apr 12 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-19
2a1fab
- Improved valgrind-3.13.0-arm64-hwcap.patch
2a1fab
- Add valgrind-3.13.0-arm64-ptrace.patch
2a1fab
2a1fab
* Thu Apr 12 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-18
2a1fab
- Add valgrind-3.13.0-build-id-phdrs.patch (#1566639)
2a1fab
2a1fab
* Tue Feb 27 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-17
2a1fab
- Add valgrind-3.13.0-ppc64-mtfprwa-constraint.patch.
2a1fab
2a1fab
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.13.0-16
2a1fab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2a1fab
2a1fab
* Tue Jan 23 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-15
2a1fab
- Split valgrind-tools-devel from valgrind-devel.
2a1fab
- Make building of libmpi wrapper explicit.
2a1fab
2a1fab
* Mon Jan 22 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-14
2a1fab
- undefine _strict_symbol_defs_build.
2a1fab
2a1fab
* Tue Jan  2 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-13
2a1fab
- Add additional fix to valgrind-3.13.0-debug-alt-file.patch.
2a1fab
2a1fab
* Tue Dec 12 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-12
2a1fab
- Add valgrind-3.13.0-s390-cgijnl.patch.
2a1fab
- Use upstream version of valgrind-3.13.0-debug-alt-file.patch.
2a1fab
2a1fab
* Sun Dec 10 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-11
2a1fab
- Add valgrind-3.13.0-debug-alt-file.patch.
2a1fab
2a1fab
* Thu Nov  2 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-10
2a1fab
- Add valgrind-3.13.0-ppc64-timebase.patch.
2a1fab
2a1fab
* Tue Oct 17 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-9
2a1fab
- Add valgrind-3.13.0-amd64-eflags-tests.patch
2a1fab
- Add valgrind-3.13.0-suppress-dl-trampoline-sse-avx.patch
2a1fab
- Add valgrind-3.13.0-static-tls.patch
2a1fab
2a1fab
* Mon Oct 16 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-8
2a1fab
- Add valgrind-3.13.0-ppc64-vex-fixes.patch
2a1fab
2a1fab
* Thu Aug 17 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-7
2a1fab
- Add valgrind-3.13.0-xml-socket.patch
2a1fab
2a1fab
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.13.0-6
2a1fab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
2a1fab
2a1fab
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.13.0-5
2a1fab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2a1fab
2a1fab
* Fri Jul  7 2017 Mark Wielaard <mjw@fedoraproject.org>
2a1fab
- Add --error-exitcode=1 to /bin/true check.
2a1fab
2a1fab
* Thu Jun 29 2017 Mark Wielaard <mjw@fedoraproject.org> 3.13.0-4
2a1fab
- Add valgrind-3.13.0-arm-index-hardwire.patch (#1466017)
2a1fab
- Add valgrind-3.13.0-ucontext_t.patch
2a1fab
- Add valgrind-3.13.0-gdb-8-testfix.patch
2a1fab
- Add valgrind-3.13.0-disable-vgdb-child.patch
2a1fab
2a1fab
* Fri Jun 23 2017 Mark Wielaard <mjw@fedoraproject.org> 3.13.0-3
2a1fab
- Add valgrind-3.13.0-arm64-hwcap.patch (#1464211)
2a1fab
2a1fab
* Sat Jun 17 2017 Mark Wielaard <mjw@fedoraproject.org> 3.13.0-2
2a1fab
- Add valgrind-3.13.0-ppc64-check-no-vsx.patch
2a1fab
- Add valgrind-3.13.0-epoll_pwait.patch (#1462258)
2a1fab
- Add valgrind-3.13.0-ppc64-diag.patch
2a1fab
2a1fab
* Thu Jun 15 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-1
2a1fab
- valgrind 3.13.0 final.
2a1fab
- Drop all upstreamed patches.
2a1fab
2a1fab
* Tue Jun  6 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-0.2.RC1
2a1fab
- Add valgrind-3.13.0-arm-dcache.patch
2a1fab
- Add valgrind-3.13.0-g++-4.4.patch
2a1fab
- Add valgrind-3.13.0-s390x-GI-strcspn.patch
2a1fab
- Add valgrind-3.13.0-xtree-callgrind.patch
2a1fab
2a1fab
* Fri Jun  2 2017 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-0.1.RC1
2a1fab
- Update description as suggested by Ivo Raisr.
2a1fab
- Workaround gdb/python bug in testsuite (#1434601)
2a1fab
- Update to upstream 3.13.0-RC1.
2a1fab
- Drop all upstreamed patches.
2a1fab
2a1fab
* Tue Mar 28 2017 Mark Wielaard <mjw@redhat.com> - 3.12.0-8
2a1fab
- Add valgrind-3.12.0-powerpc-register-pair.patch
2a1fab
- Add valgrind-3.12.0-ppc64-isa-3_00.patch
2a1fab
2a1fab
* Sat Feb 18 2017 Mark Wielaard <mjw@redhat.com> - 3.12.0-7
2a1fab
- Add valgrind-3.12.0-aarch64-syscalls.patch
2a1fab
2a1fab
* Sat Feb 18 2017 Mark Wielaard <mjw@redhat.com> - 3.12.0-6
2a1fab
- Add valgrind-3.12.0-arm64-ppc64-prlimit64.patch
2a1fab
- Add valgrind-3.12.0-arm64-hint.patch
2a1fab
- Add valgrind-3.12.0-clone-spawn.patch
2a1fab
- Add valgrind-3.12.0-quick-fatal-sigs.patch
2a1fab
- Add valgrind-3.12.0-exit_group.patch
2a1fab
- Add valgrind-3.12.0-deregister-stack.patch
2a1fab
- Add valgrind-3.12.0-x86-gdt-and-ss.patch
2a1fab
- Add valgrind-3.12.0-cd-dvd-ioctl.patch
2a1fab
- Add valgrind-3.12.0-tests-cxx11_abi_0.patch
2a1fab
- Add valgrind-3.12.0-helgrind-dl_allocate_tls-supp.patch
2a1fab
- Add valgrind-3.12.0-ppc-xxsel.patch
2a1fab
2a1fab
* Fri Feb 17 2017 Mark Wielaard <mjw@redhat.com> - 3.12.0-5
2a1fab
- Add valgrind-3.12.0-ppc64-r2.patch (#1424367)
2a1fab
2a1fab
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.12.0-4
2a1fab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2a1fab
2a1fab
* Sat Nov 12 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-3
2a1fab
- Add valgrind-3.12.0-nocwd-cleanup.patch (#1390282)
2a1fab
2a1fab
* Fri Oct 21 2016 Orion Poplawski <orion@cora.nwra.com> - 1:3.12.0-2
2a1fab
- Rebuild for openmpi 2.0
2a1fab
2a1fab
* Fri Oct 21 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-1
2a1fab
- Update to valgrind 3.12.0 release.
2a1fab
2a1fab
* Thu Oct 20 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-0.4-RC2
2a1fab
- Update to 3.12.0-RC1. Drop integrated patches.
2a1fab
- Add valgrind-3.12.0-skip-cond-var.patch
2a1fab
2a1fab
* Fri Sep 30 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-0.3-BETA1
2a1fab
- Clear CFLAGS, CXXFLAGS and LDFLAGS during make check.
2a1fab
2a1fab
* Thu Sep 29 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-0.2-BETA1
2a1fab
- Add valgrind-3.12-beta1-ppc64be.patch.
2a1fab
- Enable gdb_server tests again.
2a1fab
2a1fab
* Tue Sep 20 2016 Mark Wielaard <mjw@redhat.com> - 3.12.0-0.1-BETA1
2a1fab
- Update to valgrind 3.12.0 pre-release.
2a1fab
  - Drop upstreamed patches.
2a1fab
  - Disable exp-tests in %%check. GDB crashes on gdb_server tests.
2a1fab
2a1fab
* Fri Jul 22 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-26
2a1fab
- Only build valgrind-openmpi when not creating a software collection.
2a1fab
- No support for multilib on secondary arches when creating scl.
2a1fab
- Touch up empty .exp files.
2a1fab
2a1fab
* Thu Jul 21 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-24
2a1fab
- Mandatory Perl build-requires added
2a1fab
- Add valgrind-3.11.0-shr.patch
2a1fab
- Add valgrind-3.11.0-pcmpxstrx-0x70-0x19.patch
2a1fab
- Update valgrind-3.11.0-wrapmalloc.patch
2a1fab
- Add valgrind-3.11.0-sighandler-stack.patch
2a1fab
2a1fab
* Tue Jun 21 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-23
2a1fab
- Update valgrind-3.11.0-ppoll-mask.patch (#1344082)
2a1fab
2a1fab
* Mon May 30 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-22
2a1fab
- Add valgrind-3.11.0-arm64-handle_at.patch
2a1fab
- Add valgrind-3.11.0-ppc64-syscalls.patch
2a1fab
2a1fab
* Fri Apr 29 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-21
2a1fab
- Add valgrind-3.11.0-deduppoolalloc.patch
2a1fab
- Add valgrind-3.11.0-ppc-bcd-addsub.patch
2a1fab
- Add valgrind-3.11.0-ppc64-vgdb-vr-regs.patch
2a1fab
2a1fab
* Fri Apr 15 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-20
2a1fab
- Update valgrind-3.11.0-cxx-freeres.patch (x86 final_tidyup fix)
2a1fab
- Add valgrind-3.11.0-s390x-risbgn.patch
2a1fab
2a1fab
* Sun Apr 03 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-19
2a1fab
- Add valgrind-3.11.0-cxx-freeres.patch (#1312647)
2a1fab
- Add valgrind-3.11.0-ppc64-separate-socketcalls.patch
2a1fab
- Add valgrind-3.11.0-isZeroU.patch
2a1fab
- Replace valgrind-3.11.0-arm64-ldpsw.patch with upstream version
2a1fab
- Add valgrind-3.11.0-ppc64-128bit-mod-carry.patch
2a1fab
- Add valgrind-3.11.0-amd64-fcom.patch
2a1fab
- Add valgrind-3.11.0-z13s.patch
2a1fab
- Add valgrind-3.11.0-gdb-test-filters.patch
2a1fab
2a1fab
* Mon Mar 14 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-18
2a1fab
- Update valgrind-3.11.0-libstdc++-supp.patch.
2a1fab
- Add valgrind-3.11.0-arm64-ldr-literal-test.patch.
2a1fab
- Add valgrind-3.11.0-arm64-ldpsw.patch
2a1fab
2a1fab
* Thu Mar 10 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-17
2a1fab
- Update valgrind-3.11.0-arm64-more-syscalls.patch
2a1fab
- Add valgrind-3.11.0-libstdc++-supp.patch (#1312647)
2a1fab
2a1fab
* Wed Mar 09 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-16
2a1fab
- Add valgrind-3.11.0-ppoll-mask.patch
2a1fab
- Add valgrind-3.11.0-arm64-more-syscalls.patch
2a1fab
2a1fab
* Wed Feb 24 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-15
2a1fab
- Add valgrind-3.11.0-s390-separate-socketcalls.patch
2a1fab
- Add valgrind-3.11.0-amd64-ld-index.patch
2a1fab
2a1fab
* Thu Feb 18 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-14
2a1fab
- Update valgrind-3.11.0-futex.patch (fix helgrind/drd regression).
2a1fab
- Update valgrind-3.11.0-x86_unwind.patch (include amd64 fix).
2a1fab
2a1fab
* Wed Feb 17 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-13
2a1fab
- Remove valgrind-3.11.0-no-stv.patch (gcc6 has been fixed).
2a1fab
- Add valgrind-3.11.0-futex.patch
2a1fab
- Add valgrind-3.11.0-s390x-popcnt.patch
2a1fab
2a1fab
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.11.0-12
2a1fab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2a1fab
2a1fab
* Sat Jan 30 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-11
2a1fab
- Add valgrind-3.11.0-no-stv.patch (GCC6 workaround).
2a1fab
2a1fab
* Mon Jan 25 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-10
2a1fab
- Add valgrind-3.11.0-drd_std_thread.patch GCC6 build fix.
2a1fab
2a1fab
* Fri Jan 22 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-9
2a1fab
- Fix valgrind-3.11.0-pthread_barrier.patch to apply with older patch.
2a1fab
- Fix multilib issue in config.h with HAVE_AS_AMD64_FXSAVE64.
2a1fab
2a1fab
* Thu Jan 21 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-8
2a1fab
- Add valgrind-3.11.0-rlimit_data.patch
2a1fab
- Add valgrind-3.11.0-fclose.patch
2a1fab
- Add valgrind-3.11.0-pthread_spin_destroy.patch
2a1fab
- Add valgrind-3.11.0-socketcall-x86-linux.patch
2a1fab
- Don't strip debuginfo from vgpreload libaries.
2a1fab
  Enable dwz for everything else again.
2a1fab
- Add valgrind-3.11.0-is_stmt.patch
2a1fab
- Add valgrind-3.11.0-x86_unwind.patch
2a1fab
2a1fab
* Tue Jan 19 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-7
2a1fab
- Add valgrind-3.11.0-pthread_barrier.patch
2a1fab
2a1fab
* Sat Jan 16 2016 Mark Wielaard <mjw@redhat.com> - 3.11.0-6
2a1fab
- Add valgrind-3.11.0-aspacemgr.patch (#1283774)
2a1fab
2a1fab
* Sun Nov 15 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-5
2a1fab
- Add valgrind-3.11.0-wrapmalloc.patch
2a1fab
2a1fab
* Mon Oct 12 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-4
2a1fab
- Fix parenthesis in valgrind-3.11.0-rexw-cvtps2pd.patch.
2a1fab
- Add valgrind-3.11.0-s390-hwcap.patch
2a1fab
2a1fab
* Mon Oct 12 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-3
2a1fab
- Add valgrind-3.11.0-rexw-cvtps2pd.patch.
2a1fab
2a1fab
* Thu Oct 01 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-2
2a1fab
- Add valgrind-3.11.0-no-rdrand.patch
2a1fab
2a1fab
* Wed Sep 23 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-1
2a1fab
- Upgrade to valgrind 3.11.0 final
2a1fab
- Drop patches included upstream
2a1fab
  - valgrind-3.11.0-ppc-dfp-guard.patch
2a1fab
  - valgrind-3.11.0-ppc-ppr.patch
2a1fab
  - valgrind-3.11.0-ppc-mbar.patch
2a1fab
  - valgrind-3.11.0-glibc-futex-message.patch
2a1fab
  - valgrind-3.11.0-arm64-libvex_test.patch
2a1fab
  - valgrind-3.11.0-arm-warnings.patch
2a1fab
  - valgrind-3.11.0-arm-no-cast-align.patch
2a1fab
  - valgrind-3.11.0-ppc-vbit-test.patch
2a1fab
- Add arm64 syscall patches
2a1fab
  - valgrind-3.11.0-arm64-xattr.patch
2a1fab
  - valgrind-3.11.0-arm64-sigpending.patch
2a1fab
2a1fab
* Sat Sep 19 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-0.4.TEST1
2a1fab
- Add valgrind-3.11.0-ppc-dfp-guard.patch
2a1fab
- Add valgrind-3.11.0-ppc-ppr.patch
2a1fab
- Add valgrind-3.11.0-ppc-mbar.patch
2a1fab
2a1fab
* Fri Sep 18 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-0.3.TEST1
2a1fab
- Make sure some info about the system is in the build.log before check.
2a1fab
- Add valgrind-3.11.0-glibc-futex-message.patch
2a1fab
- Add valgrind-3.11.0-arm64-libvex_test.patch
2a1fab
- Add valgrind-3.11.0-arm-warnings.patch
2a1fab
- Add valgrind-3.11.0-arm-no-cast-align.patch
2a1fab
- Add valgrind-3.11.0-ppc-vbit-test.patch
2a1fab
2a1fab
* Tue Sep 15 2015 Orion Poplawski <orion@cora.nwra.com> - 1:3.11.0-0.2.TEST1
2a1fab
- Rebuild for openmpi 1.10.0
2a1fab
2a1fab
* Thu Sep 10 2015 Mark Wielaard <mjw@redhat.com> - 3.11.0-0.1.TEST1
2a1fab
- Add BuildRequires perl(Getopt::Long)
2a1fab
- Upgrade to valgrind 3.11.0.TEST1
2a1fab
- Remove upstreamed valgrind-3.10.1-gdb-file-warning.patch
2a1fab
2a1fab
* Tue Aug 25 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-22.svn20150825r15589
2a1fab
- Drop valgrind-3.9.0-stat_h.patch.
2a1fab
- Add BuildRequires gcc-c++.
2a1fab
- Update to current valgrind svn (svn20150825r15589)
2a1fab
- Add valgrind-3.10.1-gdb-file-warning.patch
2a1fab
2a1fab
* Mon Aug 17 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-21.svn20150817r15561
2a1fab
- Update to current valgrind svn. Drop patches now upstream.
2a1fab
2a1fab
* Mon Aug 17 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-20
2a1fab
- Don't try to move around libmpiwrap when not building for openmpi (s390x)
2a1fab
2a1fab
* Fri Aug 14 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-19
2a1fab
- Install libmpiwrap library under {_libdir}/openmpi/valgrind (#1238428)
2a1fab
2a1fab
* Mon Aug 10 2015 Sandro Mani <manisandro@gmail.com> - 1:3.10.1-18
2a1fab
- Rebuild for RPM MPI Requires Provides Change
2a1fab
2a1fab
* Mon Aug 10 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-17
2a1fab
- Add setuid and setresgid to valgrind-3.10.1-aarch64-syscalls.patch.
2a1fab
2a1fab
* Mon Aug 03 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-16
2a1fab
- Add valgrind-3.10.1-ppc64-hwcap2.patch
2a1fab
2a1fab
* Wed Jul 08 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-15
2a1fab
- Update valgrind-3.10.1-s390x-fiebra.patch
2a1fab
2a1fab
* Wed Jul 08 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-14
2a1fab
- Add valgrind-3.10.1-s390x-fiebra.patch
2a1fab
2a1fab
* Tue Jul 07 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-13
2a1fab
- Add valgrind-3.10.1-di_notify_mmap.patch
2a1fab
- Add valgrind-3.10.1-memmove-ld_so-ppc64.patch
2a1fab
2a1fab
* Fri Jun 19 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-12
2a1fab
- Add valgrind-3.10.1-kernel-4.0.patch.
2a1fab
2a1fab
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.10.1-11
2a1fab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2a1fab
2a1fab
* Sun Jun 07 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-10
2a1fab
- Add valgrind-3.10.1-cfi-redzone.patch.
2a1fab
2a1fab
* Wed Jun 03 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-9
2a1fab
- Add valgrind-3.10.1-memfd_create.patch.
2a1fab
- Add valgrind-3.10.1-syncfs.patch.
2a1fab
- Add valgrind-3.10.1-arm-process_vm_readv_writev.patch.
2a1fab
- Add valgrind-3.10.1-fno-ipa-icf.patch.
2a1fab
- Add valgrind-3.10.1-demangle-q.patch
2a1fab
2a1fab
* Fri May 22 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-8
2a1fab
- Disable extended regtest on arm. The gdb tests hang for unknown reasons.
2a1fab
  The reason is a glibc bug #1196181 which causes:
2a1fab
  "GDB fails with Cannot parse expression `.L1055 4@r4'."
2a1fab
2a1fab
* Wed Apr 22 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-7
2a1fab
- Add valgrind-3.10-1-ppc64-sigpending.patch
2a1fab
- Filter out -fstack-protector-strong and disable _hardened_build.
2a1fab
2a1fab
* Wed Feb 18 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-6
2a1fab
- Add valgrind-3.10.1-send-recv-mmsg.patch
2a1fab
- Add mount and umount2 to valgrind-3.10.1-aarch64-syscalls.patch.
2a1fab
- Add valgrind-3.10.1-glibc-version-check.patch
2a1fab
2a1fab
* Tue Feb 10 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-5
2a1fab
- Add accept4 to valgrind-3.10.1-aarch64-syscalls.patch.
2a1fab
- Add valgrind-3.10.1-ppc64-accept4.patch.
2a1fab
2a1fab
* Sun Feb 08 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-4
2a1fab
- Add valgrind-3.10.1-aarch64-syscalls.patch.
2a1fab
2a1fab
* Thu Feb 05 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-3
2a1fab
- Add valgrind-3.10-s390-spechelper.patch.
2a1fab
2a1fab
* Tue Jan 13 2015 Mark Wielaard <mjw@redhat.com> - 3.10.1-2
2a1fab
- Add valgrind-3.10.1-mempcpy.patch.
2a1fab
2a1fab
* Wed Nov 26 2014 Mark Wielaard <mjw@redhat.com> - 3.10.1-1
2a1fab
- Upgrade to 3.10.1 final.
2a1fab
2a1fab
* Mon Nov 24 2014 Mark Wielaard <mjw@redhat.com> - 3.10.1-0.1.TEST1
2a1fab
- Upgrade to valgrind 3.10.1.TEST1
2a1fab
- Remove patches that are now upstream:
2a1fab
  - valgrind-3.10.0-old-ppc32-instr-magic.patch
2a1fab
  - valgrind-3.10.0-aarch64-syscalls.patch
2a1fab
  - valgrind-3.10.0-aarch64-dmb-sy.patch
2a1fab
  - valgrind-3.10.0-aarch64-frint.patch
2a1fab
  - valgrind-3.10.0-fcvtmu.patch
2a1fab
  - valgrind-3.10.0-aarch64-fcvta.patch
2a1fab
2a1fab
* Wed Nov 19 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-6
2a1fab
- Add getgroups/setgroups to valgrind-3.10.0-aarch64-syscalls.patch
2a1fab
2a1fab
* Tue Nov  4 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-5
2a1fab
- Merge valgrind-3.10.0-aarch64-times.patch
2a1fab
  and valgrind-3.10.0-aarch64-getsetsid.patch
2a1fab
  into valgrind-3.10.0-aarch64-syscalls.patch
2a1fab
  add fdatasync, msync, pread64, setreuid, setregid,
2a1fab
  mknodat, fchdir, chroot, fchownat, fchmod and fchown.
2a1fab
- Add valgrind-3.10.0-aarch64-frint.patch
2a1fab
- Add valgrind-3.10.0-fcvtmu.patch
2a1fab
- Add valgrind-3.10.0-aarch64-fcvta.patch
2a1fab
2a1fab
* Sat Oct 11 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-4
2a1fab
- Add valgrind-3.10.0-aarch64-times.patch
2a1fab
- Add valgrind-3.10.0-aarch64-getsetsid.patch
2a1fab
- Add valgrind-3.10.0-aarch64-dmb-sy.patch
2a1fab
2a1fab
* Mon Sep 15 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-3
2a1fab
- Add valgrind-3.10.0-old-ppc32-instr-magic.patch.
2a1fab
2a1fab
* Fri Sep 12 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-2
2a1fab
- Fix ppc32 multilib handling on ppc64[be].
2a1fab
- Drop ppc64 secondary for ppc32 primary support.
2a1fab
- Except for armv7hl we don't support any other arm[32] arch.
2a1fab
2a1fab
* Thu Sep 11 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-1
2a1fab
- Update to 3.10.0 final.
2a1fab
- Remove valgrind-3.10-configure-glibc-2.20.patch fixed upstream.
2a1fab
2a1fab
* Mon Sep  8 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-0.2.BETA2
2a1fab
- Update to 3.10.0.BETA2.
2a1fab
- Don't run dwz or generate minisymtab.
2a1fab
- Remove valgrind-3.9.0-s390x-ld-supp.patch fixed upstream.
2a1fab
- Add valgrind-3.10-configure-glibc-2.20.patch.
2a1fab
2a1fab
* Tue Sep  2 2014 Mark Wielaard <mjw@redhat.com> - 3.10.0-0.1.BETA1
2a1fab
- Update to official upstream 3.10.0 BETA1.
2a1fab
  - Enables inlined frames in stacktraces.
2a1fab
2a1fab
* Fri Aug 29 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-26.svn20140829r14384
2a1fab
- Update to upstream svn r14384
2a1fab
- Enable gdb_server tests again for arm and aarch64
2a1fab
2a1fab
* Wed Aug 27 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-25.svn20140827r14370
2a1fab
- Update to upstream svn r14370
2a1fab
- Remove ppc testfile copying (no longer patched in)
2a1fab
2a1fab
* Mon Aug 18 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-24.svn20140818r14303
2a1fab
- Update to upstream svn r14303
2a1fab
- Move fake libgcc into shared to not break post-regtest-checks.
2a1fab
- autogen.sh execution no longer needed in %%build.
2a1fab
2a1fab
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.9.0-23.svn20140809r14250
2a1fab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2a1fab
2a1fab
* Sat Aug  9 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-22.svn20140809r14250
2a1fab
- Update to upstream svn r14250
2a1fab
  - ppc64le support got integrated upstream. Remove patches:
2a1fab
    valgrind-3.9.0-ppc64le-initial.patch
2a1fab
    valgrind-3.9.0-ppc64le-functional.patch
2a1fab
    valgrind-3.9.0-ppc64le-test.patch
2a1fab
    valgrind-3.9.0-ppc64le-extra.patch
2a1fab
2a1fab
* Sat Jul 19 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-21.svn20140718r14176
2a1fab
- Disable full regtest on arm (gdb integration tests sometimes hang).
2a1fab
2a1fab
* Fri Jul 18 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-20.svn20140718r14176
2a1fab
- Update to upstream svn r14176
2a1fab
  Remove valgrind-3.9.0-arm64-user_regs.patch
2a1fab
- Add ppc64le support
2a1fab
  valgrind-3.9.0-ppc64le-initial.patch
2a1fab
  valgrind-3.9.0-ppc64le-functional.patch
2a1fab
  valgrind-3.9.0-ppc64le-test.patch
2a1fab
  valgrind-3.9.0-ppc64le-extra.patch
2a1fab
2a1fab
* Tue Jul 15 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-19.svn20140715r14165
2a1fab
- Add valgrind-3.9.0-arm64-user_regs.patch
2a1fab
- Disable full regtest on aarch64 (gdb integration tests sometimes hang).
2a1fab
- Enable openmpi support on aarch64.
2a1fab
2a1fab
* Tue Jul 15 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-18.svn20140715r14165
2a1fab
- Update to upstream svn r14165.
2a1fab
- Remove valgrind-3.9.0-ppc64-ifunc.patch.
2a1fab
- Remove valgrind-3.9.0-aarch64-glibc-2.19.90-gcc-4.9.patch
2a1fab
- Remove valgrind-3.9.0-format-security.patch
2a1fab
- Remove valgrind-3.9.0-msghdr.patch
2a1fab
2a1fab
* Fri Jul  4 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-17.svn20140513r13961
2a1fab
- Remove ppc multilib support (#1116110)
2a1fab
- Add valgrind-3.9.0-ppc64-ifunc.patch
2a1fab
2a1fab
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.9.0-16.svn20140513r13961
2a1fab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2a1fab
2a1fab
* Mon May 19 2014 Mark Wielaard <mjw@redhat.com>
2a1fab
- Don't cleanup fake 32-bit libgcc created in %%build.
2a1fab
  make regtest might depend on it to build -m32 binaries.
2a1fab
2a1fab
* Fri May 16 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-15.svn20140513r13961
2a1fab
- Add SHL_d_d_#imm to valgrind-3.9.0-aarch64-glibc-2.19.90-gcc-4.9.patch
2a1fab
2a1fab
* Thu May 15 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-14.svn20140513r13961
2a1fab
- Add valgrind-3.9.0-aarch64-glibc-2.19.90-gcc-4.9.patch
2a1fab
2a1fab
* Tue May 13 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-13.svn20140513r13961
2a1fab
- Update to upstream svn r13961.
2a1fab
- Remove valgrind-3.9.0-mpx.patch integrated upstream now.
2a1fab
- Add valgrind-3.9.0-msghdr.patch
2a1fab
- Add valgrind-3.9.0-format-security.patch
2a1fab
2a1fab
* Thu May 8 2014 Mark Wielaard <mjw@redhat.com> 3.9.0-12.svn20140319r13879
2a1fab
- Add valgrind-3.9.0-mpx.patch (#1087933)
2a1fab
2a1fab
* Wed Mar 19 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-11.svn20140319r13879
2a1fab
- Update to upstream svn r13879. arm64 make check now builds.
2a1fab
2a1fab
* Tue Mar 18 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-10.svn20140318r13876
2a1fab
- Make sure basic binary (/bin/true) runs under valgrind.
2a1fab
  And fail the whole build if not. The regtests are not zero-fail.
2a1fab
- Update to upstream svn r13876.
2a1fab
- Introduce build_openmpi and build_multilib in spec file.
2a1fab
2a1fab
* Tue Mar 11 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-9.svn20140311r13869
2a1fab
- Enable aarch64 based on current upstream svn. Removed upstreamed patches.
2a1fab
  Thanks to Marcin Juszkiewicz <mjuszkiewicz@redhat.com>
2a1fab
2a1fab
* Mon Mar 10 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-8
2a1fab
- Add valgrind-3.9.0-ppc64-priority.patch
2a1fab
2a1fab
* Mon Feb 24 2014 Mark Wielaard <mjw@redhat.com>
2a1fab
- Add upstream fixes to valgrind-3.9.0-timer_create.patch
2a1fab
2a1fab
* Fri Feb 21 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-7
2a1fab
- Add valgrind-3.9.0-glibc-2.19.patch
2a1fab
2a1fab
* Fri Feb 21 2014 Mark Wielaard <mjw@redhat.com> - 3.9.0-6
2a1fab
- Add valgrind-3.9.0-s390-dup3.patch
2a1fab
- Add valgrind-3.9.0-timer_create.patch
2a1fab
2a1fab
* Thu Dec 12 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-5
2a1fab
- Add valgrind-3.9.0-manpage-memcheck-options.patch.
2a1fab
- Add valgrind-3.9.0-s390-fpr-pair.patch.
2a1fab
2a1fab
* Thu Nov 28 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-4
2a1fab
- Add valgrind-3.9.0-xabort.patch.
2a1fab
2a1fab
* Fri Nov 22 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-3
2a1fab
- Add valgrind-3.9.0-anon-typedef.patch.
2a1fab
- Add valgrind-3.9.0-s390x-ld-supp.patch
2a1fab
2a1fab
* Wed Nov 20 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-2
2a1fab
- Add valgrind-3.9.0-dwz-alt-buildid.patch.
2a1fab
- Add valgrind-3.9.0-s390-risbg.patch.
2a1fab
2a1fab
* Fri Nov  1 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-1
2a1fab
- Upgrade to valgrind 3.9.0 final.
2a1fab
- Remove support for really ancient GCCs (valgrind-3.9.0-config_h.patch).
2a1fab
- Add valgrind-3.9.0-amd64_gen_insn_test.patch.
2a1fab
- Remove and cleanup fake 32-bit libgcc package.
2a1fab
2a1fab
* Mon Oct 28 2013 Mark Wielaard <mjw@redhat.com> - 3.9.0-0.1.TEST1
2a1fab
- Upgrade to valgrind 3.9.0.TEST1
2a1fab
- Remove patches that are now upstream:
2a1fab
  - valgrind-3.8.1-abbrev-parsing.patch
2a1fab
  - valgrind-3.8.1-af-bluetooth.patch
2a1fab
  - valgrind-3.8.1-aspacemgr_VG_N_SEGs.patch
2a1fab
  - valgrind-3.8.1-avx2-bmi-fma.patch.gz
2a1fab
  - valgrind-3.8.1-avx2-prereq.patch
2a1fab
  - valgrind-3.8.1-bmi-conf-check.patch
2a1fab
  - valgrind-3.8.1-capget.patch
2a1fab
  - valgrind-3.8.1-cfi_dw_ops.patch
2a1fab
  - valgrind-3.8.1-dwarf-anon-enum.patch
2a1fab
  - valgrind-3.8.1-filter_gdb.patch
2a1fab
  - valgrind-3.8.1-find-buildid.patch
2a1fab
  - valgrind-3.8.1-gdbserver_exit.patch
2a1fab
  - valgrind-3.8.1-gdbserver_tests-syscall-template-source.patch
2a1fab
  - valgrind-3.8.1-glibc-2.17-18.patch
2a1fab
  - valgrind-3.8.1-index-supp.patch
2a1fab
  - valgrind-3.8.1-initial-power-isa-207.patch
2a1fab
  - valgrind-3.8.1-manpages.patch
2a1fab
  - valgrind-3.8.1-memcheck-mc_translate-Iop_8HLto16.patch
2a1fab
  - valgrind-3.8.1-mmxext.patch
2a1fab
  - valgrind-3.8.1-movntdqa.patch
2a1fab
  - valgrind-3.8.1-new-manpages.patch
2a1fab
  - valgrind-3.8.1-openat.patch
2a1fab
  - valgrind-3.8.1-overlap_memcpy_filter.patch
2a1fab
  - valgrind-3.8.1-pie.patch
2a1fab
  - valgrind-3.8.1-pkg-config.patch
2a1fab
  - valgrind-3.8.1-power-isa-205-deprecation.patch
2a1fab
  - valgrind-3.8.1-ppc-32-mode-64-bit-instr.patch
2a1fab
  - valgrind-3.8.1-ppc-setxattr.patch
2a1fab
  - valgrind-3.8.1-proc-auxv.patch
2a1fab
  - valgrind-3.8.1-ptrace-include-configure.patch
2a1fab
  - valgrind-3.8.1-ptrace-setgetregset.patch
2a1fab
  - valgrind-3.8.1-ptrace-thread-area.patch
2a1fab
  - valgrind-3.8.1-regtest-fixlets.patch
2a1fab
  - valgrind-3.8.1-s390-STFLE.patch
2a1fab
  - valgrind-3.8.1-s390_tsearch_supp.patch
2a1fab
  - valgrind-3.8.1-sendmsg-flags.patch
2a1fab
  - valgrind-3.8.1-sigill_diag.patch
2a1fab
  - valgrind-3.8.1-static-variables.patch
2a1fab
  - valgrind-3.8.1-stpncpy.patch
2a1fab
  - valgrind-3.8.1-text-segment.patch
2a1fab
  - valgrind-3.8.1-wcs.patch
2a1fab
  - valgrind-3.8.1-x86_amd64_features-avx.patch
2a1fab
  - valgrind-3.8.1-xaddb.patch
2a1fab
  - valgrind-3.8.1-zero-size-sections.patch
2a1fab
- Remove special case valgrind-3.8.1-enable-armv5.patch.
2a1fab
- Remove valgrind-3.8.1-x86-backtrace.patch, rely on new upstream fp/cfi
2a1fab
  try-cache mechanism.
2a1fab
2a1fab
* Mon Oct 14 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-31
2a1fab
- Fix multilib issue with HAVE_PTRACE_GETREGS in config.h.
2a1fab
2a1fab
* Thu Sep 26 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-30
2a1fab
- Add valgrind-3.8.1-index-supp.patch (#1011713)
2a1fab
2a1fab
* Wed Sep 25 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-29
2a1fab
- Filter out -mcpu= so tests are compiled with the right flags. (#996927).
2a1fab
2a1fab
* Mon Sep 23 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-28
2a1fab
- Implement SSE4 MOVNTDQA insn (valgrind-3.8.1-movntdqa.patch)
2a1fab
- Don't BuildRequire /bin/ps, just BuildRequire procps
2a1fab
  (procps-ng provides procps).
2a1fab
2a1fab
* Thu Sep 05 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-27
2a1fab
- Fix power_ISA2_05 testcase (valgrind-3.8.1-power-isa-205-deprecation.patch)
2a1fab
- Fix ppc32 make check build (valgrind-3.8.1-initial-power-isa-207.patch)
2a1fab
- Add valgrind-3.8.1-mmxext.patch
2a1fab
2a1fab
* Wed Aug 21 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-26
2a1fab
- Allow building against glibc 2.18. (#999169)
2a1fab
2a1fab
* Thu Aug 15 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-25
2a1fab
- Add valgrind-3.8.1-s390-STFLE.patch
2a1fab
  s390 message-security assist (MSA) instruction extension not implemented.
2a1fab
2a1fab
* Wed Aug 14 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-24
2a1fab
- Add valgrind-3.8.1-power-isa-205-deprecation.patch
2a1fab
  Deprecation of some ISA 2.05 POWER6 instructions.
2a1fab
- Fixup auto-foo generation of new manpage doc patch.
2a1fab
2a1fab
* Wed Aug 14 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-23
2a1fab
- tests/check_isa-2_07_cap should be executable.
2a1fab
2a1fab
* Tue Aug 13 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-22
2a1fab
- Add valgrind-3.8.1-initial-power-isa-207.patch
2a1fab
  Initial ISA 2.07 support for POWER8-tuned libc.
2a1fab
2a1fab
* Thu Aug 08 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-21
2a1fab
- Don't depend on docdir location and version in openmpi subpackage
2a1fab
  description (#993938).
2a1fab
- Enable openmpi subpackage also on arm.
2a1fab
2a1fab
* Thu Aug 08 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-20
2a1fab
- Add valgrind-3.8.1-ptrace-include-configure.patch (#992847)
2a1fab
2a1fab
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.8.1-19
2a1fab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2a1fab
2a1fab
* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 1:3.8.1-18
2a1fab
- Perl 5.18 rebuild
2a1fab
2a1fab
* Mon Jul 08 2013 Mark Wielaard <mjw@redhat.com> - 3.8.1-17
2a1fab
- Add valgrind-3.8.1-dwarf-anon-enum.patch
2a1fab
- Cleanup valgrind-3.8.1-sigill_diag.patch .orig file changes (#949687).
2a1fab
- Add valgrind-3.8.1-ppc-setxattr.patch
2a1fab
- Add valgrind-3.8.1-new-manpages.patch
2a1fab
- Add valgrind-3.8.1-ptrace-thread-area.patch
2a1fab
- Add valgrind-3.8.1-af-bluetooth.patch
2a1fab
2a1fab
* Tue May 28 2013 Michael Schwendt <mschwendt@fedoraproject.org> - 1:3.8.1-16
2a1fab
- Provide virtual -static package in -devel subpackage (#609624).
2a1fab
2a1fab
* Thu Apr 25 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-15
2a1fab
- Add valgrind-3.8.1-zero-size-sections.patch. Resolves issues with zero
2a1fab
  sized .eh_frame sections on ppc64.
2a1fab
2a1fab
* Thu Apr 18 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-14
2a1fab
- fixup selinux file context when doing a scl build.
2a1fab
- Enable regtest suite on ARM.
2a1fab
- valgrind-3.8.1-abbrev-parsing.patch, drop workaround, enable real fix.
2a1fab
- Fix -Ttext-segment configure check. Enables s390x again.
2a1fab
- BuildRequire ps for testsuite.
2a1fab
2a1fab
* Tue Apr 02 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-13
2a1fab
- Fix quoting in valgrind valgrind-3.8.1-enable-armv5.patch and
2a1fab
  remove arm configure hunk from valgrind-3.8.1-text-segment.patch #947440
2a1fab
- Replace valgrind-3.8.1-text-segment.patch with upstream variant.
2a1fab
- Add valgrind-3.8.1-regtest-fixlets.patch.
2a1fab
2a1fab
* Wed Mar 20 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-12
2a1fab
- Add valgrind-3.8.1-text-segment.patch
2a1fab
- Don't undefine _missing_build_ids_terminate_build.
2a1fab
2a1fab
* Tue Mar 12 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-11
2a1fab
- Add valgrind-3.8.1-manpages.patch
2a1fab
2a1fab
* Fri Mar 01 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-10
2a1fab
- Don't disable -debuginfo package generation, but do undefine
2a1fab
  _missing_build_ids_terminate_build.
2a1fab
2a1fab
* Thu Feb 28 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-9
2a1fab
- Replace valgrind-3.8.1-sendmsg-flags.patch with upstream version.
2a1fab
2a1fab
* Tue Feb 19 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-8
2a1fab
- Add valgrind-3.8.1-sendmsg-flags.patch
2a1fab
- Add valgrind-3.8.1-ptrace-setgetregset.patch
2a1fab
- Add valgrind-3.8.1-static-variables.patch
2a1fab
2a1fab
* Thu Feb 07 2013 Jon Ciesla <limburgher@gmail.com> 1:3.8.1-7
2a1fab
- Merge review fixes, BZ 226522.
2a1fab
2a1fab
* Wed Jan 16 2013 Mark Wielaard <mjw@redhat.com> 3.8.1-6
2a1fab
- Allow building against glibc-2.17.
2a1fab
2a1fab
* Sun Nov  4 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-5
2a1fab
- Add valgrind-3.8.1-stpncpy.patch (KDE#309427)
2a1fab
- Add valgrind-3.8.1-ppc-32-mode-64-bit-instr.patch (#810992, KDE#308573)
2a1fab
- Add valgrind-3.8.1-sigill_diag.patch (#810992, KDE#309425)
2a1fab
2a1fab
* Tue Oct 16 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-4
2a1fab
- Add valgrind-3.8.1-xaddb.patch (#866793, KDE#307106)
2a1fab
2a1fab
* Mon Oct 15 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-3
2a1fab
- Add valgrind-3.8.1-x86_amd64_features-avx.patch (KDE#307285)
2a1fab
- Add valgrind-3.8.1-gdbserver_tests-syscall-template-source.patch (KDE#307155)
2a1fab
- Add valgrind-3.8.1-overlap_memcpy_filter.patch (KDE#307290)
2a1fab
- Add valgrind-3.8.1-pkg-config.patch (#827219, KDE#307729)
2a1fab
- Add valgrind-3.8.1-proc-auxv.patch (KDE#253519)
2a1fab
- Add valgrind-3.8.1-wcs.patch (#755242, KDE#307828)
2a1fab
- Add valgrind-3.8.1-filter_gdb.patch (KDE#308321)
2a1fab
- Add valgrind-3.8.1-gdbserver_exit.patch (#862795, KDE#308341)
2a1fab
- Add valgrind-3.8.1-aspacemgr_VG_N_SEGs.patch (#730303, KDE#164485)
2a1fab
- Add valgrind-3.8.1-s390_tsearch_supp.patch (#816244, KDE#308427)
2a1fab
2a1fab
* Fri Sep 21 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-2
2a1fab
- Add valgrind-3.8.1-gdbserver_tests-mcinvoke-ppc64.patch
2a1fab
- Replace valgrind-3.8.1-cfi_dw_ops.patch with version as committed upstream.
2a1fab
- Remove erroneous printf change from valgrind-3.8.1-abbrev-parsing.patch.
2a1fab
- Add scalar testcase change to valgrind-3.8.1-capget.patch.
2a1fab
2a1fab
* Thu Sep 20 2012 Mark Wielaard <mjw@redhat.com> 3.8.1-1
2a1fab
- Add partial backport of upstream revision 12884
2a1fab
  valgrind-3.8.0-memcheck-mc_translate-Iop_8HLto16.patch
2a1fab
  without it AVX2 VPBROADCASTB insn is broken under memcheck.
2a1fab
- Add valgrind-3.8.0-cfi_dw_ops.patch (KDE#307038)
2a1fab
  DWARF2 CFI reader: unhandled DW_OP_ opcode 0x8 (DW_OP_const1u and friends)
2a1fab
- Add valgrind-3.8.0-avx2-prereq.patch.
2a1fab
- Remove accidentially included diffs for gdbserver_tests and helgrind/tests
2a1fab
  Makefile.in from valgrind-3.8.0-avx2-bmi-fma.patch.gz
2a1fab
- Remove valgrind-3.8.0-tests.patch tests no longer hang.
2a1fab
- Added SCL macros to support building as part of a Software Collection.
2a1fab
- Upgrade to valgrind 3.8.1.
2a1fab
2a1fab
* Wed Sep 12 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-8
2a1fab
- Add configure fixup valgrind-3.8.0-bmi-conf-check.patch
2a1fab
2a1fab
* Wed Sep 12 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-7
2a1fab
- Add valgrind-3.8.0-avx2-bmi-fma.patch (KDE#305728)
2a1fab
2a1fab
* Tue Sep 11 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-6
2a1fab
- Add valgrind-3.8.0-lzcnt-tzcnt-bugfix.patch (KDE#295808)
2a1fab
- Add valgrind-3.8.0-avx-alignment-check.patch (KDE#305926)
2a1fab
2a1fab
* Mon Aug 27 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-5
2a1fab
- Add valgrind-3.8.0-abbrev-parsing.patch for #849783 (KDE#305513).
2a1fab
2a1fab
* Sun Aug 19 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-4
2a1fab
- Add valgrind-3.8.0-find-buildid.patch workaround bug #849435 (KDE#305431).
2a1fab
2a1fab
* Wed Aug 15 2012 Jakub Jelinek <jakub@redhat.com> 3.8.0-3
2a1fab
- fix up last change
2a1fab
2a1fab
* Wed Aug 15 2012 Jakub Jelinek <jakub@redhat.com> 3.8.0-2
2a1fab
- tweak up <valgrind/config.h> to allow simultaneous installation
2a1fab
  of valgrind-devel.{i686,x86_64} (#848146)
2a1fab
2a1fab
* Fri Aug 10 2012 Jakub Jelinek <jakub@redhat.com> 3.8.0-1
2a1fab
- update to 3.8.0 release
2a1fab
- from CFLAGS/CXXFLAGS filter just fortification flags, not arch
2a1fab
  specific flags
2a1fab
- on i?86 prefer to use CFI over %%ebp unwinding, as GCC 4.6+
2a1fab
  defaults to -fomit-frame-pointer
2a1fab
2a1fab
* Tue Aug 07 2012 Mark Wielaard <mjw@redhat.com> 3.8.0-0.1.TEST1.svn12858
2a1fab
- Update to 3.8.0-TEST1
2a1fab
- Clear CFLAGS CXXFLAGS LDFLAGS.
2a1fab
- Fix \ line continuation in configure line.
2a1fab
2a1fab
* Fri Aug 03 2012 Mark Wielaard <mjw@redhat.com> 3.7.0-7
2a1fab
- Fixup shadowing warnings valgrind-3.7.0-dwz.patch
2a1fab
- Add valgrind-3.7.0-ref_addr.patch (#842659, KDE#298864)
2a1fab
2a1fab
* Wed Jul 25 2012 Mark Wielaard <mjw@redhat.com> 3.7.0-6
2a1fab
- handle dwz DWARF compressor output (#842659, KDE#302901)
2a1fab
- allow glibc 2.16.
2a1fab
2a1fab
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.7.0-5
2a1fab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2a1fab
2a1fab
* Mon May  7 2012 Jakub Jelinek <jakub@redhat.com> 3.7.0-4
2a1fab
- adjust suppressions so that it works even with ld-2.15.so (#806854)
2a1fab
- handle DW_TAG_unspecified_type and DW_TAG_rvalue_reference_type
2a1fab
  (#810284, KDE#278313)
2a1fab
- handle .debug_types sections (#810286, KDE#284124)
2a1fab
2a1fab
* Sun Mar  4 2012 Peter Robinson <pbrobinson@fedoraproject.org> 3.7.0-2
2a1fab
- Fix building on ARM platform
2a1fab
2a1fab
* Fri Jan 27 2012 Jakub Jelinek <jakub@redhat.com> 3.7.0-1
2a1fab
- update to 3.7.0 (#769213, #782910, #772343)
2a1fab
- handle some further SCSI ioctls (#783936)
2a1fab
- handle fcntl F_SETOWN_EX and F_GETOWN_EX (#770746)
2a1fab
2a1fab
* Wed Aug 17 2011 Adam Jackson <ajax@redhat.com> 3.6.1-6
2a1fab
- rebuild for rpm 4.9.1 trailing / bug
2a1fab
2a1fab
* Thu Jul 21 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-5
2a1fab
- handle PLT unwind info (#723790, KDE#277045)
2a1fab
2a1fab
* Mon Jun 13 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-4
2a1fab
- fix memcpy/memmove redirection on x86_64 (#705790)
2a1fab
2a1fab
* Wed Jun  8 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-3
2a1fab
- fix testing against glibc 2.14
2a1fab
2a1fab
* Wed Jun  8 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-2
2a1fab
- fix build on ppc64 (#711608)
2a1fab
- don't fail if s390x support patch hasn't been applied,
2a1fab
  move testing into %%check (#708522)
2a1fab
- rebuilt against glibc 2.14
2a1fab
2a1fab
* Wed Feb 23 2011 Jakub Jelinek <jakub@redhat.com> 3.6.1-1
2a1fab
- update to 3.6.1
2a1fab
2a1fab
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.6.0-3
2a1fab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2a1fab
2a1fab
* Fri Jan 28 2011 Jakub Jelinek <jakub@redhat.com> 3.6.0-2
2a1fab
- rebuilt against glibc 2.13 (#673046)
2a1fab
- hook in pwrite64 syscall on ppc64 (#672858)
2a1fab
- fix PIE handling on ppc/ppc64 (#665289)
2a1fab
2a1fab
* Fri Nov 12 2010 Jakub Jelinek <jakub@redhat.com> 3.6.0-1
2a1fab
- update to 3.6.0
2a1fab
- add s390x support (#632354)
2a1fab
- provide a replacement for str{,n}casecmp{,_l} (#626470)
2a1fab
2a1fab
* Tue May 18 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-18
2a1fab
- rebuilt against glibc 2.12
2a1fab
2a1fab
* Mon Apr 12 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-16
2a1fab
- change pub_tool_basics.h not to include config.h (#579283)
2a1fab
- add valgrind-openmpi package for OpenMPI support (#565541)
2a1fab
- allow NULL second argument to capget (#450976)
2a1fab
2a1fab
* Wed Apr  7 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-15
2a1fab
- handle i686 nopw insns with more than one data16 prefix (#574889)
2a1fab
- DWARF4 support
2a1fab
- handle getcpu and splice syscalls
2a1fab
2a1fab
* Wed Jan 20 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-14
2a1fab
- fix build against latest glibc headers
2a1fab
2a1fab
* Wed Jan 20 2010 Jakub Jelinek <jakub@redhat.com> 3.5.0-13
2a1fab
- DW_OP_mod is unsigned modulus instead of signed
2a1fab
- fix up valgrind.pc (#551277)
2a1fab
2a1fab
* Mon Dec 21 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-12
2a1fab
- don't require offset field to be set in adjtimex's
2a1fab
  ADJ_OFFSET_SS_READ mode (#545866)
2a1fab
2a1fab
* Wed Dec  2 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-10
2a1fab
- add handling of a bunch of recent syscalls and fix some
2a1fab
  other syscall wrappers (Dodji Seketeli)
2a1fab
- handle prelink created split of .bss into .dynbss and .bss
2a1fab
  and similarly for .sbss and .sdynbss (#539874)
2a1fab
2a1fab
* Wed Nov  4 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-9
2a1fab
- rebuilt against glibc 2.11
2a1fab
- use upstream version of the ifunc support
2a1fab
2a1fab
* Wed Oct 28 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-8
2a1fab
- add preadv/pwritev syscall support
2a1fab
2a1fab
* Tue Oct 27 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-7
2a1fab
- add perf_counter_open syscall support (#531271)
2a1fab
- add handling of some sbb/adc insn forms on x86_64 (KDE#211410)
2a1fab
2a1fab
* Fri Oct 23 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-6
2a1fab
- ppc and ppc64 fixes
2a1fab
2a1fab
* Thu Oct 22 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-5
2a1fab
- add emulation of 0x67 prefixed loop* insns on x86_64 (#530165)
2a1fab
2a1fab
* Wed Oct 21 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-4
2a1fab
- handle reading of .debug_frame in addition to .eh_frame
2a1fab
- ignore unknown DWARF3 expressions in evaluate_trivial_GX
2a1fab
- suppress helgrind race errors in helgrind's own mythread_wrapper
2a1fab
- fix compilation of x86 tests on x86_64 and ppc tests
2a1fab
2a1fab
* Wed Oct 14 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-3
2a1fab
- handle many more DW_OP_* ops that GCC now uses
2a1fab
- handle the more compact form of DW_AT_data_member_location
2a1fab
- don't strip .debug_loc etc. from valgrind binaries
2a1fab
2a1fab
* Mon Oct 12 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-2
2a1fab
- add STT_GNU_IFUNC support (Dodji Seketeli, #518247)
2a1fab
- wrap inotify_init1 syscall (Dodji Seketeli, #527198)
2a1fab
- fix mmap/mprotect handling in memcheck (KDE#210268)
2a1fab
2a1fab
* Fri Aug 21 2009 Jakub Jelinek <jakub@redhat.com> 3.5.0-1
2a1fab
- update to 3.5.0
2a1fab
2a1fab
* Tue Jul 28 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-7
2a1fab
- handle futex ops newly added during last 4 years (#512121)
2a1fab
2a1fab
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> 3.4.1-6
2a1fab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2a1fab
2a1fab
* Mon Jul 13 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-5
2a1fab
- add support for DW_CFA_{remember,restore}_state
2a1fab
2a1fab
* Mon Jul 13 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-4
2a1fab
- handle version 3 .debug_frame, .eh_frame, .debug_info and
2a1fab
  .debug_line (#509197)
2a1fab
2a1fab
* Mon May 11 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-3
2a1fab
- rebuilt against glibc 2.10.1
2a1fab
2a1fab
* Wed Apr 22 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-2
2a1fab
- redirect x86_64 ld.so strlen early (#495645)
2a1fab
2a1fab
* Mon Mar  9 2009 Jakub Jelinek <jakub@redhat.com> 3.4.1-1
2a1fab
- update to 3.4.1
2a1fab
2a1fab
* Mon Feb  9 2009 Jakub Jelinek <jakub@redhat.com> 3.4.0-3
2a1fab
- update to 3.4.0
2a1fab
2a1fab
* Wed Apr 16 2008 Jakub Jelinek <jakub@redhat.com> 3.3.0-3
2a1fab
- add suppressions for glibc 2.8
2a1fab
- add a bunch of syscall wrappers (#441709)
2a1fab
2a1fab
* Mon Mar  3 2008 Jakub Jelinek <jakub@redhat.com> 3.3.0-2
2a1fab
- add _dl_start suppression for ppc/ppc64
2a1fab
2a1fab
* Mon Mar  3 2008 Jakub Jelinek <jakub@redhat.com> 3.3.0-1
2a1fab
- update to 3.3.0
2a1fab
- split off devel bits into valgrind-devel subpackage
2a1fab
2a1fab
* Thu Oct 18 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-7
2a1fab
- add suppressions for glibc >= 2.7
2a1fab
2a1fab
* Fri Aug 31 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-6
2a1fab
- handle new x86_64 nops (#256801, KDE#148447)
2a1fab
- add support for private futexes (KDE#146781)
2a1fab
- update License tag
2a1fab
2a1fab
* Fri Aug  3 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-5
2a1fab
- add ppc64-linux symlink in valgrind ppc.rpm, so that when
2a1fab
  rpm prefers 32-bit binaries over 64-bit ones 32-bit
2a1fab
  /usr/bin/valgrind can find 64-bit valgrind helper binaries
2a1fab
  (#249773)
2a1fab
- power5+ and power6 support (#240762)
2a1fab
2a1fab
* Thu Jun 28 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-4
2a1fab
- pass GDB=%%{_prefix}/gdb to configure to fix default
2a1fab
  --db-command (#220840)
2a1fab
2a1fab
* Wed Jun 27 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-3
2a1fab
- add suppressions for glibc >= 2.6
2a1fab
- avoid valgrind internal error if io_destroy syscall is
2a1fab
  passed a bogus argument
2a1fab
2a1fab
* Tue Feb 13 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-2
2a1fab
- fix valgrind.pc again
2a1fab
2a1fab
* Tue Feb 13 2007 Jakub Jelinek <jakub@redhat.com> 3.2.3-1
2a1fab
- update to 3.2.3
2a1fab
2a1fab
* Wed Nov  8 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-7
2a1fab
- some cachegrind improvements (Ulrich Drepper)
2a1fab
2a1fab
* Mon Nov  6 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-6
2a1fab
- fix valgrind.pc (#213149)
2a1fab
- handle Intel Core2 cache sizes in cachegrind (Ulrich Drepper)
2a1fab
2a1fab
* Wed Oct 25 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-5
2a1fab
- fix valgrind on ppc/ppc64 where PAGESIZE is 64K (#211598)
2a1fab
2a1fab
* Sun Oct  1 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-4
2a1fab
- adjust for glibc-2.5
2a1fab
2a1fab
* Wed Sep 27 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-3
2a1fab
- another DW_CFA_set_loc handling fix
2a1fab
2a1fab
* Tue Sep 26 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-2
2a1fab
- fix openat handling (#208097)
2a1fab
- fix DW_CFA_set_loc handling
2a1fab
2a1fab
* Tue Sep 19 2006 Jakub Jelinek <jakub@redhat.com> 3.2.1-1
2a1fab
- update to 3.2.1 bugfix release
2a1fab
  - SSE3 emulation fixes, reduce memcheck false positive rate,
2a1fab
    4 dozens of bugfixes
2a1fab
2a1fab
* Mon Aug 21 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-5
2a1fab
- handle the new i686/x86_64 nops (#203273)
2a1fab
2a1fab
* Fri Jul 28 2006 Jeremy Katz <katzj@redhat.com> - 1:3.2.0-4
2a1fab
- rebuild to bring ppc back
2a1fab
2a1fab
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:3.2.0-3.1
2a1fab
- rebuild
2a1fab
2a1fab
* Fri Jun 16 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-3
2a1fab
- handle [sg]et_robust_list syscall on ppc{32,64}
2a1fab
2a1fab
* Fri Jun 16 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-2
2a1fab
- fix ppc64 symlink to 32-bit valgrind libdir
2a1fab
- handle a few extra ppc64 syscalls
2a1fab
2a1fab
* Thu Jun 15 2006 Jakub Jelinek <jakub@redhat.com> 3.2.0-1
2a1fab
- update to 3.2.0
2a1fab
  - ppc64 support
2a1fab
2a1fab
* Fri May 26 2006 Jakub Jelinek <jakub@redhat.com> 3.1.1-3
2a1fab
- handle [sg]et_robust_list syscalls on i?86/x86_64
2a1fab
- handle *at syscalls on ppc
2a1fab
- ensure on x86_64 both 32-bit and 64-bit glibc{,-devel} are
2a1fab
  installed in the buildroot (#191820)
2a1fab
2a1fab
* Wed Apr 12 2006 Jakub Jelinek <jakub@redhat.com> 3.1.1-2
2a1fab
- handle many syscalls that were unhandled before, especially on ppc
2a1fab
2a1fab
* Mon Apr  3 2006 Jakub Jelinek <jakub@redhat.com> 3.1.1-1
2a1fab
- upgrade to 3.1.1
2a1fab
  - many bugfixes
2a1fab
2a1fab
* Mon Mar 13 2006 Jakub Jelinek <jakub@redhat.com> 3.1.0-2
2a1fab
- add support for DW_CFA_val_offset{,_sf}, DW_CFA_def_cfa_sf
2a1fab
  and skip over DW_CFA_val_expression quietly
2a1fab
- adjust libc/ld.so filenames in glibc-2.4.supp for glibc 2.4
2a1fab
  release
2a1fab
2a1fab
* Mon Jan  9 2006 Jakub Jelinek <jakub@redhat.com> 3.1.0-1
2a1fab
- upgrade to 3.1.0 (#174582)
2a1fab
  - many bugfixes, ppc32 support
2a1fab
2a1fab
* Thu Oct 13 2005 Jakub Jelinek <jakub@redhat.com> 3.0.1-2
2a1fab
- remove Obsoletes for valgrind-callgrind, as it has been
2a1fab
  ported to valgrind 3.0.x already
2a1fab
2a1fab
* Sun Sep 11 2005 Jakub Jelinek <jakub@redhat.com> 3.0.1-1
2a1fab
- upgrade to 3.0.1
2a1fab
  - many bugfixes
2a1fab
- handle xattr syscalls on x86-64 (Ulrich Drepper)
2a1fab
2a1fab
* Fri Aug 12 2005 Jakub Jelinek <jakub@redhat.com> 3.0.0-3
2a1fab
- fix amd64 handling of cwtd instruction
2a1fab
- fix amd64 handling of e.g. sarb $0x4,val(%%rip)
2a1fab
- speedup amd64 insn decoding
2a1fab
2a1fab
* Fri Aug 12 2005 Jakub Jelinek <jakub@redhat.com> 3.0.0-2
2a1fab
- lower x86_64 stage2 base from 112TB down to 450GB, so that
2a1fab
  valgrind works even on 2.4.x kernels.  Still way better than
2a1fab
  1.75GB that stock valgrind allows
2a1fab
2a1fab
* Fri Aug 12 2005 Jakub Jelinek <jakub@redhat.com> 3.0.0-1
2a1fab
- upgrade to 3.0.0
2a1fab
  - x86_64 support
2a1fab
- temporarily obsolete valgrind-callgrind, as it has not been
2a1fab
  ported yet
2a1fab
2a1fab
* Tue Jul 12 2005 Jakub Jelinek <jakub@redhat.com> 2.4.0-3
2a1fab
- build some insn tests with -mmmx, -msse or -msse2 (#161572)
2a1fab
- handle glibc-2.3.90 the same way as 2.3.[0-5]
2a1fab
2a1fab
* Wed Mar 30 2005 Jakub Jelinek <jakub@redhat.com> 2.4.0-2
2a1fab
- resurrect the non-upstreamed part of valgrind_h patch
2a1fab
- remove 2.1.2-4G patch, seems to be upstreamed
2a1fab
- resurrect passing -fno-builtin in memcheck tests
2a1fab
2a1fab
* Sun Mar 27 2005 Colin Walters <walters@redhat.com> 2.4.0-1
2a1fab
- New upstream version 
2a1fab
- Update valgrind-2.2.0-regtest.patch to 2.4.0; required minor
2a1fab
  massaging
2a1fab
- Disable valgrind-2.1.2-4G.patch for now; Not going to touch this,
2a1fab
  and Fedora does not ship 4G kernel by default anymore
2a1fab
- Remove upstreamed valgrind-2.2.0.ioctls.patch
2a1fab
- Remove obsolete valgrind-2.2.0-warnings.patch; Code is no longer
2a1fab
  present
2a1fab
- Remove upstreamed valgrind-2.2.0-valgrind_h.patch
2a1fab
- Remove obsolete valgrind-2.2.0-unnest.patch and
2a1fab
  valgrind-2.0.0-pthread-stacksize.patch; valgrind no longer
2a1fab
  includes its own pthread library
2a1fab
2a1fab
* Thu Mar 17 2005 Jakub Jelinek <jakub@redhat.com> 2.2.0-10
2a1fab
- rebuilt with GCC 4
2a1fab
2a1fab
* Tue Feb  8 2005 Jakub Jelinek <jakub@redhat.com> 2.2.0-8
2a1fab
- avoid unnecessary use of nested functions for pthread_once
2a1fab
  cleanup
2a1fab
2a1fab
* Mon Dec  6 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-7
2a1fab
- update URL (#141873)
2a1fab
2a1fab
* Tue Nov 16 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-6
2a1fab
- act as if NVALGRIND is defined when using <valgrind.h>
2a1fab
  in non-m32/i386 programs (#138923)
2a1fab
- remove weak from VALGRIND_PRINTF*, make it static and
2a1fab
  add unused attribute
2a1fab
2a1fab
* Mon Nov  8 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-4
2a1fab
- fix a printout and possible problem with local variable
2a1fab
  usage around setjmp (#138254)
2a1fab
2a1fab
* Tue Oct  5 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-3
2a1fab
- remove workaround for buggy old makes (#134563)
2a1fab
2a1fab
* Fri Oct  1 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-2
2a1fab
- handle some more ioctls (Peter Jones, #131967)
2a1fab
2a1fab
* Thu Sep  2 2004 Jakub Jelinek <jakub@redhat.com> 2.2.0-1
2a1fab
- update to 2.2.0
2a1fab
2a1fab
* Thu Jul 22 2004 Jakub Jelinek <jakub@redhat.com> 2.1.2-3
2a1fab
- fix packaging of documentation
2a1fab
2a1fab
* Tue Jul 20 2004 Jakub Jelinek <jakub@redhat.com> 2.1.2-2
2a1fab
- allow tracing of 32-bit binaries on x86-64
2a1fab
2a1fab
* Tue Jul 20 2004 Jakub Jelinek <jakub@redhat.com> 2.1.2-1
2a1fab
- update to 2.1.2
2a1fab
- run make regtest as part of package build
2a1fab
- use glibc-2.3 suppressions instead of glibc-2.2 suppressions
2a1fab
2a1fab
* Thu Apr 29 2004 Colin Walters <walters@redhat.com> 2.0.0-1
2a1fab
- update to 2.0.0
2a1fab
2a1fab
* Tue Feb 25 2003 Jeff Johnson <jbj@redhat.com> 1.9.4-0.20030228
2a1fab
- update to 1.9.4 from CVS.
2a1fab
- dwarf patch from Graydon Hoare.
2a1fab
- sysinfo patch from Graydon Hoare, take 1.
2a1fab
2a1fab
* Fri Feb 14 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-6.20030207
2a1fab
- add return codes to syscalls.
2a1fab
- fix: set errno after syscalls.
2a1fab
2a1fab
* Tue Feb 11 2003 Graydon Hoare <graydon@redhat.com> 1.9.3-5.20030207
2a1fab
- add handling for separate debug info (+fix).
2a1fab
- handle blocking readv/writev correctly.
2a1fab
- comment out 4 overly zealous pthread checks.
2a1fab
2a1fab
* Tue Feb 11 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-4.20030207
2a1fab
- move _pthread_desc to vg_include.h.
2a1fab
- implement pthread_mutex_timedlock().
2a1fab
- implement pthread_barrier_wait().
2a1fab
2a1fab
* Mon Feb 10 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-3.20030207
2a1fab
- import all(afaik) missing functionality from linuxthreads.
2a1fab
2a1fab
* Sun Feb  9 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-2.20030207
2a1fab
- import more missing functionality from linuxthreads in glibc-2.3.1.
2a1fab
2a1fab
* Sat Feb  8 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-1.20030207
2a1fab
- start fixing nptl test cases.
2a1fab
2a1fab
* Fri Feb  7 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-0.20030207
2a1fab
- build against current 1.9.3 with nptl hacks.
2a1fab
2a1fab
* Tue Oct 15 2002 Alexander Larsson <alexl@redhat.com>
2a1fab
- Update to 1.0.4
2a1fab
2a1fab
* Fri Aug  9 2002 Alexander Larsson <alexl@redhat.com>
2a1fab
- Update to 1.0.0
2a1fab
2a1fab
* Wed Jul  3 2002 Alexander Larsson <alexl@redhat.com>
2a1fab
- Update to pre4.
2a1fab
2a1fab
* Tue Jun 18 2002 Alexander Larsson <alla@lysator.liu.se>
2a1fab
- Add threadkeys and extra suppressions patches. Bump epoch.
2a1fab
2a1fab
* Mon Jun 17 2002 Alexander Larsson <alla@lysator.liu.se>
2a1fab
- Updated to 1.0pre1
2a1fab
2a1fab
* Tue May 28 2002 Alex Larsson <alexl@redhat.com>
2a1fab
- Updated to 20020524. Added GLIBC_PRIVATE patch
2a1fab
2a1fab
* Thu May  9 2002 Jonathan Blandford <jrb@redhat.com>
2a1fab
- add missing symbol __pthread_clock_settime
2a1fab
2a1fab
* Wed May  8 2002 Alex Larsson <alexl@redhat.com>
2a1fab
- Update to 20020508
2a1fab
2a1fab
* Mon May  6 2002 Alex Larsson <alexl@redhat.com>
2a1fab
- Update to 20020503b
2a1fab
2a1fab
* Thu May  2 2002 Alex Larsson <alexl@redhat.com>
2a1fab
- update to new snapshot
2a1fab
2a1fab
* Mon Apr 29 2002 Alex Larsson <alexl@redhat.com> 20020428-1
2a1fab
- update to new snapshot
2a1fab
2a1fab
* Fri Apr 26 2002 Jeremy Katz <katzj@redhat.com> 20020426-1
2a1fab
- update to new snapshot
2a1fab
2a1fab
* Thu Apr 25 2002 Alex Larsson <alexl@redhat.com> 20020424-5
2a1fab
- Added stack patch. Commented out other patches.
2a1fab
2a1fab
* Wed Apr 24 2002 Nalin Dahyabhai <nalin@redhat.com> 20020424-4
2a1fab
- filter out GLIBC_PRIVATE requires, add preload patch
2a1fab
2a1fab
* Wed Apr 24 2002 Alex Larsson <alexl@redhat.com> 20020424-3
2a1fab
- Make glibc 2.2 and XFree86 4 the default supressions
2a1fab
2a1fab
* Wed Apr 24 2002 Alex Larsson <alexl@redhat.com> 20020424-2
2a1fab
- Added patch that includes atomic.h
2a1fab
2a1fab
* Wed Apr 24 2002 Alex Larsson <alexl@redhat.com> 20020424-1
2a1fab
- Initial build