|
|
|
|
@ -2,12 +2,18 @@
|
|
|
|
|
|
|
|
|
|
Summary: Dynamic analysis tools to detect memory or thread bugs and profile
|
|
|
|
|
Name: %{?scl_prefix}valgrind
|
|
|
|
|
Version: 3.22.0
|
|
|
|
|
Release: 3%{?dist}
|
|
|
|
|
Version: 3.26.0
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
Epoch: 1
|
|
|
|
|
License: GPLv2+
|
|
|
|
|
|
|
|
|
|
# This ignores licenses that are only found in the test or perf sources
|
|
|
|
|
# we only care about those license statements found in sources that end
|
|
|
|
|
# up in the binary packages. One piece of code for which we don't have
|
|
|
|
|
# a license specifier is in coregrind/m_main.c for some Hacker's Delight
|
|
|
|
|
# public domain code, which is only compiled into Darwin binaries, which
|
|
|
|
|
# we don't create. Also some subpackages have their own license tags.
|
|
|
|
|
License: GPL-3.0-or-later AND bzip2-1.0.6 AND (GPL-3.0-or-later AND LGPL-2.0-or-later) AND (GPL-3.0-or-later AND ISC) AND (GPL-3.0-or-later AND Unlicense) AND (GPL-3.0-or-later AND Zlib) AND (GPL-3.0-or-later WITH GCC-exception-2.0) AND (LGPL-2.0-or-later WITH GCC-exception-2.0) AND (GPL-3.0-or-later AND BSD-3-Clause) AND (GPL-3.0-or-later AND (MIT OR NCSA)) AND CMU-Mach AND (GPL-3.0-or-later AND X11 AND BSD-3-Clause) AND X11 AND (GPL-3.0-or-later AND LGPL-2.0-or-later) AND (GPL-2.0-or-later WITH Autoconf-exception-generic) AND (GPL-3.0-or-later WITH Autoconf-exception-generic-3.0) AND FSFULLR AND FSFAP AND FSFUL AND FSFULLRWD
|
|
|
|
|
URL: https://www.valgrind.org/
|
|
|
|
|
Group: Development/Debuggers
|
|
|
|
|
|
|
|
|
|
# Are we building for a Software Collection?
|
|
|
|
|
%{?scl:%global is_scl 1}
|
|
|
|
|
@ -15,7 +21,7 @@ Group: Development/Debuggers
|
|
|
|
|
|
|
|
|
|
# We never want the openmpi subpackage when building a software collecton.
|
|
|
|
|
# We always want it for fedora.
|
|
|
|
|
# We only want it for older rhel. But not s390x for too old rhel.
|
|
|
|
|
# We only want it for older rhel.
|
|
|
|
|
# And on fedora > 39 i386 dropped openmpi.
|
|
|
|
|
%if %{is_scl}
|
|
|
|
|
%global build_openmpi 0
|
|
|
|
|
@ -31,11 +37,7 @@ Group: Development/Debuggers
|
|
|
|
|
%if 0%{?rhel} > 7
|
|
|
|
|
%global build_openmpi 0
|
|
|
|
|
%else
|
|
|
|
|
%ifarch s390x
|
|
|
|
|
%global build_openmpi (%{?rhel} > 6)
|
|
|
|
|
%else
|
|
|
|
|
%global build_openmpi 1
|
|
|
|
|
%endif
|
|
|
|
|
%global build_openmpi 1
|
|
|
|
|
%endif
|
|
|
|
|
%endif
|
|
|
|
|
%endif
|
|
|
|
|
@ -55,17 +57,11 @@ Group: Development/Debuggers
|
|
|
|
|
# Whether to run the full regtest or only a limited set
|
|
|
|
|
# The full regtest includes gdb_server integration tests
|
|
|
|
|
# and experimental tools.
|
|
|
|
|
# Only run full regtests on fedora, but not on older rhel
|
|
|
|
|
# or when creating scl, the gdb_server tests might hang.
|
|
|
|
|
# Don't run them when creating scl, the gdb_server tests might hang.
|
|
|
|
|
%if %{is_scl}
|
|
|
|
|
%global run_full_regtest 0
|
|
|
|
|
%else
|
|
|
|
|
%if 0%{?fedora}
|
|
|
|
|
%global run_full_regtest 1
|
|
|
|
|
%endif
|
|
|
|
|
%if 0%{?rhel}
|
|
|
|
|
%global run_full_regtest (%rhel >= 7)
|
|
|
|
|
%endif
|
|
|
|
|
%global run_full_regtest 1
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
# Generating minisymtabs doesn't really work for the staticly linked
|
|
|
|
|
@ -84,14 +80,10 @@ Patch1: valgrind-3.9.0-cachegrind-improvements.patch
|
|
|
|
|
Patch2: valgrind-3.9.0-ldso-supp.patch
|
|
|
|
|
|
|
|
|
|
# Add some stack-protector
|
|
|
|
|
Patch3: valgrind-3.16.0-some-stack-protector.patch
|
|
|
|
|
Patch3: valgrind-3.26.0-some-stack-protector.patch
|
|
|
|
|
|
|
|
|
|
# Add some -Wl,z,now.
|
|
|
|
|
Patch4: valgrind-3.16.0-some-Wl-z-now.patch
|
|
|
|
|
|
|
|
|
|
# valgrind 3.22.0 fails on assertion when loading debuginfo
|
|
|
|
|
# https://bugs.kde.org/show_bug.cgi?id=476548
|
|
|
|
|
Patch5: valgrind-3.22.0-rodata.patch
|
|
|
|
|
Patch4: valgrind-3.26.0-some-Wl-z-now.patch
|
|
|
|
|
|
|
|
|
|
BuildRequires: make
|
|
|
|
|
BuildRequires: glibc-devel
|
|
|
|
|
@ -136,23 +128,16 @@ Recommends: %{?scl_prefix}valgrind-docs = %{epoch}:%{version}-%{release}
|
|
|
|
|
Recommends: %{?scl_prefix}valgrind-scripts = %{epoch}:%{version}-%{release}
|
|
|
|
|
Recommends: %{?scl_prefix}valgrind-gdb = %{epoch}:%{version}-%{release}
|
|
|
|
|
|
|
|
|
|
# For running the testsuite.
|
|
|
|
|
# Some of the python scripts require python 3.9+
|
|
|
|
|
BuildRequires: python3.11
|
|
|
|
|
BuildRequires: python3.11-rpm-macros
|
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
|
|
|
|
|
|
%{?scl:Requires:%scl_runtime}
|
|
|
|
|
|
|
|
|
|
# We need to fixup selinux file context when doing a scl build.
|
|
|
|
|
# In RHEL6 we might need to fix up the labels even though the
|
|
|
|
|
# meta package sets up a fs equivalence. See post.
|
|
|
|
|
%if 0%{?rhel} == 6
|
|
|
|
|
%{?scl:Requires(post): /sbin/restorecon}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
# We could use %%valgrind_arches as defined in redhat-rpm-config
|
|
|
|
|
# But that is really for programs using valgrind, it defines the
|
|
|
|
|
# set of architectures that valgrind works correctly on.
|
|
|
|
|
ExclusiveArch: %{ix86} x86_64 ppc ppc64 ppc64le s390x armv7hl aarch64
|
|
|
|
|
ExclusiveArch: %{ix86} x86_64 ppc ppc64 ppc64le s390x armv7hl aarch64 riscv64
|
|
|
|
|
|
|
|
|
|
# Define valarch, the architecture name that valgrind uses
|
|
|
|
|
# And only_arch, the configure option to only build for that arch.
|
|
|
|
|
@ -188,6 +173,10 @@ ExclusiveArch: %{ix86} x86_64 ppc ppc64 ppc64le s390x armv7hl aarch64
|
|
|
|
|
%define valarch arm64
|
|
|
|
|
%define only_arch --enable-only64bit
|
|
|
|
|
%endif
|
|
|
|
|
%ifarch riscv64
|
|
|
|
|
%define valarch riscv64
|
|
|
|
|
%define only_arch --enable-only64bit
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
Valgrind is an instrumentation framework for building dynamic analysis
|
|
|
|
|
@ -202,7 +191,11 @@ profiler (callgrind), and a heap profiler (massif).
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
|
Summary: Development files for valgrind aware programs
|
|
|
|
|
Group: Development/Debuggers
|
|
|
|
|
# This is really Hybrid-BSD
|
|
|
|
|
# https://fedoraproject.org/wiki/Licensing:BSD#Hybrid_BSD_(half_BSD,_half_zlib)
|
|
|
|
|
# But that doesnt have a SPDX identifier yet
|
|
|
|
|
# https://gitlab.com/fedora/legal/fedora-license-data/-/issues/422
|
|
|
|
|
License: bzip2-1.0.6
|
|
|
|
|
# These are just the header files, so strictly speaking you don't
|
|
|
|
|
# need valgrind itself unless you are testing your builds. This used
|
|
|
|
|
# to be a Requires, so people might depend on the package pulling in
|
|
|
|
|
@ -221,7 +214,7 @@ Documentation in html and pdf, plus man pages for valgrind tools and scripts.
|
|
|
|
|
|
|
|
|
|
%package scripts
|
|
|
|
|
Summary: Scripts for post-processing valgrind tool output
|
|
|
|
|
License: GPL-2.0-or-later
|
|
|
|
|
License: GPL-3.0-or-later AND (GPL-3.0-or-later OR MPL-2.0)
|
|
|
|
|
# Most scripts can be used as is for post-processing a valgrind tool run.
|
|
|
|
|
# But callgrind_control uses vgdb.
|
|
|
|
|
Recommends: %{?scl_prefix}valgrind-gdb = %{epoch}:%{version}-%{release}
|
|
|
|
|
@ -231,7 +224,7 @@ Perl and Python scripts for post-processing valgrind tool output.
|
|
|
|
|
|
|
|
|
|
%package gdb
|
|
|
|
|
Summary: Tools for integrating valgrind and gdb
|
|
|
|
|
License: GPL-2.0-or-later
|
|
|
|
|
License: GPL-3.0-or-later
|
|
|
|
|
Requires: %{?scl_prefix}valgrind = %{epoch}:%{version}-%{release}
|
|
|
|
|
# vgdb can be used without gdb, just to control valgrind.
|
|
|
|
|
# But normally you use it together with both valgrind and gdb.
|
|
|
|
|
@ -243,7 +236,6 @@ Tools and support files for integrating valgrind and gdb.
|
|
|
|
|
%if %{build_tools_devel}
|
|
|
|
|
%package tools-devel
|
|
|
|
|
Summary: Development files for building valgrind tools.
|
|
|
|
|
Group: Development/Debuggers
|
|
|
|
|
Requires: %{?scl_prefix}valgrind-devel = %{epoch}:%{version}-%{release}
|
|
|
|
|
Provides: %{name}-static = %{epoch}:%{version}-%{release}
|
|
|
|
|
|
|
|
|
|
@ -254,7 +246,8 @@ Header files and libraries for development of valgrind tools.
|
|
|
|
|
%if %{build_openmpi}
|
|
|
|
|
%package openmpi
|
|
|
|
|
Summary: OpenMPI support for valgrind
|
|
|
|
|
Group: Development/Debuggers
|
|
|
|
|
# See above, Hybrid-BSD like.
|
|
|
|
|
License: bzip2-1.0.6
|
|
|
|
|
Requires: %{?scl_prefix}valgrind = %{epoch}:%{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description openmpi
|
|
|
|
|
@ -268,29 +261,21 @@ Valgrind User Manual for details.
|
|
|
|
|
|
|
|
|
|
%patch -P1 -p1
|
|
|
|
|
%patch -P2 -p1
|
|
|
|
|
|
|
|
|
|
# Old rhel gcc doesn't have -fstack-protector-strong.
|
|
|
|
|
%if 0%{?fedora} || 0%{?rhel} >= 7
|
|
|
|
|
%patch -P3 -p1
|
|
|
|
|
%patch -P4 -p1
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%patch -P5 -p1
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
# LTO triggers undefined symbols in valgrind. But valgrind has a
|
|
|
|
|
# --enable-lto configure time option that we will use instead.
|
|
|
|
|
%define _lto_cflags %{nil}
|
|
|
|
|
|
|
|
|
|
# Some patches (might) touch Makefile.am or configure.ac files.
|
|
|
|
|
# Just always autoreconf so we don't need patches to prebuild files.
|
|
|
|
|
./autogen.sh
|
|
|
|
|
|
|
|
|
|
# Old openmpi-devel has version depended paths for mpicc.
|
|
|
|
|
%if %{build_openmpi}
|
|
|
|
|
%if 0%{?fedora} >= 13 || 0%{?rhel} >= 6
|
|
|
|
|
%define mpiccpath %{!?scl:%{_libdir}}%{?scl:%{_root_libdir}}/openmpi/bin/mpicc
|
|
|
|
|
%else
|
|
|
|
|
%define mpiccpath %{!?scl:%{_libdir}}%{?scl:%{_root_libdir}}/openmpi/*/bin/mpicc
|
|
|
|
|
%endif
|
|
|
|
|
%else
|
|
|
|
|
# We explicitly don't want the libmpi wrapper. So make sure that configure
|
|
|
|
|
# doesn't pick some random mpi compiler that happens to be installed.
|
|
|
|
|
%define mpiccpath /bin/false
|
|
|
|
|
@ -342,13 +327,14 @@ export LDFLAGS
|
|
|
|
|
--with-mpicc=%{mpiccpath} \
|
|
|
|
|
%{only_arch} \
|
|
|
|
|
GDB=%{_bindir}/gdb \
|
|
|
|
|
--without-gdbscripts-dir
|
|
|
|
|
--with-gdbscripts-dir=%{_datadir}/gdb/auto-load \
|
|
|
|
|
--enable-lto
|
|
|
|
|
|
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
%make_build
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
|
|
|
%make_install
|
|
|
|
|
mkdir docs/installed
|
|
|
|
|
mv $RPM_BUILD_ROOT%{_datadir}/doc/valgrind/* docs/installed/
|
|
|
|
|
rm -f docs/installed/*.ps
|
|
|
|
|
@ -410,7 +396,7 @@ cat /proc/cpuinfo
|
|
|
|
|
%{?scl:PATH=%{_bindir}${PATH:+:${PATH}}}
|
|
|
|
|
# Make sure no extra CFLAGS, CXXFLAGS or LDFLAGS leak through,
|
|
|
|
|
# the testsuite sets all flags necessary. See also configure above.
|
|
|
|
|
make %{?_smp_mflags} CFLAGS="" CXXFLAGS="" LDFLAGS="" check
|
|
|
|
|
%make_build CFLAGS="" CXXFLAGS="" LDFLAGS="" check
|
|
|
|
|
|
|
|
|
|
# Workaround https://bugzilla.redhat.com/show_bug.cgi?id=1434601
|
|
|
|
|
# for gdbserver tests.
|
|
|
|
|
@ -481,8 +467,11 @@ echo ===============END TESTING===============
|
|
|
|
|
%{_bindir}/valgrind-di-server
|
|
|
|
|
%{_bindir}/valgrind-listener
|
|
|
|
|
%{_bindir}/vgdb
|
|
|
|
|
%{_bindir}/vgstack
|
|
|
|
|
# gdb register descriptions
|
|
|
|
|
%{_libexecdir}/valgrind/*.xml
|
|
|
|
|
%{_datadir}/gdb/auto-load/valgrind-monitor.py
|
|
|
|
|
%{_datadir}/gdb/auto-load/valgrind-monitor-def.py
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
|
%dir %{_includedir}/valgrind
|
|
|
|
|
@ -513,20 +502,38 @@ echo ===============END TESTING===============
|
|
|
|
|
%{_libdir}/valgrind/libmpiwrap*.so
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if 0%{?rhel} == 6
|
|
|
|
|
%post
|
|
|
|
|
# There is a bug in rpm (rhbz#214737) that might cause post to be run
|
|
|
|
|
# even thought the binary isn't installed when installing two multilib
|
|
|
|
|
# versions at the same time.
|
|
|
|
|
if [ -x %{_bindir}/valgrind ]; then
|
|
|
|
|
# On RHEL6 the fs equivalency should be setup by the devtoolset meta
|
|
|
|
|
# package, but because of a rpm bug (rhbz#924044) it might not work.
|
|
|
|
|
%{?scl:/sbin/restorecon %{_bindir}/valgrind}%{!?scl:true}
|
|
|
|
|
fi
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Fri Jan 24 2025 Mark Wielaard <mjw@redhat.com> - 3.22.0-3
|
|
|
|
|
* Tue Nov 4 2025 Mark Wielaard <mjw@redhat.com> - 3.26.0-1
|
|
|
|
|
- Valgrind 3.26.0 final
|
|
|
|
|
- Remove all VALGRIND_3_25_BRANCH and proposed upstream patches
|
|
|
|
|
- Refresh some-stack-protector and some-Wl-z-now patches.
|
|
|
|
|
- Add vgstack to valgrind-gdb.
|
|
|
|
|
- Update License to GPL-3.0-or-later
|
|
|
|
|
- Clarify License of valgrind-scripts.
|
|
|
|
|
|
|
|
|
|
* Mon Aug 18 2025 Mark Wielaard <mjw@redhat.com> - 3.25.1-3
|
|
|
|
|
- Add ppc64-strcmp-ld.patch
|
|
|
|
|
- Add 0003-Add-several-missing-syscall-hooks-to-ppc64-linux.patch
|
|
|
|
|
|
|
|
|
|
* Tue Aug 5 2025 Mark Wielaard <mjw@redhat.com> - 3.25.1-2
|
|
|
|
|
- Add VALGRIND_3_25_BRANCH patches
|
|
|
|
|
- 0001-Prepare-NEWS-for-branch-3.25.x-fixes.patch
|
|
|
|
|
- 0002-Bug-503241-s390x-Support-z17-changes-to-the-NNPA-ins.patch
|
|
|
|
|
|
|
|
|
|
* Thu May 22 2025 Mark Wielaard <mjw@redhat.com> - 3.25.1-1
|
|
|
|
|
- Valgrind 3.25.1 final
|
|
|
|
|
|
|
|
|
|
* Fri Apr 25 2025 Mark Wielaard <mjw@redhat.com> - 3.25.0-1
|
|
|
|
|
- Valgrind 3.25.0 final
|
|
|
|
|
|
|
|
|
|
* Tue Mar 18 2025 Mark Wielaard <mjw@redhat.com> - 3.24.0-6
|
|
|
|
|
- More VALGRIND_3_24_BRANCH patches
|
|
|
|
|
0015-ppc-test_dfp2-build-fix-for-GCC-15.patch
|
|
|
|
|
0016-syswrap-generic-Emit-pp_ExeContext-after-the-file-de.patch
|
|
|
|
|
0017-add_hardwired_spec-for-ld-linux-x86-64.so.2-memcmp.patch
|
|
|
|
|
0018-gdbserver_tests-filter-out-new-Missing-rpms-message.patch
|
|
|
|
|
|
|
|
|
|
* Wed Feb 26 2025 Mark Wielaard <mjw@redhat.com> - 3.24.0-4
|
|
|
|
|
- Split main valgrind package into several subpackages:
|
|
|
|
|
- valgrind now contains just the core tools.
|
|
|
|
|
- valgrind-scripts contains the post-processing scripts for callgrind,
|
|
|
|
|
@ -539,49 +546,188 @@ fi
|
|
|
|
|
- valgrind-scripts Recommends valgrind-gdb
|
|
|
|
|
- valgrind-gdb Recommends gdb
|
|
|
|
|
|
|
|
|
|
* Wed Dec 6 2023 Mark Wielaard <mjw@redhat.com> - 3.22.0-2
|
|
|
|
|
* Tue Jan 14 2025 Mark Wielaard <mjw@redhat.com> - 3.24.0-3
|
|
|
|
|
- Add more VALGRIND_3_24_BRANCH patches
|
|
|
|
|
0012-Recognize-new-DWARF5-DW_LANG-constants.patch
|
|
|
|
|
0013-Bug-498317-FdBadUse-is-not-a-valid-CoreError-type-in.patch
|
|
|
|
|
0014-linux-support-EVIOCGRAB-ioctl.patch
|
|
|
|
|
|
|
|
|
|
* Tue Nov 26 2024 Mark Wielaard <mjw@redhat.com> - 3.24.0-2
|
|
|
|
|
- Add VALGRIND_3_24_BRANCH patches
|
|
|
|
|
0001-Prepare-NEWS-for-branch-3.24-fixes.patch
|
|
|
|
|
0002-vgdb.c-fork_and_exec_valgrind-Fix-off-by-one-error-w.patch
|
|
|
|
|
0003-vgdb.c-fork_and_exec_valgrind-Fix-another-off-by-one.patch
|
|
|
|
|
0004-regtest-add-a-fdleak-filter-for-write-on-write-on-li.patch
|
|
|
|
|
0005-Add-exp-and-supp-patterns-for-missing-main-frame-for.patch
|
|
|
|
|
0006-Add-additional-exp-ppc64le-files-to-EXTRA_DIST.patch
|
|
|
|
|
0007-Add-support-for-landlock_create_ruleset-444-landlock.patch
|
|
|
|
|
0008-helgrind-tests-tc17_sembar.c-Remove-bool-typedef.patch
|
|
|
|
|
0009-drd-tests-swapcontext.c-Rename-typedef-struct-thread.patch
|
|
|
|
|
0010-none-tests-bug234814.c-sa_handler-take-an-int-as-arg.patch
|
|
|
|
|
0011-Add-open_tree-move_mount-fsopen-fsconfig-fsmount-fsp.patch
|
|
|
|
|
|
|
|
|
|
* Mon Nov 4 2024 Mark Wielaard <mjw@redhat.com> - 3.24.0-1
|
|
|
|
|
- Upstream 3.24.0 final
|
|
|
|
|
|
|
|
|
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1:3.23.0-5
|
|
|
|
|
- Bump release for October 2024 mass rebuild:
|
|
|
|
|
Resolves: RHEL-64018
|
|
|
|
|
|
|
|
|
|
* Fri Jul 12 2024 Mark Wielaard <mjw@redhat.com> - 3.23.0-4
|
|
|
|
|
Add upstream VALGRIND_3_23_BRANCH patches
|
|
|
|
|
0001-Prepare-NEWS-for-branch-3.23-fixes.patch
|
|
|
|
|
0002-486180-MIPS-VexGuestArchState-has-no-member-named-gu.patch
|
|
|
|
|
0003-Bug-486293-memccpy-false-positives.patch
|
|
|
|
|
0004-Bug-486569-linux-inotify_init-syscall-wrapper-missin.patch
|
|
|
|
|
0005-aarch64-frinta-and-frinta-vector-instructions.patch
|
|
|
|
|
0006-mips-skip-using-shared-syscall-numbers-for-mips32.patch
|
|
|
|
|
0007-Fix-uninitialized-err-in-handle_extension.patch
|
|
|
|
|
0008-Avoid-use-of-guest_IP_AT_SYSCALL-in-handle_extension.patch
|
|
|
|
|
0009-s390x-Minor-fixes-in-extension-s390x.c.patch
|
|
|
|
|
0010-Bug-453044-gbserver_tests-failures-in-aarch64.patch
|
|
|
|
|
0011-Linux-regtest-reallocarray-needs-malloc.h.patch
|
|
|
|
|
0012-Bug-487439-SIGILL-in-JDK11-JDK17.patch
|
|
|
|
|
0013-Don-t-leave-fds-created-with-log-file-xml-file-or-lo.patch
|
|
|
|
|
0014-Close-both-internal-pipe-fds-after-VG_-fork-in-paren.patch
|
|
|
|
|
0015-Don-t-allow-programs-calling-fnctl-on-valgrind-s-own.patch
|
|
|
|
|
0016-mips-skip-using-shared-syscall-numbers-for-mips64.patch
|
|
|
|
|
0017-gdbserver_tests-filters-remove-python-rpm-module-loa.patch
|
|
|
|
|
0018-Implement-VMOVQ-xmm1-xmm2-m64.patch
|
|
|
|
|
0019-arm64-Fix-fcvtas-instruction.patch
|
|
|
|
|
0020-gdbserver_tests-filters-remove-more-verbose-python-r.patch
|
|
|
|
|
0021-Avoid-dev-inode-check-on-btrfs-with-sanity-level-3.patch
|
|
|
|
|
|
|
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1:3.23.0-2
|
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Apr 26 2024 Mark Wielaard <mjw@redhat.com> - 3.23.0-1
|
|
|
|
|
- Upstream 3.23.0 final
|
|
|
|
|
- configure --enable-lto
|
|
|
|
|
- Remove all upstreamed patches
|
|
|
|
|
- Add BuildRequires: python3-devel for running testsuite.
|
|
|
|
|
- Update license tags to spdx
|
|
|
|
|
|
|
|
|
|
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.22.0-6
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jan 22 2024 Mark Wielaard <mjw@fedoraproject.org> - 3.22.0-5
|
|
|
|
|
- Add valgrind-3.22.0-x86-nop.patch
|
|
|
|
|
|
|
|
|
|
* Sat Dec 9 2023 Mark Wielaard <mjw@fedoraproject.org> - 3.22.0-4
|
|
|
|
|
- Add valgrind-3.22.0-fchmodat2.patch
|
|
|
|
|
- Prep for migration to SPDX identifiers
|
|
|
|
|
|
|
|
|
|
* Tue Dec 5 2023 Mark Wielaard <mjw@fedoraproject.org> - 3.22.0-3
|
|
|
|
|
- Add valgrind-3.22.0-rodata.patch
|
|
|
|
|
|
|
|
|
|
* Fri Nov 3 2023 Mark Wielaard <mjw@redhat.com> - 3.22.0-1
|
|
|
|
|
* Fri Nov 17 2023 Mark Wielaard <mjw@fedoraproject.org> - 3.22.0-2
|
|
|
|
|
- Add valgrind-3.22.0-valgrind-monitor-python-re.patch
|
|
|
|
|
- Drop support for rhel6
|
|
|
|
|
|
|
|
|
|
* Tue Oct 31 2023 Mark Wielaard <mjw@fedoraproject.org> - 3.22.0-1
|
|
|
|
|
- Upstream 3.22.0 final
|
|
|
|
|
- BuildRequires elfutils-debuginfod for testing
|
|
|
|
|
|
|
|
|
|
* Mon Oct 30 2023 Mark Wielaard <mjw@fedoraproject.org> - 3.22.0-0.2.RC2
|
|
|
|
|
- Update valgrind-3.21.0-no-memcpy-replace-check.patch
|
|
|
|
|
- Fedora 40 dropped openmpi support on i386
|
|
|
|
|
|
|
|
|
|
* Thu Oct 26 2023 Mark Wielaard <mjw@fedoraproject.org> - 3.22.0-0.1.RC2
|
|
|
|
|
- Upstream 3.22.0-RC2
|
|
|
|
|
|
|
|
|
|
* Tue Oct 17 2023 Mark Wielaard <mjw@fedoraproject.org> - 3.22.0-0.1.RC1
|
|
|
|
|
- Upstream 3.22.0-RC1
|
|
|
|
|
- Remove all upstreamed patches
|
|
|
|
|
- Adjust valgrind-3.16.0-some-stack-protector.patch
|
|
|
|
|
- Adjust valgrind-3.16.0-some-Wl-z-now.patch
|
|
|
|
|
- Add cachegrind.h to valgrind-devel package
|
|
|
|
|
|
|
|
|
|
* Mon Aug 21 2023 Mark Wielaard <mjw@fedoraproject.org> - 3.21.0-10
|
|
|
|
|
- Add valgrind-3.21.0-lazy-debuginfo.patch
|
|
|
|
|
- Add valgrind-3.21.0-cleanup-read_elf_object.patch
|
|
|
|
|
|
|
|
|
|
* Thu Aug 17 2023 Mark Wielaard <mjw@fedoraproject.org> - 3.21.0-9
|
|
|
|
|
- Add valgrind-3.21.0-gdb-multi-mode-stdout-redirecting-to-stderr.patch
|
|
|
|
|
- Use %%patch -Pn instead of deprecated %%patchn
|
|
|
|
|
|
|
|
|
|
* Tue Jun 27 2023 Mark Wielaard <mjw@redhat.com> - 3.21.0-8
|
|
|
|
|
- BuildRequire python3.11
|
|
|
|
|
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.21.0-8
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jun 23 2023 Mark Wielaard <mjw@redhat.com> - 3.21.0-7
|
|
|
|
|
- Add valgrind-3.21.0-callgrind_control-no-strict.patch
|
|
|
|
|
- Add valgrind-3.21.0-realloc-again.patch
|
|
|
|
|
- Update valgrind-3.21.0-no-memcpy-replace-check.patch (memcpy_chk)
|
|
|
|
|
* Thu Jun 22 2023 Mark Wielaard <mjw@fedoraproject.org> - 3.21.0-7
|
|
|
|
|
- Add valgrind-3.21.0-vgm.patch and valgrind-3.21.0-vgm-tests.patch
|
|
|
|
|
- Add valgrind-3.21.0-pgste.patch
|
|
|
|
|
|
|
|
|
|
* Thu Jun 1 2023 Mark Wielaard <mjw@fedoraproject.org> - 3.21.0-6
|
|
|
|
|
- Add valgrind-3.21.0-callgrind_control-no-strict.patch
|
|
|
|
|
- Add valgrind-3.21.0-realloc-again.patch
|
|
|
|
|
|
|
|
|
|
* Tue May 30 2023 Mark Wielaard <mjw@fedoraproject.org> - 3.21.0-5
|
|
|
|
|
- Update valgrind-3.21.0-no-memcpy-replace-check.patch (memcpy_chk)
|
|
|
|
|
|
|
|
|
|
* Wed May 17 2023 Mark Wielaard <mjw@fedoraproject.org> - 3.21.0-4
|
|
|
|
|
- Add valgrind-3.21.0-epoll_pwait2.patch
|
|
|
|
|
|
|
|
|
|
* Tue May 16 2023 Alexandra Hájková <ahajkova@redhat.com> - 3.21.0-3
|
|
|
|
|
- Add valgrind-3.21.0-Add-with-gdbscripts-dir.patch
|
|
|
|
|
|
|
|
|
|
* Fri May 5 2023 Mark Wielaard <mjw@redhat.com> - 3.21.0-2
|
|
|
|
|
- Upgrade to upstream 3.21.0
|
|
|
|
|
- Remove upstreamed patches
|
|
|
|
|
* Fri May 5 2023 Mark Wielaard <mjw@fedoraproject.org> - 3.21.0-2
|
|
|
|
|
- Add valgrind-3.21.0-no-memcpy-replace-check.patch
|
|
|
|
|
|
|
|
|
|
* Tue Apr 19 2022 Mark Wielaard <mjw@redhat.com> - 3.19.0-1
|
|
|
|
|
* Fri Apr 28 2023 Mark Wielaard <mjw@fedoraproject.org> - 3.21.0-1
|
|
|
|
|
- Upstream 3.21.0 final
|
|
|
|
|
|
|
|
|
|
* Sat Apr 22 2023 Mark Wielaard <mjw@fedoraproject.org> - 3.21.0-0.1.RC2
|
|
|
|
|
- Upstream 3.21.0-RC2
|
|
|
|
|
|
|
|
|
|
* Fri Apr 21 2023 Mark Wielaard <mjw@fedoraproject.org> - 3.21.0-0.1.RC1
|
|
|
|
|
- Upstream 3.21.0-RC1
|
|
|
|
|
- Remove upstreamed valgrind-faultstatus-implicit-int.patch
|
|
|
|
|
- Adjust valgrind-3.16.0-some-{Wl-z-now,stack-protector}.patch
|
|
|
|
|
cg_merge is now a pything script.
|
|
|
|
|
|
|
|
|
|
* Fri Nov 18 2022 Florian Weimer <fweimer@redhat.com> - 1:3.20.0-2
|
|
|
|
|
- Avoid using implicit int C89 feature
|
|
|
|
|
|
|
|
|
|
* Mon Oct 24 2022 Mark Wielaard <mjw@fedoraproject.org> - 3.20.0-1
|
|
|
|
|
- Upgrade to valgrind 3.20.0. Drop old patches.
|
|
|
|
|
|
|
|
|
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.19.0-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed May 25 2022 Mark Wielaard <mjw@fedoraproject.org> - 3.19.0-3
|
|
|
|
|
- Add valgrind-3.19.0-s390x-memmem.patch
|
|
|
|
|
|
|
|
|
|
* Fri May 13 2022 Mark Wielaard <mjw@fedoraproject.org> - 3.19.0-2
|
|
|
|
|
- Add valgrind-3.19.0-ld-so-strncmp.patch
|
|
|
|
|
|
|
|
|
|
* Tue Apr 12 2022 Mark Wielaard <mjw@fedoraproject.org> - 3.19.0-1
|
|
|
|
|
- Upgrade to valgrind 3.19.0. Drop old patches.
|
|
|
|
|
|
|
|
|
|
* Thu Feb 10 2022 Mark Wielaard <mjw@redhat.com> - 3.18.1-7
|
|
|
|
|
* Tue Feb 8 2022 Mark Wielaard <mjw@fedoraproject.org>
|
|
|
|
|
- Add valgrind-3.18.1-ppc64-cmov.patch
|
|
|
|
|
- Add valgrind-3.18.1-arm64-atomics-rdm.patch
|
|
|
|
|
- Add valgrind-3.18.1-rust-demangle-suffix.patch
|
|
|
|
|
|
|
|
|
|
* Tue Nov 30 2021 Mark Wielaard <mjw@redhat.com> - 3.18.1-6
|
|
|
|
|
- Rebuild against fresh toolchain
|
|
|
|
|
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.18.1-9
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Nov 24 2021 Mark Wielaard <mjw@redhat.com> - 3.18.1-5
|
|
|
|
|
- Add valgrind-3.18.1-dhat-tests-copy.patch
|
|
|
|
|
- Add valgrind-3.18.1-s390x-EXRL.patch
|
|
|
|
|
- Add valgrind-3.18.1-ppc64-lxsibzx-lxsihzx.patch
|
|
|
|
|
* Wed Jan 12 2022 Mark Wielaard <mjw@fedoraproject.org> - 3.18.1-8
|
|
|
|
|
- Add valgrind-3.18.1-ppc-hwcaps.patch
|
|
|
|
|
- Add valgrind-3.18.1-s390x-wflrx.patch
|
|
|
|
|
|
|
|
|
|
* Sat Dec 11 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.18.1-7
|
|
|
|
|
-Add valgrind-3.18.1-s390x-vdso.patch
|
|
|
|
|
|
|
|
|
|
* Fri Dec 10 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.18.1-6
|
|
|
|
|
- Add valgrind-3.18.1-rseq-enosys.patch
|
|
|
|
|
|
|
|
|
|
* Mon Nov 22 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.18.1-5
|
|
|
|
|
- Add valgrind-3.18.1-demangle-namespace.patch
|
|
|
|
|
|
|
|
|
|
* Fri Nov 19 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.18.1-4
|
|
|
|
|
- Add valgrind-3.18.1-condvar.patch
|
|
|
|
|
|
|
|
|
|
* Wed Nov 17 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.18.1-3
|
|
|
|
|
- Add valgrind-3.18.1-ppc-pstq.patch
|
|
|
|
|
- Add valgrind-3.18.1-ppc-pstq-tests.patch
|
|
|
|
|
- Add valgrind-3.18.1-gdbserver_tests-hwcap.patch
|
|
|
|
|
@ -590,55 +736,226 @@ fi
|
|
|
|
|
- Add valgrind-3.18.1-arm64-ldaxp-stlxp.patch
|
|
|
|
|
- Add valgrind-3.18.1-arm64-atomic-align.patch
|
|
|
|
|
- Add valgrind-3.18.1-amd64-more-spec-rules.patch
|
|
|
|
|
- Add valgrind-3.18.1-condvar.patch
|
|
|
|
|
- Add valgrind-3.18.1-demangle-namespace.patch
|
|
|
|
|
|
|
|
|
|
* Wed Oct 20 2021 Mark Wielaard <mjw@redhat.com> - 3.18.1-1
|
|
|
|
|
* Mon Nov 1 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.18.1-2
|
|
|
|
|
- Add valgrind-3.18.1-dhat-tests-copy.patch
|
|
|
|
|
- Add valgrind-3.18.1-s390x-EXRL.patch
|
|
|
|
|
- Add valgrind-3.18.1-ppc64-lxsibzx-lxsihzx.patch
|
|
|
|
|
|
|
|
|
|
* Fri Oct 15 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.18.0-1
|
|
|
|
|
- Update to upstream 3.18.1 final
|
|
|
|
|
|
|
|
|
|
* Thu Jun 24 2021 Mark Wielaard <mjw@redhat.com> - 3.17.0-5
|
|
|
|
|
* Wed Oct 13 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.18.0-0.1.RC1
|
|
|
|
|
- Update to upstream 3.18.0-RC1
|
|
|
|
|
- Drop all upstreamed patches
|
|
|
|
|
|
|
|
|
|
* Mon Sep 20 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.17.0-13
|
|
|
|
|
- Add valgrind-3.17.0-dwarf-atomic_type.patch
|
|
|
|
|
- Add valgrind-3.17.0-faster-readdwarf3.patch
|
|
|
|
|
|
|
|
|
|
* Wed Sep 8 2021 Mark Wielaard <mjw@fedoraproject.org>
|
|
|
|
|
- Add valgrind-3.17.0-ppc64-test_isa_3_1_VRT.patch
|
|
|
|
|
|
|
|
|
|
* Wed Aug 25 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.17.0-12
|
|
|
|
|
- Add valgrind-3.17.0-vgdb-queued-signals.patch
|
|
|
|
|
- Add valgrind-3.17.0-ppc64-test-isa-3-1.patch
|
|
|
|
|
- Add valgrind-3.17.0-ppc64-pstxvp.patch
|
|
|
|
|
|
|
|
|
|
* Fri Aug 6 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.17.0-11
|
|
|
|
|
- Add valgrind-3.17.0-ppc64-statfs64.patch
|
|
|
|
|
|
|
|
|
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.17.0-10
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jul 21 2021 Mark Wielaard <mjw@fedoraproject.org>
|
|
|
|
|
- Add valgrind-3.17.0_start.patch
|
|
|
|
|
|
|
|
|
|
* Wed Jul 21 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.17.0-9
|
|
|
|
|
- Add valgrind-3.17.0-clone3.patch
|
|
|
|
|
|
|
|
|
|
* Sat Jul 17 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.17.0-8
|
|
|
|
|
- Update drd suppression for native ld.so names.
|
|
|
|
|
|
|
|
|
|
* Sat Jul 17 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.17.0-7
|
|
|
|
|
- Add gdbserver_tests-update-filters-for-newer-glibc-gdb.patch
|
|
|
|
|
- Add helgrind-and-drd-suppression-libc-and-libpthread.patch
|
|
|
|
|
- Remove valgrind-3.9.0-helgrind-race-supp.patch
|
|
|
|
|
|
|
|
|
|
* Fri Jul 9 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.17.0-6
|
|
|
|
|
- Update to include fixed CI gating tests.
|
|
|
|
|
|
|
|
|
|
* Fri Jun 18 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.17.0-5
|
|
|
|
|
- Add valgrind-3.17.0-s390-prep.patch
|
|
|
|
|
- Add valgrind-3.17.0-s390-z15.patch
|
|
|
|
|
- Add valgrind-3.17.0-s390-z13-vec-fix.patch
|
|
|
|
|
|
|
|
|
|
* Thu Jun 3 2021 Mark Wielaard <mjw@redhat.com> - 3.17.0-4
|
|
|
|
|
- Update to upstream 3.17.0 final.
|
|
|
|
|
- Add valgrind-3.17.0-ppc64-isa-3.1{,tests}.patch
|
|
|
|
|
* Thu Jun 3 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.17.0-4
|
|
|
|
|
- Add valgrind-3.17.0-s390_insn_as_string.patch
|
|
|
|
|
- Add valgrind-3.17.0-debuginfod.patch
|
|
|
|
|
- Add valgrind-3.17.0-clone-parent-res.patch
|
|
|
|
|
|
|
|
|
|
* Fri Dec 4 2020 Mark Wielaard <mjw@redhat.com> - 3.16.0-4
|
|
|
|
|
* Tue May 4 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.17.0-3
|
|
|
|
|
- Add valgrind-3.17.0-ppc64-isa-3.1{,tests}.patch
|
|
|
|
|
|
|
|
|
|
* Fri Apr 16 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.17.0-2
|
|
|
|
|
- Add CI gating
|
|
|
|
|
|
|
|
|
|
* Mon Mar 22 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.17.0-1
|
|
|
|
|
- Update to upstream 3.17.0 final.
|
|
|
|
|
|
|
|
|
|
* Wed Mar 17 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.17.0-0.1.RC2
|
|
|
|
|
- Update to upstream 3.17.0-RC2
|
|
|
|
|
|
|
|
|
|
* Mon Mar 15 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.17.0-0.1.RC1
|
|
|
|
|
- Update to upstream 3.17.0-RC1
|
|
|
|
|
- Drop all upstreamed patches
|
|
|
|
|
|
|
|
|
|
* Wed Mar 3 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.16.1-20
|
|
|
|
|
- Add valgrind-3.16.1-arm64_sp_lr_fp_DwReg.patch
|
|
|
|
|
|
|
|
|
|
* Sun Feb 21 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.16.1-19
|
|
|
|
|
- Add valgrind-3.16.1-readdwarf-line.patch
|
|
|
|
|
|
|
|
|
|
* Sat Feb 6 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.16.1-18
|
|
|
|
|
- Update valgrind-3.16.1-open-proc-self-exe.patch to handle openat
|
|
|
|
|
|
|
|
|
|
* Sat Feb 6 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.16.1-17
|
|
|
|
|
- Add valgrind-3.16.1-open-proc-self-exe.patch
|
|
|
|
|
|
|
|
|
|
* Wed Feb 3 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.16.1-16
|
|
|
|
|
- Add valgrind-3.16.0-shmctl.patch
|
|
|
|
|
|
|
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.16.1-15
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jan 25 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.16.1-14
|
|
|
|
|
- Add valgrind-3.16.1-dwarf5.patch
|
|
|
|
|
|
|
|
|
|
* Fri Jan 8 2021 Mark Wielaard <mjw@fedoraproject.org> - 3.16.1-13
|
|
|
|
|
- Add valgrind-3.16.1-ppc64-scv-hwcap.patch
|
|
|
|
|
|
|
|
|
|
* Sun Dec 20 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.1-12
|
|
|
|
|
- Add valgrind-3.16.1-ficlone.patch
|
|
|
|
|
- Add valgrind-3.16.1-arm64-expensive-cmp.patch
|
|
|
|
|
|
|
|
|
|
* Thu Dec 17 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.1-11
|
|
|
|
|
- Update valgrind-3.16.1-arm64-fma.patch
|
|
|
|
|
|
|
|
|
|
* Tue Dec 15 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.1-10
|
|
|
|
|
- Add valgrind-3.16.1-arm64-fma.patch
|
|
|
|
|
|
|
|
|
|
* Sun Dec 13 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.1-9
|
|
|
|
|
- Add valgrind-3.16.1-stxsibx-stxsihx.patch
|
|
|
|
|
|
|
|
|
|
* Thu Dec 3 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.1-8
|
|
|
|
|
- Update valgrind-3.16.1-s390x-z14-vector.patch
|
|
|
|
|
|
|
|
|
|
* Thu Dec 3 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.1-7
|
|
|
|
|
- Add valgrind-3.16.1-pthread-intercept.patch
|
|
|
|
|
- Add valgrind-3.16.1-s390_emit_load_mem.patch
|
|
|
|
|
- Add valgrind-3.16.1-s390x-z14-vector.patch
|
|
|
|
|
|
|
|
|
|
* Tue Oct 20 2020 Mark Wielaard <mjw@redhat.com> - 3.16.0-3
|
|
|
|
|
* Mon Nov 9 2020 Mark Wielaard <mjw@fedoraproject.org>
|
|
|
|
|
- Add BuildRequires which (#1895773)
|
|
|
|
|
|
|
|
|
|
* Fri Oct 16 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.1-6
|
|
|
|
|
- Add valgrind-3.16.1-faccessat2.patch
|
|
|
|
|
- Add valgrind-3.16.1-gdbserver_nlcontrolc.patch
|
|
|
|
|
- Add valgrind-3.16.1-PPC64BE-lsw.patch
|
|
|
|
|
|
|
|
|
|
* Tue Aug 18 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.1-5
|
|
|
|
|
- Update valgrind-3.16.1-epoll.patch
|
|
|
|
|
|
|
|
|
|
* Mon Jul 27 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.1-4
|
|
|
|
|
- Add valgrind-3.16.1-REX-prefix-JMP.patch
|
|
|
|
|
- Add valgrind-3.16.1-epoll.patch
|
|
|
|
|
- Add valgrind-3.16.1-sched_getsetattr.patch
|
|
|
|
|
- Add valgrind-3.16.1-dl_runtime_resolve.patch
|
|
|
|
|
|
|
|
|
|
* Wed Jun 24 2020 Mark Wielaard <mjw@redhat.com> - 3.16.0-2
|
|
|
|
|
- Add valgrind-3.16.0-ppc-L-field.patch
|
|
|
|
|
- Add valgrind-3.16.0-387-float.patch
|
|
|
|
|
* Tue Jul 14 2020 Tom Stellard <tstellar@redhat.com> - 3.16.1-3
|
|
|
|
|
- Use make macros
|
|
|
|
|
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
|
|
|
|
|
|
|
|
|
|
* Thu May 28 2020 Mark Wielaard <mjw@redhat.com> - 3.16.0-1
|
|
|
|
|
* Wed Jul 8 2020 Jeff Law <law@redhat.org> - 3.16.1-2
|
|
|
|
|
- Disable LTO
|
|
|
|
|
|
|
|
|
|
* Tue Jun 23 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.1-1
|
|
|
|
|
- Update to upstream valgrind 3.16.1.
|
|
|
|
|
|
|
|
|
|
* Fri Jun 19 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.0-3
|
|
|
|
|
- Add valgrind-3.16.0-ppc-L-field.patch
|
|
|
|
|
|
|
|
|
|
* Wed May 27 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.0-2
|
|
|
|
|
- Apply stack-protector and -Wl,z,now patches.
|
|
|
|
|
|
|
|
|
|
* Wed May 27 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.0-1
|
|
|
|
|
- Update to upstream valgrind 3.16.0 final.
|
|
|
|
|
|
|
|
|
|
* Fri Feb 14 2020 Mark Wielaard <mjw@redhat.com> - 3.15.0-11
|
|
|
|
|
* Tue May 19 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.0-0.4.RC2
|
|
|
|
|
- Add docbook-dtds to BuildRequires.
|
|
|
|
|
|
|
|
|
|
* Tue May 19 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.0-0.3.RC2
|
|
|
|
|
- Update to upstream 3.16.0 RC2
|
|
|
|
|
|
|
|
|
|
* Fri May 1 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.0-0.2.GIT
|
|
|
|
|
- Update to upstream 3.16.0 branch point (commit 55cdb7c4e)
|
|
|
|
|
|
|
|
|
|
* Fri Apr 17 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.16.0-0.1.GIT
|
|
|
|
|
- Update to upstream 3.16.0-GIT (commit 52d02fe23)
|
|
|
|
|
- Drop all streamed patches.
|
|
|
|
|
|
|
|
|
|
* Wed Mar 4 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-20
|
|
|
|
|
- Add valgrind-3.15.0-z15.patch
|
|
|
|
|
|
|
|
|
|
* Fri Feb 28 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-19
|
|
|
|
|
- Add valgrind-3.15.0-time64.patch
|
|
|
|
|
- Add valgrind-3.15.0-arm-preadv2-pwritev2.patch
|
|
|
|
|
- Add valgrind-3.15.0-avx_estimate_insn-test.patch
|
|
|
|
|
- Add valgrind-3.15.0-gcc-10-x86-amd64-asm-test.patch
|
|
|
|
|
|
|
|
|
|
* Fri Feb 14 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-18
|
|
|
|
|
- Add valgrind-3.15.0-ppc64-sigframe.patch
|
|
|
|
|
|
|
|
|
|
* Thu Feb 13 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-17
|
|
|
|
|
- Add valgrind-3.15.0-glibc-dtv-supp.patch
|
|
|
|
|
|
|
|
|
|
* Wed Jan 29 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-16
|
|
|
|
|
- Add valgrind-3.15.0-s390x-HRcVec128.patch
|
|
|
|
|
|
|
|
|
|
* Mon Aug 5 2019 Mark Wielaard <mjw@redhat.com> - 3.15.0-10
|
|
|
|
|
- Add valgrind-3.15.0-preadv2-pwritev2.patch
|
|
|
|
|
* Wed Jan 29 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-15
|
|
|
|
|
- Don't use valgrind-3.15.0-ptrace-siginfo.patch on ppc64[le]
|
|
|
|
|
- Add valgrind-3.15.0-s390x-compare-and-signal.patch
|
|
|
|
|
|
|
|
|
|
* Wed May 29 2019 Mark Wielaard <mjw@redhat.com> - 3.15.0-9
|
|
|
|
|
* Fri Jan 24 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-14
|
|
|
|
|
- Add valgrind-3.15.0-gcc-10-i686-asm-test.patch
|
|
|
|
|
- Add valgrind-3.15.0-gcc10-ppc64-asm-constraints.patch
|
|
|
|
|
|
|
|
|
|
* Thu Jan 23 2020 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-13
|
|
|
|
|
- Add valgrind-3.15.0-gcc-10-typedef-enum.patch
|
|
|
|
|
|
|
|
|
|
* Mon Sep 23 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-12
|
|
|
|
|
- Add valgrind-3.15.0-ptrace-siginfo.patch
|
|
|
|
|
|
|
|
|
|
* Mon Aug 5 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-11
|
|
|
|
|
- Add valgrind-3.15.0-preadv2-pwritev2.patch
|
|
|
|
|
- Add valgrind-3.15.0-arm-membarrier.patch
|
|
|
|
|
- Add valgrind-3.15.0-z14-misc.patch
|
|
|
|
|
|
|
|
|
|
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.15.0-10
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed May 29 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-9
|
|
|
|
|
- Add valgrind-3.15.0-pkey.patch
|
|
|
|
|
|
|
|
|
|
* Tue May 28 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-8
|
|
|
|
|
- Update valgrind-3.15.0-copy_file_range.patch.
|
|
|
|
|
- Add valgrind-3.15.0-avx-rdrand-f16c.patch.
|
|
|
|
|
|
|
|
|
|
* Fri May 24 2019 Mark Wielaard <mjw@redhat.com> - 3.15.0-6
|
|
|
|
|
- Update valgrind-3.15.0-copy_file_range.patch.
|
|
|
|
|
* Fri May 24 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-7
|
|
|
|
|
- Update valgrind-3.15.0-some-stack-protector.patch to include getoff.
|
|
|
|
|
- Add valgrind-3.15.0-some-Wl-z-now.patch
|
|
|
|
|
|
|
|
|
|
* Fri May 24 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-6
|
|
|
|
|
- Add valgrind-3.15.0-s390x-wrap-drd.patch
|
|
|
|
|
|
|
|
|
|
* Mon May 20 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-5
|
|
|
|
|
@ -646,32 +963,115 @@ fi
|
|
|
|
|
- Add valgrind-3.15.0-scalar-arm64.patch
|
|
|
|
|
- Add valgrind-3.15.0-scalar-x86.patch
|
|
|
|
|
|
|
|
|
|
* Wed May 8 2019 Mark Wielaard <mjw@redhat.com> - 3.15.0-4
|
|
|
|
|
- Add valgrind-3.15.0-copy_file_range.patch
|
|
|
|
|
* Tue May 7 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-4
|
|
|
|
|
- Add valgrind-3.15.0-arm64-ld-stpcpy.patch
|
|
|
|
|
|
|
|
|
|
* Tue May 7 2019 Mark Wielaard <mjw@redhat.com> - 3.15.0-2
|
|
|
|
|
* Sun May 5 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-3
|
|
|
|
|
- Add valgrind-3.15.0-copy_file_range.patch
|
|
|
|
|
|
|
|
|
|
* Thu Apr 25 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-2
|
|
|
|
|
- gdb has been fixed on fedora, run full regtests again.
|
|
|
|
|
- Add valgrind-3.15.0-ppc64-filter_gdb.patch
|
|
|
|
|
|
|
|
|
|
* Tue Apr 16 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-1
|
|
|
|
|
- On ppc64[be] -fexceptions is troublesome.
|
|
|
|
|
- valgrind-3.15.0 final
|
|
|
|
|
- clean up build flags
|
|
|
|
|
Remove upstreamed patches
|
|
|
|
|
- valgrind-3.15.0-arm64-Ity_F16.patch
|
|
|
|
|
- valgrind-3.15.0-filter-libc-futex.patch
|
|
|
|
|
- valgrind-3.15.0-mmap-32bit.patch
|
|
|
|
|
|
|
|
|
|
* Wed Apr 17 2019 Mark Wielaard <mjw@redhat.com> - 3.14.0-11
|
|
|
|
|
- Rebuilt with s390x-vec-facility-bit for 8.1.0 (#1669234)
|
|
|
|
|
* Sun Apr 14 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-0.8.RC2
|
|
|
|
|
- Adding of stack-protector flag should only be done with newer gcc.
|
|
|
|
|
- Older rpm macros didn't provide build_ldflags.
|
|
|
|
|
- Add valgrind-3.15.0-arm64-Ity_F16.patch
|
|
|
|
|
|
|
|
|
|
* Thu Jan 24 2019 Mark Wielaard <mjw@redhat.com> - 3.14.0-10
|
|
|
|
|
* Sun Apr 14 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-0.7.RC2
|
|
|
|
|
- Add valgrind-3.15.0-some-stack-protector.patch
|
|
|
|
|
|
|
|
|
|
* Sat Apr 13 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-0.6.RC2
|
|
|
|
|
- Pass through most (hardening) flags, except -O2, -fstack-protector
|
|
|
|
|
and -Wl,-z,now.
|
|
|
|
|
|
|
|
|
|
* Fri Apr 12 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-0.5.RC2
|
|
|
|
|
- No openmpi support on old s390x rhel.
|
|
|
|
|
- Disable s390x z13 support on rhel6 (too old binutils).
|
|
|
|
|
- Use an explicit ExclusiveArch, don't rely on %%valgrind_arches.
|
|
|
|
|
- Drop close_fds, it is no longer needed.
|
|
|
|
|
- Include any gdbserver_tests diffs for failing regtest.
|
|
|
|
|
|
|
|
|
|
* Thu Apr 11 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-0.4.RC2
|
|
|
|
|
- Update to 3.15.0.RC2.
|
|
|
|
|
- Drop upstreamed patches:
|
|
|
|
|
- valgrind-3.15.0-s390x-get-startregs-constraint.patch
|
|
|
|
|
- valgrind-3.15.0-missing-a-c.patch
|
|
|
|
|
- valgrind-3.15.0-libstdc++-supp.patch
|
|
|
|
|
- valgrind-3.15.0-dhat-x86.patch
|
|
|
|
|
- valgrind-3.15.0-gdb-output1.patch
|
|
|
|
|
- valgrind-3.15.0-gdb-output2.patch
|
|
|
|
|
- Update valgrind-3.15.0-mmap-32bit.patch to upstream version.
|
|
|
|
|
- gdb on f30 and rawhide is currently broken, don't run_full_regtest.
|
|
|
|
|
- Any glibc-devel version is.
|
|
|
|
|
- Drop rhel5 special case for tools-devel.
|
|
|
|
|
- Use /bin/true --help as sanity test.
|
|
|
|
|
|
|
|
|
|
* Wed Apr 10 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-0.3.RC1
|
|
|
|
|
- Enable full regtest on all fedora arches.
|
|
|
|
|
- Make sure that patched a.c is not newer than cgout-test.
|
|
|
|
|
- Update valgrind-3.15.0-gdb-output1.patch to upstream version.
|
|
|
|
|
- Add valgrind-3.15.0-filter-libc-futex.patch.
|
|
|
|
|
- Add valgrind-3.15.0-mmap-32bit.patch.
|
|
|
|
|
|
|
|
|
|
* Tue Apr 9 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-0.2.RC1
|
|
|
|
|
- Add valgrind-3.15.0-s390x-get-startregs-constraint.patch
|
|
|
|
|
- Add valgrind-3.15.0-missing-a-c.patch
|
|
|
|
|
- Add valgrind-3.15.0-libstdc++-supp.patch
|
|
|
|
|
- Add valgrind-3.15.0-dhat-x86.patch
|
|
|
|
|
- Add valgrind-3.15.0-gdb-output1.patch
|
|
|
|
|
- Add valgrind-3.15.0-gdb-output2.patch
|
|
|
|
|
|
|
|
|
|
* Mon Apr 8 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.15.0-0.1.RC1
|
|
|
|
|
- Remove patches to prebuild files and always ./autogen.sh.
|
|
|
|
|
- Only ever build primary arch. Put tools under libexec.
|
|
|
|
|
- Update to upstream 3.15.0-RC1.
|
|
|
|
|
- Drop all upstreamed patches.
|
|
|
|
|
|
|
|
|
|
* Mon Mar 4 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-16
|
|
|
|
|
- Add valgrind-3.14.0-gettid.patch
|
|
|
|
|
|
|
|
|
|
* Mon Mar 4 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-15
|
|
|
|
|
- Add valgrind-3.14.0-ppc64-quotactl.patch
|
|
|
|
|
|
|
|
|
|
* Thu Feb 21 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-14
|
|
|
|
|
- Add valgrind-3.14.0-ppc-subfe.patch
|
|
|
|
|
|
|
|
|
|
* Thu Feb 14 2019 Orion Poplawski <orion@nwra.com> - 1:3.14.0-13
|
|
|
|
|
- Rebuild for openmpi 3.1.3
|
|
|
|
|
|
|
|
|
|
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.14.0-12
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jan 24 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-11
|
|
|
|
|
- Add valgrind-3.14.0-s390x-vec-facility-bit.patch.
|
|
|
|
|
|
|
|
|
|
* Mon Jan 7 2019 Mark Wielaard <mjw@redhat.com> - 3.14.0-9
|
|
|
|
|
* Wed Jan 9 2019 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-10
|
|
|
|
|
- Add valgrind-3.14.0-rsp-clobber.patch
|
|
|
|
|
- Add valgrind-3.14.0-subrange_type-count.patch
|
|
|
|
|
|
|
|
|
|
* Mon Dec 31 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-9
|
|
|
|
|
- Add valgrind-3.14.0-vbit-test-sec.patch
|
|
|
|
|
- Add valgrind-3.14.0-x86-Iop_Sar64.patch
|
|
|
|
|
- Add valgrind-3.14.0-power9-addex.patch
|
|
|
|
|
|
|
|
|
|
* Thu Dec 20 2018 Mark Wielaard <mjw@redhat.com> - 3.14.0-8
|
|
|
|
|
- Update valgrind-3.14.0-jm-vmx-constraints.patch for ppc64. (#1658680)
|
|
|
|
|
* Thu Dec 20 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-8
|
|
|
|
|
- Update valgrind-3.14.0-jm-vmx-constraints.patch for ppc64.
|
|
|
|
|
- Show all diff files in check, not just the main/default one.
|
|
|
|
|
|
|
|
|
|
* Mon Dec 17 2018 Mark Wielaard <mjw@redhat.com> - 3.14.0-7
|
|
|
|
|
* Fri Dec 14 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-7
|
|
|
|
|
- Add valgrind-3.14.0-arm64-ptrace-traceme.patch
|
|
|
|
|
- Add valgrind-3.14.0-mc_translate-vecret.patch
|
|
|
|
|
|
|
|
|
|
* Wed Dec 12 2018 Mark Wielaard <mjw@redhat.com> - 3.14.0-6
|
|
|
|
|
* Wed Dec 12 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-6
|
|
|
|
|
- Add valgrind-3.14.0-final_tidyup.patch
|
|
|
|
|
- Add valgrind-3.14.0-ppc64-ldbrx.patch
|
|
|
|
|
- Add valgrind-3.14.0-ppc64-unaligned-words.patch
|
|
|
|
|
@ -684,42 +1084,45 @@ fi
|
|
|
|
|
- Add valgrind-3.14.0-sigkill.patch
|
|
|
|
|
- Add valgrind-3.14.0-ppc64-ptrace.patch
|
|
|
|
|
|
|
|
|
|
* Tue Dec 4 2018 Mark Wielaard <mjw@redhat.com>
|
|
|
|
|
- Add valgrind-3.14.0-wcsncmp.patch (#1655642)
|
|
|
|
|
|
|
|
|
|
* Sat Dec 1 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-5
|
|
|
|
|
- Add valgrind-3.14.0-wcsncmp.patch (#1645971)
|
|
|
|
|
- Replace valgrind-3.14.0-s390x-vec-float-point-{code,test}.patch
|
|
|
|
|
with upstream versions. (#1525405)
|
|
|
|
|
with upstream versions.
|
|
|
|
|
|
|
|
|
|
* Fri Nov 23 2018 Mark Wielaard <mjw@redhat.com> - 3.14.0-4
|
|
|
|
|
* Fri Nov 23 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-4
|
|
|
|
|
- Add valgrind-3.14.0-get_otrack_shadow_offset_wrk-ppc.patch,
|
|
|
|
|
valgrind-3.14.0-new-strlen-IROps.patch,
|
|
|
|
|
valgrind-3.14.0-ppc-instr-new-IROps.patch,
|
|
|
|
|
valgrind-3.14.0-memcheck-new-IROps.patch,
|
|
|
|
|
valgrind-3.14.0-ppc-frontend-new-IROps.patch,
|
|
|
|
|
valgrind-3.14.0-transform-popcount64-ctznat64.patch and
|
|
|
|
|
valgrind-3.14.0-enable-ppc-Iop_Sar_Shr8.patch (#1532205)
|
|
|
|
|
valgrind-3.14.0-enable-ppc-Iop_Sar_Shr8.patch (#1652926)
|
|
|
|
|
|
|
|
|
|
* Wed Nov 21 2018 Mark Wielaard <mjw@redhat.com> - 3.14.0-3
|
|
|
|
|
* Wed Nov 21 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-3
|
|
|
|
|
- Add valgrind-3.14.0-s390z-more-z13-fixes.patch.
|
|
|
|
|
|
|
|
|
|
* Tue Nov 20 2018 Mark Wielaard <mjw@redhat.com> - 3.14.0-2
|
|
|
|
|
* Tue Nov 20 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-2
|
|
|
|
|
- Add valgrind-3.14.0-s390x-fix-reg-alloc-vr-vs-fpr.patch.
|
|
|
|
|
- Add valgrind-3.14.0-s390x-sign-extend-lochi.patch.
|
|
|
|
|
- Add valgrind-3.14.0-s390x-vec-reg-vgdb.patch.
|
|
|
|
|
- Add valgrind-3.14.0-s390x-vec-float-point-code.patch
|
|
|
|
|
and valgrind-3.14.0-s390x-vec-float-point-tests.patch
|
|
|
|
|
- Only run full regtests on x86_64 on fedora or latest rhel.
|
|
|
|
|
- Disable full regtests on fedora everywhere.
|
|
|
|
|
|
|
|
|
|
* Tue Oct 9 2018 Mark Wielaard <mjw@redhat.com> - 3.14.0-1
|
|
|
|
|
- valgrind 3.14.0 (#1569600).
|
|
|
|
|
- Enable s390x again.
|
|
|
|
|
* Tue Oct 9 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-1
|
|
|
|
|
- valgrind 3.14.0 final.
|
|
|
|
|
|
|
|
|
|
* Fri Aug 10 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-29
|
|
|
|
|
* Thu Oct 4 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-0.2.RC2
|
|
|
|
|
- Upgrade to RC2.
|
|
|
|
|
- Drop valgrind-3.14.0-add-vector-h.patch.
|
|
|
|
|
|
|
|
|
|
* Fri Sep 14 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.14.0-0.1.GIT
|
|
|
|
|
- New upstream (pre-)release.
|
|
|
|
|
- Add valgrind-3.14.0-add-vector-h.patch.
|
|
|
|
|
|
|
|
|
|
* Fri Aug 10 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-28
|
|
|
|
|
- Add valgrind-3.13.0-utime.patch
|
|
|
|
|
|
|
|
|
|
* Thu Aug 9 2018 Florian Weimer <fweimer@redhat.com> - 1:3.13.0-28
|
|
|
|
|
- Rebuild to remove s390x packages due to lack of z13 support (#1525405)
|
|
|
|
|
|
|
|
|
|
* Fri Aug 3 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-27
|
|
|
|
|
- Add valgrind-3.13.0-ppc64-xsmaxcdp.patch
|
|
|
|
|
|
|
|
|
|
@ -730,7 +1133,7 @@ fi
|
|
|
|
|
* Tue Jul 31 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-25
|
|
|
|
|
- Add valgrind-3.13.0-x86-arch_prctl.patch (#1610304)
|
|
|
|
|
|
|
|
|
|
* Mon Jul 30 2018 Florian Weimer <fweimer@redhat.com> - 3.13.0-24
|
|
|
|
|
* Tue Jul 31 2018 Florian Weimer <fweimer@redhat.com> - 3.13.0-24
|
|
|
|
|
- Rebuild with fixed binutils
|
|
|
|
|
|
|
|
|
|
* Fri Jul 27 2018 Mark Wielaard <mjw@fedoraproject.org> - 3.13.0-23
|