rpms/systemtap/F-8 .cvsignore, 1.9, 1.10 sources, 1.22, 1.23 systemtap.spec, 1.31, 1.32

William Eden Cohen (wcohen) fedora-extras-commits at redhat.com
Wed Dec 12 16:05:57 UTC 2007


Author: wcohen

Update of /cvs/pkgs/rpms/systemtap/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv22250

Modified Files:
	.cvsignore sources systemtap.spec 
Log Message:
Import systemtap 0.6 source code.




Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/systemtap/F-8/.cvsignore,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- .cvsignore	21 Aug 2007 21:37:54 -0000	1.9
+++ .cvsignore	12 Dec 2007 16:05:22 -0000	1.10
@@ -1 +1 @@
-systemtap-0.5.14.tar.gz
+systemtap-0.6.tar.gz


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/systemtap/F-8/sources,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- sources	21 Aug 2007 21:37:54 -0000	1.22
+++ sources	12 Dec 2007 16:05:22 -0000	1.23
@@ -1 +1 @@
-18b705a7364d174f86f09ecb465f547d  systemtap-0.5.14.tar.gz
+e5867fa00f9ec177f8c73cee3fe15687  systemtap-0.6.tar.gz


Index: systemtap.spec
===================================================================
RCS file: /cvs/pkgs/rpms/systemtap/F-8/systemtap.spec,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- systemtap.spec	21 Aug 2007 21:37:54 -0000	1.31
+++ systemtap.spec	12 Dec 2007 16:05:22 -0000	1.32
@@ -1,20 +1,24 @@
 # Release number for rpm build.  Stays at 1 for new PACKAGE_VERSION increases.
 %define release 1
 # Version number of oldest elfutils release that works with systemtap.
-%define elfutils_version 0.128
+%define elfutils_version 0.127
 
 # Set bundled_elfutils to 0 on systems that have %{elfutils_version} or newer.
 %if 0%{?fedora}
 %define bundled_elfutils 1
+%define sqlite 0
 %if "%fedora" >= "6"
 %define bundled_elfutils 0
+%define sqlite 1
 %endif
 %endif
 
 %if 0%{?rhel}
 %define bundled_elfutils 1
-%if "%rhel" >= "6"
+%define sqlite 0
+%if "%rhel" >= "5"
 %define bundled_elfutils 0
+%define sqlite 1
 %endif
 %endif
 
@@ -24,30 +28,37 @@
 %define bundled_elfutils 1
 %endif
 
+%if 0%{!?sqlite:1}
+# Yo!  DO NOT TOUCH THE FOLLOWING LINE.
+# You can use rpmbuild --define "sqlite 1" for a build of your own.
+%define sqlite 0
+%endif
+
 Name: systemtap
-Version: 0.5.14
+Version: 0.6
 Release: %{release}%{?dist}
 Summary: Instrumentation System
 Group: Development/System
-License: GPL
+License: GPLv2+
 URL: http://sourceware.org/systemtap/
 Source: ftp://sourceware.org/pub/%{name}/%{name}-%{version}.tar.gz
 
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 Requires: kernel >= 2.6.9-11
-BuildRequires: glib2-devel >= 2.0.0
+BuildRequires: libcap-devel
 # make check
 BuildRequires: dejagnu
+%if %{sqlite}
 BuildRequires: sqlite-devel
-Requires: glib2 >= 2.0.0
+Requires: sqlite
+%endif
 # Requires: kernel-devel
 # or is that kernel-smp-devel?  kernel-hugemem-devel?
 Requires: gcc make
 # Suggest: kernel-debuginfo
 Requires: systemtap-runtime = %{version}-%{release}
-Requires: sudo
-Requires: sqlite
+Requires(pre): shadow-utils
 
 %if %{bundled_elfutils}
 Source1: elfutils-%{elfutils_version}.tar.gz
@@ -57,8 +68,6 @@
 BuildRequires: elfutils-devel >= %{elfutils_version}
 %endif
 
-Patch2: elfutils-configury.patch
-
 %description
 SystemTap is an instrumentation system for systems running Linux 2.6.
 Developers can write instrumentation to collect data on the operation
@@ -67,7 +76,7 @@
 %package runtime
 Summary: Instrumentation System Runtime
 Group: Development/System
-License: GPL
+License: GPLv2+
 URL: http://sourceware.org/systemtap/
 Requires: kernel >= 2.6.9-11
 
