Blame SPECS/valgrind.spec

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