Compare commits

...

5 Commits
master ... f12

Author SHA1 Message Date
Fedora Release Engineering d09993cc78 dist-git conversion 2010-07-29 13:15:17 +00:00
Andreas Schwab 8a7425bafb Update to 4.5.20 2010-05-10 16:08:32 +00:00
Bill Nottingham 5e75e6b0a5 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:44:19 +00:00
roland b8d8206dd3 Update to 4.5.19 2009-10-21 17:51:13 +00:00
Jesse Keating 2feaa5233b Initialize branch F-12 for strace 2009-09-29 06:57:37 +00:00
5 changed files with 26 additions and 42 deletions

View File

@ -1 +0,0 @@
strace-4.5.18.tar.bz2

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
strace-4.5.20.tar.bz2

View File

@ -1,30 +0,0 @@
# Makefile for source rpm: strace
# $Id: Makefile,v 1.2 2004/10/20 03:07:40 roland Exp $
NAME := strace
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attempt a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)
ifdef FILES
import: $(FILES)
md5sum $^ > sources
(read m f; \
tar xOjf $$f '*/$(SPECFILE)' > $(SPECFILE); \
echo $$f > .cvsignore; \
$(upload-file)) < sources
endif

View File

@ -1 +1 @@
e9449fcee97e6a8ed73934c883c870e0 strace-4.5.18.tar.bz2
64dfe10d9db0c1e34030891695ffca4b strace-4.5.20.tar.bz2

View File

@ -1,11 +1,11 @@
Summary: Tracks and displays system calls associated with a running process
Name: strace
Version: 4.5.18
Release: 3%{?dist}
Version: 4.5.20
Release: 1%{?dist}
License: BSD
Group: Development/Debuggers
URL: http://sourceforge.net/projects/strace/
Source0: http://dl.sourceforge.net/strace/%{name}-%{version}.tar.bz2
Source0: http://downloads.sourceforge.net/strace/%{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libaio-devel, libacl-devel
@ -55,8 +55,15 @@ make DESTDIR=%{buildroot} install
# remove unpackaged files from the buildroot
rm -f %{buildroot}%{_bindir}/strace-graph
%define copy64 ln
%if 0%{?rhel}
%if 0%{?rhel} < 6
%endif
%define copy64 cp -p
%endif
%ifarch %{strace64_arches}
ln %{buildroot}%{_bindir}/strace %{buildroot}%{_bindir}/strace64
%{copy64} %{buildroot}%{_bindir}/strace %{buildroot}%{_bindir}/strace64
%endif
%clean
@ -64,7 +71,7 @@ rm -rf %{buildroot}
%files
%defattr(-,root,root)
%doc CREDITS ChangeLog COPYRIGHT NEWS PORTING README
%doc CREDITS ChangeLog ChangeLog-CVS COPYRIGHT NEWS PORTING README
%{_bindir}/strace
%{_mandir}/man1/*
@ -74,13 +81,20 @@ rm -rf %{buildroot}
%{_bindir}/strace64
%endif
%changelog
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.5.18-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Tue Apr 13 2010 Roland McGrath <roland@redhat.com> - 4.5.20-1
- New upstream release, work mostly by Andreas Schwab and Dmitry V. Levin.
+ fixed potential stack buffer overflow in select decoder (#556678);
+ fixed FTBFS (#539044).
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.5.18-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Wed Oct 21 2009 Roland McGrath <roland@redhat.com> - 4.5.19-1
- New upstream release, work mostly by Dmitry V. Levin <ldv@altlinux.org>
+ exit/kill strace with traced process exitcode/signal (#105371);
+ fixed build on ARM EABI (#507576);
+ fixed display of 32-bit argv array on 64-bit architectures (#519480);
+ fixed display of 32-bit fcntl(F_SETLK) on 64-bit architectures (#471169);
+ fixed several bugs in strings decoder, including potential heap
memory corruption (#470529, #478324, #511035).
* Thu Aug 28 2008 Roland McGrath <roland@redhat.com> - 4.5.18-1
- build fix for newer kernel headers (#457291)