@@ -76,6 +85,17 @@
 system for systems running Linux 2.6.  Developers can write
 instrumentation to collect data on the operation of the system.
 
+%package testsuite
+Summary: Instrumentation System Testsuite
+Group: Development/System
+License: GPLv2+
+URL: http://sourceware.org/systemtap/
+Requires: systemtap dejagnu
+
+%description testsuite
+The testsuite allows testing of the entire SystemTap toolchain
+without having to rebuild from sources.
+
 %prep
 %setup -q %{?setup_elfutils}
 
@@ -86,15 +106,9 @@
 find . \( -name Makefile.in -o -name aclocal.m4 \) -print | xargs touch
 sleep 1
 find . \( -name configure -o -name config.h.in \) -print | xargs touch
-
-# XXX trivial patch for 0.128
-sed -i /ifndef/s/PACKAGE/PACKAGE_NAME/ libdwfl/libdwflP.h
-
 cd ..
 %endif
 
-%patch2 -p0
-
 %build
 
 %if %{bundled_elfutils}
@@ -112,7 +126,12 @@
 %define elfutils_mflags LD_LIBRARY_PATH=`pwd`/lib-elfutils
 %endif
 
-%configure %{?elfutils_config}
+%if %{sqlite}
+# Include the coverage testing support
+%define sqlite_config --enable-sqlitedb
+%endif
+
+%configure %{?elfutils_config} %{?sqlite_config}
 make %{?_smp_mflags}
 
 # Fix paths in the example scripts
@@ -125,19 +144,35 @@
 rm -rf ${RPM_BUILD_ROOT}
 make DESTDIR=$RPM_BUILD_ROOT install
 
-%check
-make check %{?elfutils_mflags} || :
+# Because "make install" may install staprun with mode 04111, the
+# post-processing programs rpmbuild runs won't be able to read it.
+# So, we change permissions so that they can read it.  We'll set the
+# permissions back to 04111 in the %files section below.
+chmod 755 $RPM_BUILD_ROOT%{_bindir}/staprun
+
+# Copy over the testsuite
+cp -rp testsuite $RPM_BUILD_ROOT%{_datadir}/systemtap
+
+if [ -f $RPM_BUILD_ROOT%{_libdir}/%{name}/staplog.so ]; then
+	echo %{_libdir}/%{name}/staplog.so > runtime-addl-files.txt
+else
+	touch runtime-addl-files.txt
+fi
 
 %clean
 rm -rf ${RPM_BUILD_ROOT}
 
+%pre
+getent group stapdev >/dev/null || groupadd -r stapdev
+getent group stapusr >/dev/null || groupadd -r stapusr
+exit 0
+
 %files
 %defattr(-,root,root)
 
 %doc README AUTHORS NEWS COPYING examples
 
 %{_bindir}/stap
-%{_bindir}/lket-b2a
 %{_mandir}/man1/*
 %{_mandir}/man5/*
 
@@ -147,18 +182,29 @@
 
 %if %{bundled_elfutils}
 %dir %{_libdir}/%{name}
-%{_libdir}/%{name}/*.so*
+%{_libdir}/%{name}/lib*.so*
 %endif
 
-%files runtime
+%files runtime -f runtime-addl-files.txt
 %defattr(-,root,root)
-%{_bindir}/staprun
+%attr(4111,root,root) %{_bindir}/staprun
 %{_libexecdir}/systemtap
 %{_mandir}/man8/*
 
 %doc README AUTHORS NEWS COPYING
 
+%files testsuite
+%defattr(-,root,root)
+%{_datadir}/systemtap/testsuite
+
+
 %changelog
+* Thu Aug  9 2007 David Smith <dsmith at redhat.com> - 0.6-1
+- Bumped version, added libcap-devel BuildRequires.
+
+* Wed Jul 11 2007 Will Cohen <wcohen at redhat.com> - 0.5.14-2
+- Fix Requires and BuildRequires for sqlite.
+
 * Tue Jul  2 2007 Frank Ch. Eigler <fche at redhat.com> - 0.5.14-1
 - Many robustness improvements: 1117, 1134, 1305, 1307, 1570, 1806,
   2033, 2116, 2224, 2339, 2341, 2406, 2426, 2438, 2583, 3037,




More information about the fedora-extras-commits mailing list