auto-import changelog data from valgrind-2.1.2-1.src.rpm
Tue Jul 20 2004 Jakub Jelinek <jakuB@redhat.com> 2.1.2-1 - update to 2.1.2 - run make regtest as part of package build - use glibc-2.3 suppressions instead of glibc-2.2 suppressions Thu Apr 29 2004 Colin Walters <walters@redhat.com> 2.0.0-1 - update to 2.0.0 Tue Feb 25 2003 Jeff Johnson <jbj@redhat.com> 1.9.4-0.20030228 - update to 1.9.4 from CVS. - dwarf patch from Graydon Hoare. - sysinfo patch from Graydon Hoare, take 1. Fri Feb 14 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-6.20030207 - add return codes to syscalls. - fix: set errno after syscalls. Tue Feb 11 2003 Graydon Hoare <graydon@redhat.com> 1.9.3-5.20030207 - add handling for separate debug info (+fix). - handle blocking readv/writev correctly. - comment out 4 overly zealous pthread checks. Tue Feb 11 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-4.20030207 - move _pthread_desc to vg_include.h. - implement pthread_mutex_timedlock(). - implement pthread_barrier_wait(). Mon Feb 10 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-3.20030207 - import all(afaik) missing functionality from linuxthreads. Sun Feb 09 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-2.20030207 - import more missing functionality from linuxthreads in glibc-2.3.1. Sat Feb 08 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-1.20030207 - start fixing nptl test cases. Fri Feb 07 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-0.20030207 - build against current 1.9.3 with nptl hacks. Tue Oct 15 2002 Alexander Larsson <alexl@redhat.com> - Update to 1.0.4
This commit is contained in:
parent
ec1e75c5f4
commit
e38dedda4d
@ -1 +1 @@
|
|||||||
valgrind-1.0.0.tar.bz2
|
valgrind-2.1.2.tar.bz2
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
76c59f7f9c57ca78d733bd956b4d94ae valgrind-1.0.0.tar.bz2
|
585e3ac5f7b86d6cd3e2bed07af732de valgrind-2.1.2.tar.bz2
|
||||||
|
@ -1,23 +1,26 @@
|
|||||||
%define tar_version 1.0.0
|
|
||||||
|
|
||||||
Summary: Tool for finding memory management bugs in programs
|
Summary: Tool for finding memory management bugs in programs
|
||||||
Name: valgrind
|
Name: valgrind
|
||||||
Version: 1.0.0
|
Version: 2.1.2
|
||||||
Release: 1
|
Release: 1
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Source0: valgrind-%{tar_version}.tar.bz2
|
Source0: http://developer.kde.org/~sewardj/valgrind-%{version}.tar.bz2
|
||||||
|
Patch0: valgrind-2.0.0-pthread-stacksize.patch
|
||||||
|
Patch1: valgrind-2.1.2-regtest.patch
|
||||||
License: GPL
|
License: GPL
|
||||||
|
URL: http://developer.kde.org/~sewardj
|
||||||
Group: Development/Debuggers
|
Group: Development/Debuggers
|
||||||
BuildRoot: %{_tmppath}/%{name}-root
|
BuildRoot: %{_tmppath}/%{name}-root
|
||||||
ExclusiveArch: %{ix86}
|
ExclusiveArch: %{ix86}
|
||||||
Patch0: valgrind-1.0pre1-extra_suppressions.patch
|
|
||||||
Patch1: valgrind-1.0pre4-clock.patch
|
|
||||||
|
|
||||||
%define __find_requires %{_builddir}/%{name}-%{tar_version}/find-requires
|
# Disable internal dependency generator
|
||||||
|
%define _use_internal_dependency_generator 0
|
||||||
|
|
||||||
# disable build root strip policy
|
# Disable build root strip policy
|
||||||
%define __spec_install_post /usr/lib/rpm/brp-compress || :
|
%define __spec_install_post /usr/lib/rpm/brp-compress || :
|
||||||
|
|
||||||
|
# Disable -debuginfo package generation
|
||||||
|
%define debug_package %{nil}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Valgrind is a tool to help you find memory-management problems in your
|
Valgrind is a tool to help you find memory-management problems in your
|
||||||
programs. When a program is run under Valgrind's supervision, all
|
programs. When a program is run under Valgrind's supervision, all
|
||||||
@ -27,11 +30,16 @@ detect a lot of problems that are otherwise very hard to
|
|||||||
find/diagnose.
|
find/diagnose.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n valgrind-%{tar_version}
|
%setup -q
|
||||||
|
%patch0 -p1
|
||||||
|
%patch1 -p1
|
||||||
|
|
||||||
%patch0 -p1 -b .extra_suppressions
|
%define __find_provides %{_builddir}/%{name}-%{version}/find-provides
|
||||||
%patch1 -p1 -b .clock
|
find_provides=`rpm --eval %%{__find_provides}`
|
||||||
|
echo "$find_provides | grep -v libpthread" > find-provides
|
||||||
|
chmod +x find-provides
|
||||||
|
|
||||||
|
%define __find_requires %{_builddir}/%{name}-%{version}/find-requires
|
||||||
find_requires=`rpm --eval %%{__find_requires}`
|
find_requires=`rpm --eval %%{__find_requires}`
|
||||||
echo "$find_requires | grep -v GLIBC_PRIVATE" > find-requires
|
echo "$find_requires | grep -v GLIBC_PRIVATE" > find-requires
|
||||||
chmod +x find-requires
|
chmod +x find-requires
|
||||||
@ -39,15 +47,24 @@ chmod +x find-requires
|
|||||||
%build
|
%build
|
||||||
%configure
|
%configure
|
||||||
|
|
||||||
# Force a specific set of default supressions
|
# Force a specific set of default suppressions
|
||||||
echo -n > default.supp
|
echo -n > default.supp
|
||||||
for file in glibc-2.2.supp xfree-4.supp ; do
|
for file in glibc-2.3.supp xfree-4.supp ; do
|
||||||
cat $file >> default.supp
|
cat $file >> default.supp
|
||||||
done
|
done
|
||||||
make
|
|
||||||
|
# work around #88846
|
||||||
|
env - PATH="$PATH" make %{?_smp_mflags}
|
||||||
|
|
||||||
|
# test
|
||||||
|
make check
|
||||||
|
echo ===============TESTING===================
|
||||||
|
make regtest || :
|
||||||
|
echo ===============END TESTING===============
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%makeinstall
|
%makeinstall
|
||||||
mv $RPM_BUILD_ROOT%{_datadir}/doc/valgrind $RPM_BUILD_ROOT%{_datadir}/doc/valgrind-%{version}
|
mv $RPM_BUILD_ROOT%{_datadir}/doc/valgrind $RPM_BUILD_ROOT%{_datadir}/doc/valgrind-%{version}
|
||||||
|
|
||||||
@ -56,12 +73,55 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc ACKNOWLEDGEMENTS COPYING ChangeLog NEWS README TODO README_MISSING_SYSCALL_OR_IOCTL
|
%doc ACKNOWLEDGEMENTS COPYING NEWS README_* TODO
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%{_prefix}/include/valgrind.h
|
%{_includedir}/valgrind
|
||||||
%{_libdir}/valgrind
|
%{_libdir}/valgrind
|
||||||
|
%{_libdir}/pkgconfig/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jul 20 2004 Jakub Jelinek <jakuB@redhat.com> 2.1.2-1
|
||||||
|
- update to 2.1.2
|
||||||
|
- run make regtest as part of package build
|
||||||
|
- use glibc-2.3 suppressions instead of glibc-2.2 suppressions
|
||||||
|
|
||||||
|
* Thu Apr 29 2004 Colin Walters <walters@redhat.com> 2.0.0-1
|
||||||
|
- update to 2.0.0
|
||||||
|
|
||||||
|
* Tue Feb 25 2003 Jeff Johnson <jbj@redhat.com> 1.9.4-0.20030228
|
||||||
|
- update to 1.9.4 from CVS.
|
||||||
|
- dwarf patch from Graydon Hoare.
|
||||||
|
- sysinfo patch from Graydon Hoare, take 1.
|
||||||
|
|
||||||
|
* Fri Feb 14 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-6.20030207
|
||||||
|
- add return codes to syscalls.
|
||||||
|
- fix: set errno after syscalls.
|
||||||
|
|
||||||
|
* Tue Feb 11 2003 Graydon Hoare <graydon@redhat.com> 1.9.3-5.20030207
|
||||||
|
- add handling for separate debug info (+fix).
|
||||||
|
- handle blocking readv/writev correctly.
|
||||||
|
- comment out 4 overly zealous pthread checks.
|
||||||
|
|
||||||
|
* Tue Feb 11 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-4.20030207
|
||||||
|
- move _pthread_desc to vg_include.h.
|
||||||
|
- implement pthread_mutex_timedlock().
|
||||||
|
- implement pthread_barrier_wait().
|
||||||
|
|
||||||
|
* Mon Feb 10 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-3.20030207
|
||||||
|
- import all(afaik) missing functionality from linuxthreads.
|
||||||
|
|
||||||
|
* Sun Feb 9 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-2.20030207
|
||||||
|
- import more missing functionality from linuxthreads in glibc-2.3.1.
|
||||||
|
|
||||||
|
* Sat Feb 8 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-1.20030207
|
||||||
|
- start fixing nptl test cases.
|
||||||
|
|
||||||
|
* Fri Feb 7 2003 Jeff Johnson <jbj@redhat.com> 1.9.3-0.20030207
|
||||||
|
- build against current 1.9.3 with nptl hacks.
|
||||||
|
|
||||||
|
* Tue Oct 15 2002 Alexander Larsson <alexl@redhat.com>
|
||||||
|
- Update to 1.0.4
|
||||||
|
|
||||||
* Fri Aug 9 2002 Alexander Larsson <alexl@redhat.com>
|
* Fri Aug 9 2002 Alexander Larsson <alexl@redhat.com>
|
||||||
- Update to 1.0.0
|
- Update to 1.0.0
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user