systemtap/systemtap.spec

819 lines
27 KiB
RPMSpec
Raw Normal View History

2010-01-15 22:36:55 +00:00
%{!?with_sqlite: %global with_sqlite 1}
2011-07-25 22:27:49 +00:00
%{!?with_docs: %global with_docs 1}
# crash is not available
%ifarch ppc ppc64 %{sparc}
%{!?with_crash: %global with_crash 0}
%else
2010-07-21 22:47:12 +00:00
%{!?with_crash: %global with_crash 1}
%endif
2010-01-15 22:36:55 +00:00
%{!?with_rpm: %global with_rpm 1}
%{!?with_bundled_elfutils: %global with_bundled_elfutils 0}
2011-07-25 22:27:49 +00:00
%{!?elfutils_version: %global elfutils_version 0.142}
2010-01-15 22:36:55 +00:00
%{!?pie_supported: %global pie_supported 1}
%{!?with_boost: %global with_boost 0}
2012-06-17 17:05:46 +00:00
%ifarch ppc ppc64 %{sparc}
%{!?with_publican: %global with_publican 0}
%else
2012-02-02 02:55:08 +00:00
%{!?with_publican: %global with_publican 1}
2012-06-17 17:05:46 +00:00
%endif
2012-09-20 21:43:22 +00:00
%if 0%{?rhel}
%{!?publican_brand: %global publican_brand RedHat}
%else
2010-01-15 22:36:55 +00:00
%{!?publican_brand: %global publican_brand fedora}
2012-09-20 21:43:22 +00:00
%endif
%ifnarch s390 s390x %{arm}
2012-09-20 21:43:22 +00:00
%{!?with_dyninst: %global with_dyninst 0%{?fedora} >= 18 || 0%{?rhel} >= 7}
%else
%global with_dyninst 0
%endif
2007-12-05 17:16:04 +00:00
Name: systemtap
Version: 2.0
2012-09-20 21:43:22 +00:00
Release: 0.4.gitec12f84%{?dist}
2012-06-17 17:05:46 +00:00
# for version, see also configure.ac
2012-02-02 02:55:08 +00:00
# Packaging abstract:
#
# systemtap empty req:-client req:-devel
# systemtap-server /usr/bin/stap-server*, req:-devel
# systemtap-devel /usr/bin/stap, runtime, tapset, req:kernel-devel
# systemtap-runtime /usr/bin/staprun, /usr/bin/stapsh, /usr/bin/stapdyn
2012-02-02 02:55:08 +00:00
# systemtap-client /usr/bin/stap, samples, docs, tapset(bonus), req:-runtime
# systemtap-initscript /etc/init.d/systemtap, req:systemtap
# systemtap-sdt-devel /usr/include/sys/sdt.h /usr/bin/dtrace
# systemtap-testsuite /usr/share/systemtap/testsuite*, req:systemtap, req:sdt-devel
#
# Typical scenarios:
#
# stap-client: systemtap-client
# stap-server: systemtap-server
# local user: systemtap
#
# Unusual scenarios:
#
# intermediary stap-client for --remote: systemtap-client (-runtime unused)
# intermediary stap-server for --use-server: systemtap-server (-devel unused)
2012-06-17 17:05:46 +00:00
Summary: Programmable system-wide instrumentation system
Group: Development/System
License: GPLv2+
URL: http://sourceware.org/systemtap/
#Source: ftp://sourceware.org/pub/%{name}/releases/%{name}-%{version}.tar.gz
2012-09-20 21:43:22 +00:00
# full snapshot hash is ec12f84f44fb56fffe26db84edcc3a97ee079efe
Source: %{name}-%{version}pre-gitec12f84.tar.gz
2012-02-02 02:55:08 +00:00
# Build*
2012-06-17 17:05:46 +00:00
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: gcc-c++
BuildRequires: gettext-devel
BuildRequires: nss-devel avahi-devel pkgconfig
%if %{with_dyninst}
# include the prerelease version for now, but really this is >= 8.0
BuildRequires: dyninst-devel >= 7.99
BuildRequires: libdwarf-devel
2012-09-20 21:43:22 +00:00
BuildRequires: libselinux-devel
%endif
2008-03-27 19:55:02 +00:00
%if %{with_sqlite}
2007-08-21 21:37:54 +00:00
BuildRequires: sqlite-devel
2007-12-05 17:16:04 +00:00
%endif
2010-01-15 22:36:55 +00:00
# Needed for libstd++ < 4.0, without <tr1/memory>
%if %{with_boost}
BuildRequires: boost-devel
%endif
2008-03-27 19:55:02 +00:00
%if %{with_crash}
BuildRequires: crash-devel zlib-devel
2008-01-18 19:32:21 +00:00
%endif
2009-06-12 00:34:05 +00:00
%if %{with_rpm}
BuildRequires: rpm-devel glibc-headers
%endif
2008-03-27 19:55:02 +00:00
%if %{with_bundled_elfutils}
Source1: elfutils-%{elfutils_version}.tar.gz
Patch1: elfutils-portability.patch
2009-06-12 00:34:05 +00:00
BuildRequires: m4
2010-01-15 22:36:55 +00:00
%global setup_elfutils -a1
%else
BuildRequires: elfutils-devel >= %{elfutils_version}
%endif
2008-03-27 19:55:02 +00:00
%if %{with_docs}
BuildRequires: /usr/bin/latex /usr/bin/dvips /usr/bin/ps2pdf latex2html
2009-02-19 18:10:43 +00:00
# On F10, xmlto's pdf support was broken off into a sub-package,
# called 'xmlto-tex'. To avoid a specific F10 BuildReq, we'll do a
# file-based buildreq on '/usr/share/xmlto/format/fo/pdf'.
2012-06-17 17:05:46 +00:00
BuildRequires: xmlto /usr/share/xmlto/format/fo/pdf
2010-01-15 22:36:55 +00:00
%if %{with_publican}
2011-05-23 20:41:06 +00:00
BuildRequires: publican
2010-07-21 22:47:12 +00:00
BuildRequires: /usr/share/publican/Common_Content/%{publican_brand}/defaults.cfg
2010-01-15 22:36:55 +00:00
%endif
2008-03-27 19:55:02 +00:00
%endif
2009-10-21 15:51:01 +00:00
2012-02-02 02:55:08 +00:00
# Install requirements
Requires: systemtap-client = %{version}-%{release}
Requires: systemtap-devel = %{version}-%{release}
%description
2011-07-25 22:27:49 +00:00
SystemTap is an instrumentation system for systems running Linux.
2012-02-02 02:55:08 +00:00
Developers can write instrumentation scripts to collect data on
the operation of the system. The base systemtap package contains/requires
the components needed to locally develop and execute systemtap scripts.
# ------------------------------------------------------------------------
%package server
Summary: Instrumentation System Server
Group: Development/System
2012-06-17 17:05:46 +00:00
License: GPLv2+
URL: http://sourceware.org/systemtap/
2012-02-02 02:55:08 +00:00
Requires: systemtap-devel = %{version}-%{release}
# On RHEL[45], /bin/mktemp comes from the 'mktemp' package. On newer
# distributions, /bin/mktemp comes from the 'coreutils' package. To
# avoid a specific RHEL[45] Requires, we'll do a file-based require.
Requires: nss /bin/mktemp
Requires: zip unzip
Requires(pre): shadow-utils
Requires(post): chkconfig
Requires(preun): chkconfig
Requires(preun): initscripts
Requires(postun): initscripts
2012-06-17 17:05:46 +00:00
BuildRequires: nss-devel avahi-devel
2012-02-02 02:55:08 +00:00
%description server
This is the remote script compilation server component of systemtap.
It announces itself to nearby clients with avahi (if available), and
compiles systemtap scripts to kernel objects on their demand.
%package devel
Summary: Programmable system-wide instrumentation system - development headers, tools
Group: Development/System
2012-06-17 17:05:46 +00:00
License: GPLv2+
URL: http://sourceware.org/systemtap/
2012-02-02 02:55:08 +00:00
Requires: kernel >= 2.6.9-11
# Alternate kernel packages kernel-PAE-devel et al. have a virtual
# provide for kernel-devel, so this requirement does the right thing,
# at least past RHEL4.
Requires: kernel-devel
2012-06-17 17:05:46 +00:00
Requires: gcc make
2012-02-02 02:55:08 +00:00
# Suggest: kernel-debuginfo
%description devel
This package contains the components needed to compile a systemtap
script from source form into executable (.ko) forms. It may be
installed on a self-contained developer workstation (along with the
systemtap-client and systemtap-runtime packages), or on a dedicated
remote server (alongside the systemtap-server package). It includes
a copy of the standard tapset library and the runtime library C files.
2006-10-20 00:13:13 +00:00
%package runtime
2012-02-02 02:55:08 +00:00
Summary: Programmable system-wide instrumentation system - runtime
2006-10-20 00:13:13 +00:00
Group: Development/System
2012-06-17 17:05:46 +00:00
License: GPLv2+
URL: http://sourceware.org/systemtap/
2006-10-20 00:13:13 +00:00
Requires: kernel >= 2.6.9-11
2008-03-27 19:55:02 +00:00
Requires(pre): shadow-utils
2006-10-20 00:13:13 +00:00
%description runtime
2012-02-02 02:55:08 +00:00
SystemTap runtime contains the components needed to execute
a systemtap script that was already compiled into a module
using a local or remote systemtap-devel installation.
2006-10-20 00:13:13 +00:00
2012-02-02 02:55:08 +00:00
%package client
Summary: Programmable system-wide instrumentation system - client
2012-06-17 17:05:46 +00:00
Group: Development/System
License: GPLv2+
2007-12-05 17:16:04 +00:00
URL: http://sourceware.org/systemtap/
2012-02-02 02:55:08 +00:00
Requires: zip unzip
Requires: systemtap-runtime = %{version}-%{release}
Requires: coreutils grep sed unzip zip
Requires: openssh-clients
2007-12-05 17:16:04 +00:00
2012-02-02 02:55:08 +00:00
%description client
This package contains/requires the components needed to develop
systemtap scripts, and compile them using a local systemtap-devel
or a remote systemtap-server installation, then run them using a
local or remote systemtap-runtime. It includes script samples and
documentation, and a copy of the tapset library for reference.
2007-12-05 17:16:04 +00:00
2012-02-02 02:55:08 +00:00
%package initscript
Summary: Systemtap Initscripts
2008-11-13 21:29:28 +00:00
Group: Development/System
2012-06-17 17:05:46 +00:00
License: GPLv2+
URL: http://sourceware.org/systemtap/
2011-07-25 22:27:49 +00:00
Requires: systemtap = %{version}-%{release}
2010-01-15 22:36:55 +00:00
Requires(post): chkconfig
Requires(preun): chkconfig
Requires(preun): initscripts
Requires(postun): initscripts
2008-11-13 21:29:28 +00:00
2012-02-02 02:55:08 +00:00
%description initscript
Sysvinit scripts to launch selected systemtap scripts at system startup.
2008-11-13 21:29:28 +00:00
2009-02-19 18:10:43 +00:00
%package sdt-devel
Summary: Static probe support tools
Group: Development/System
2012-06-17 17:05:46 +00:00
License: GPLv2+ and Public Domain
URL: http://sourceware.org/systemtap/
2009-02-19 18:10:43 +00:00
%description sdt-devel
2012-02-02 02:55:08 +00:00
This package includes the <sys/sdt.h> header file used for static
instrumentation compiled into userspace programs and libraries, along
with the optional dtrace-compatibility preprocessor to process related
.d files into tracing-macro-laden .h headers.
2009-02-19 18:10:43 +00:00
2012-02-02 02:55:08 +00:00
%package testsuite
Summary: Instrumentation System Testsuite
2009-02-19 18:10:43 +00:00
Group: Development/System
2012-06-17 17:05:46 +00:00
License: GPLv2+
URL: http://sourceware.org/systemtap/
2012-02-02 02:55:08 +00:00
Requires: systemtap = %{version}-%{release}
Requires: systemtap-sdt-devel = %{version}-%{release}
2012-06-17 17:05:46 +00:00
Requires: systemtap-server = %{version}-%{release}
2012-09-20 21:43:22 +00:00
Requires: dejagnu which elfutils grep nc
2012-06-17 17:05:46 +00:00
Requires: gcc gcc-c++ make glibc-devel
2012-09-20 21:43:22 +00:00
%ifnarch ia64
Requires: prelink
%endif
2012-06-17 17:05:46 +00:00
# testsuite/systemtap.server/client.exp needs avahi
Requires: avahi
%if %{with_crash}
# testsuite/systemtap.base/crash.exp needs crash
Requires: crash
%endif
2012-07-13 13:29:37 +00:00
%ifarch x86_64
2012-07-13 13:41:29 +00:00
Requires: /usr/lib/libc.so
2012-06-17 17:05:46 +00:00
%endif
2012-02-02 02:55:08 +00:00
%description testsuite
This package includes the dejagnu-based systemtap stress self-testing
suite. This may be used by system administrators to thoroughly check
systemtap on the current system.
2009-02-19 18:10:43 +00:00
2012-02-02 02:55:08 +00:00
# ------------------------------------------------------------------------
%prep
%setup -q %{?setup_elfutils}
2008-03-27 19:55:02 +00:00
%if %{with_bundled_elfutils}
cd elfutils-%{elfutils_version}
%patch1 -p1
sleep 1
find . \( -name Makefile.in -o -name aclocal.m4 \) -print | xargs touch
sleep 1
find . \( -name configure -o -name config.h.in \) -print | xargs touch
cd ..
%endif
%build
2008-03-27 19:55:02 +00:00
%if %{with_bundled_elfutils}
# Build our own copy of elfutils.
2010-01-15 22:36:55 +00:00
%global elfutils_config --with-elfutils=elfutils-%{elfutils_version}
# We have to prevent the standard dependency generation from identifying
# our private elfutils libraries in our provides and requires.
2010-01-15 22:36:55 +00:00
%global _use_internal_dependency_generator 0
%global filter_eulibs() /bin/sh -c "%{1} | sed '/libelf/d;/libdw/d;/libebl/d'"
%global __find_provides %{filter_eulibs /usr/lib/rpm/find-provides}
%global __find_requires %{filter_eulibs /usr/lib/rpm/find-requires}
2005-07-29 08:40:21 +00:00
# This will be needed for running stap when not installed, for the test suite.
2010-01-15 22:36:55 +00:00
%global elfutils_mflags LD_LIBRARY_PATH=`pwd`/lib-elfutils
%endif
# Enable/disable the dyninst pure-userspace backend
%if %{with_dyninst}
%global dyninst_config --with-dyninst
%else
%global dyninst_config --without-dyninst
%endif
2008-03-27 19:55:02 +00:00
# Enable/disable the sqlite coverage testing support
%if %{with_sqlite}
2010-01-15 22:36:55 +00:00
%global sqlite_config --enable-sqlite
2008-03-27 19:55:02 +00:00
%else
2010-01-15 22:36:55 +00:00
%global sqlite_config --disable-sqlite
2008-03-27 19:55:02 +00:00
%endif
# Enable/disable the crash extension
%if %{with_crash}
2010-01-15 22:36:55 +00:00
%global crash_config --enable-crash
2008-03-27 19:55:02 +00:00
%else
2010-01-15 22:36:55 +00:00
%global crash_config --disable-crash
2008-03-27 19:55:02 +00:00
%endif
2009-06-12 00:34:05 +00:00
# Enable/disable the code to find and suggest needed rpms
%if %{with_rpm}
2010-01-15 22:36:55 +00:00
%global rpm_config --with-rpm
2009-06-12 00:34:05 +00:00
%else
2010-01-15 22:36:55 +00:00
%global rpm_config --without-rpm
2009-06-12 00:34:05 +00:00
%endif
2008-03-27 19:55:02 +00:00
%if %{with_docs}
2010-01-15 22:36:55 +00:00
%global docs_config --enable-docs
2008-03-27 19:55:02 +00:00
%else
2010-01-15 22:36:55 +00:00
%global docs_config --disable-docs
2007-12-05 17:16:04 +00:00
%endif
2009-03-27 17:25:06 +00:00
# Enable pie as configure defaults to disabling it
%if %{pie_supported}
2010-01-15 22:36:55 +00:00
%global pie_config --enable-pie
2009-03-27 17:25:06 +00:00
%else
2010-01-15 22:36:55 +00:00
%global pie_config --disable-pie
2009-03-27 17:25:06 +00:00
%endif
2008-03-27 19:55:02 +00:00
2010-01-15 22:36:55 +00:00
%if %{with_publican}
%global publican_config --enable-publican --with-publican-brand=%{publican_brand}
2009-06-12 00:34:05 +00:00
%else
2010-01-15 22:36:55 +00:00
%global publican_config --disable-publican
2009-06-12 00:34:05 +00:00
%endif
2008-03-27 19:55:02 +00:00
%configure %{?elfutils_config} %{dyninst_config} %{sqlite_config} %{crash_config} %{docs_config} %{pie_config} %{publican_config} %{rpm_config} --disable-silent-rules --with-extra-version="rpm %{version}-%{release}"
2007-08-21 21:37:54 +00:00
make %{?_smp_mflags}
2008-07-15 16:45:18 +00:00
%install
2012-06-17 17:05:46 +00:00
rm -rf ${RPM_BUILD_ROOT}
2008-07-15 16:45:18 +00:00
make DESTDIR=$RPM_BUILD_ROOT install
2011-05-23 20:41:06 +00:00
%find_lang %{name}
2008-07-15 16:45:18 +00:00
2008-11-13 21:29:28 +00:00
# We want the examples in the special doc dir, not the build install dir.
# We build it in place and then move it away so it doesn't get installed
# twice. rpm can specify itself where the (versioned) docs go with the
# %doc directive.
2008-07-15 16:45:18 +00:00
mv $RPM_BUILD_ROOT%{_datadir}/doc/systemtap/examples examples
# Fix paths in the example & testsuite scripts
find examples testsuite -type f -name '*.stp' -print0 | xargs -0 sed -i -r -e '1s@^#!.+stap@#!%{_bindir}/stap@'
2005-07-29 08:40:21 +00:00
2011-05-23 20:41:06 +00:00
# To make rpmlint happy, remove any .gitignore files in the testsuite.
find testsuite -type f -name '.gitignore' -print0 | xargs -0 rm -f
2010-11-16 20:28:25 +00:00
# Because "make install" may install staprun with whatever mode, the
2007-12-05 17:16:04 +00:00
# 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
2010-11-16 20:28:25 +00:00
# permissions back to 04110 in the %files section below.
2007-12-05 17:16:04 +00:00
chmod 755 $RPM_BUILD_ROOT%{_bindir}/staprun
2010-03-22 22:34:39 +00:00
#install the useful stap-prep script
install -c -m 755 stap-prep $RPM_BUILD_ROOT%{_bindir}/stap-prep
2007-12-05 17:16:04 +00:00
# Copy over the testsuite
cp -rp testsuite $RPM_BUILD_ROOT%{_datadir}/systemtap
2008-07-15 16:45:18 +00:00
2008-11-13 21:29:28 +00:00
%if %{with_docs}
2008-07-15 16:45:18 +00:00
# We want the manuals in the special doc dir, not the generic doc install dir.
2008-11-13 21:29:28 +00:00
# We build it in place and then move it away so it doesn't get installed
# twice. rpm can specify itself where the (versioned) docs go with the
# %doc directive.
2008-07-15 16:45:18 +00:00
mkdir docs.installed
mv $RPM_BUILD_ROOT%{_datadir}/doc/systemtap/*.pdf docs.installed/
mv $RPM_BUILD_ROOT%{_datadir}/doc/systemtap/tapsets docs.installed/
2010-01-15 22:36:55 +00:00
%if %{with_publican}
mv $RPM_BUILD_ROOT%{_datadir}/doc/systemtap/SystemTap_Beginners_Guide docs.installed/
%endif
2008-11-13 21:29:28 +00:00
%endif
2010-01-15 22:36:55 +00:00
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d/
install -m 755 initscript/systemtap $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d/
2009-02-19 18:10:43 +00:00
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/systemtap
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/systemtap/conf.d
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/systemtap/script.d
2010-01-15 22:36:55 +00:00
install -m 644 initscript/config.systemtap $RPM_BUILD_ROOT%{_sysconfdir}/systemtap/config
2009-02-19 18:10:43 +00:00
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/cache/systemtap
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/run/systemtap
2010-01-15 22:36:55 +00:00
install -m 755 initscript/stap-server $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d/
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/stap-server
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/stap-server/conf.d
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig
install -m 644 initscript/config.stap-server $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/stap-server
2010-03-22 22:34:39 +00:00
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/log/stap-server
touch $RPM_BUILD_ROOT%{_localstatedir}/log/stap-server/log
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d
install -m 644 initscript/logrotate.stap-server $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/stap-server
2010-01-15 22:36:55 +00:00
2012-06-17 17:05:46 +00:00
%clean
rm -rf ${RPM_BUILD_ROOT}
2008-03-27 19:55:02 +00:00
%pre runtime
getent group stapusr >/dev/null || groupadd -g 156 -r stapusr 2>/dev/null || groupadd -r stapusr
getent group stapsys >/dev/null || groupadd -g 157 -r stapsys 2>/dev/null || groupadd -r stapsys
getent group stapdev >/dev/null || groupadd -g 158 -r stapdev 2>/dev/null || groupadd -r stapdev
2007-12-05 17:16:04 +00:00
exit 0
2010-01-15 22:36:55 +00:00
%pre server
getent group stap-server >/dev/null || groupadd -g 155 -r stap-server 2>/dev/null || groupadd -r stap-server
2010-03-22 22:34:39 +00:00
getent passwd stap-server >/dev/null || \
useradd -c "Systemtap Compile Server" -u 155 -g stap-server -d %{_localstatedir}/lib/stap-server -m -r -s /sbin/nologin stap-server 2>/dev/null || \
2010-03-22 22:34:39 +00:00
useradd -c "Systemtap Compile Server" -g stap-server -d %{_localstatedir}/lib/stap-server -m -r -s /sbin/nologin stap-server
test -e ~stap-server && chmod 755 ~stap-server
2012-06-17 17:05:46 +00:00
if [ ! -f ~stap-server/.systemtap/rc ]; then
mkdir -p ~stap-server/.systemtap
chown stap-server:stap-server ~stap-server/.systemtap
echo "--rlimit-as=614400000 --rlimit-cpu=60 --rlimit-nproc=20 --rlimit-stack=1024000 --rlimit-fsize=51200000" > ~stap-server/.systemtap/rc
chown stap-server:stap-server ~stap-server/.systemtap/rc
fi
2010-01-15 22:36:55 +00:00
exit 0
%post server
2010-03-22 22:34:39 +00:00
test -e %{_localstatedir}/log/stap-server/log || {
touch %{_localstatedir}/log/stap-server/log
chmod 664 %{_localstatedir}/log/stap-server/log
chown stap-server:stap-server %{_localstatedir}/log/stap-server/log
}
2010-07-21 22:47:12 +00:00
# If it does not already exist, as stap-server, generate the certificate
2010-03-22 22:34:39 +00:00
# used for signing and for ssl.
if test ! -e ~stap-server/.systemtap/ssl/server/stap.cert; then
runuser -s /bin/sh - stap-server -c %{_libexecdir}/%{name}/stap-gen-cert >/dev/null
fi
2010-01-15 22:36:55 +00:00
# Activate the service
/sbin/chkconfig --add stap-server
exit 0
2012-09-20 21:43:22 +00:00
%triggerin client -- systemtap-server
if test -e ~stap-server/.systemtap/ssl/server/stap.cert; then
# echo Authorizing ssl-peer/trusted-signer certificate for local systemtap-server
%{_libexecdir}/%{name}/stap-authorize-cert ~stap-server/.systemtap/ssl/server/stap.cert %{_sysconfdir}/systemtap/ssl/client >/dev/null
%{_libexecdir}/%{name}/stap-authorize-cert ~stap-server/.systemtap/ssl/server/stap.cert %{_sysconfdir}/systemtap/staprun >/dev/null
fi
exit 0
# XXX: corresponding %triggerun?
2010-01-15 22:36:55 +00:00
%preun server
# Check that this is the actual deinstallation of the package, as opposed to
# just removing the old package on upgrade.
if [ $1 = 0 ] ; then
/sbin/service stap-server stop >/dev/null 2>&1
/sbin/chkconfig --del stap-server
fi
exit 0
%postun server
# Check whether this is an upgrade of the package.
# If so, restart the service if it's running
if [ "$1" -ge "1" ] ; then
/sbin/service stap-server condrestart >/dev/null 2>&1 || :
fi
exit 0
2009-02-19 18:10:43 +00:00
%post initscript
2010-01-15 22:36:55 +00:00
/sbin/chkconfig --add systemtap
2009-02-19 18:10:43 +00:00
exit 0
%preun initscript
2010-01-15 22:36:55 +00:00
# Check that this is the actual deinstallation of the package, as opposed to
# just removing the old package on upgrade.
if [ $1 = 0 ] ; then
/sbin/service systemtap stop >/dev/null 2>&1
/sbin/chkconfig --del systemtap
fi
exit 0
%postun initscript
# Check whether this is an upgrade of the package.
# If so, restart the service if it's running
if [ "$1" -ge "1" ] ; then
/sbin/service systemtap condrestart >/dev/null 2>&1 || :
fi
2009-02-19 18:10:43 +00:00
exit 0
2009-06-12 00:34:05 +00:00
%post
# Remove any previously-built uprobes.ko materials
2010-03-22 22:34:39 +00:00
(make -C %{_datadir}/%{name}/runtime/uprobes clean) >/dev/null 2>&1 || true
2009-08-13 00:17:24 +00:00
(/sbin/rmmod uprobes) >/dev/null 2>&1 || true
2009-06-12 00:34:05 +00:00
%preun
# Ditto
2010-03-22 22:34:39 +00:00
(make -C %{_datadir}/%{name}/runtime/uprobes clean) >/dev/null 2>&1 || true
2009-08-13 00:17:24 +00:00
(/sbin/rmmod uprobes) >/dev/null 2>&1 || true
2009-02-19 18:10:43 +00:00
2012-02-02 02:55:08 +00:00
# ------------------------------------------------------------------------
2011-05-23 20:41:06 +00:00
%files -f %{name}.lang
2012-02-02 02:55:08 +00:00
# The master "systemtap" rpm doesn't include any files.
%files server -f %{name}.lang
%defattr(-,root,root)
2012-02-02 02:55:08 +00:00
%{_bindir}/stap-server
%dir %{_libexecdir}/%{name}
%{_libexecdir}/%{name}/stap-serverd
%{_libexecdir}/%{name}/stap-start-server
%{_libexecdir}/%{name}/stap-stop-server
%{_libexecdir}/%{name}/stap-gen-cert
%{_libexecdir}/%{name}/stap-sign-module
2012-09-20 21:43:22 +00:00
%{_libexecdir}/%{name}/stap-authorize-cert
2012-08-31 15:51:45 +00:00
%{_libexecdir}/%{name}/stap-env
2012-02-02 02:55:08 +00:00
%{_mandir}/man7/stappaths.7*
%{_mandir}/man8/stap-server.8*
%{_sysconfdir}/rc.d/init.d/stap-server
%config(noreplace) %{_sysconfdir}/logrotate.d/stap-server
%dir %{_sysconfdir}/stap-server
%dir %{_sysconfdir}/stap-server/conf.d
%config(noreplace) %{_sysconfdir}/sysconfig/stap-server
%dir %attr(0755,stap-server,stap-server) %{_localstatedir}/log/stap-server
%ghost %config(noreplace) %attr(0644,stap-server,stap-server) %{_localstatedir}/log/stap-server/log
%ghost %attr(0755,stap-server,stap-server) %{_localstatedir}/run/stap-server
%doc initscript/README.stap-server
%doc README README.unprivileged AUTHORS NEWS COPYING
2012-02-02 02:55:08 +00:00
%files devel -f %{name}.lang
%{_bindir}/stap
2010-03-22 22:34:39 +00:00
%{_bindir}/stap-prep
2008-11-13 21:29:28 +00:00
%{_bindir}/stap-report
%dir %{_datadir}/%{name}
2008-03-27 19:55:02 +00:00
%{_datadir}/%{name}/runtime
%{_datadir}/%{name}/tapset
2012-02-02 02:55:08 +00:00
%{_mandir}/man1/stap.1*
%{_mandir}/man7/stappaths.7*
%doc README README.unprivileged AUTHORS NEWS COPYING
2008-03-27 19:55:02 +00:00
%if %{with_bundled_elfutils}
%dir %{_libdir}/%{name}
2007-12-05 17:16:04 +00:00
%{_libdir}/%{name}/lib*.so*
%endif
2011-05-23 20:41:06 +00:00
%files runtime -f %{name}.lang
2006-10-20 00:13:13 +00:00
%defattr(-,root,root)
2010-11-16 20:28:25 +00:00
%attr(4110,root,stapusr) %{_bindir}/staprun
2011-05-23 20:41:06 +00:00
%{_bindir}/stapsh
2011-01-17 12:16:56 +00:00
%{_bindir}/stap-merge
2008-11-13 21:29:28 +00:00
%{_bindir}/stap-report
%if %{with_dyninst}
%{_bindir}/stapdyn
%endif
%dir %{_libexecdir}/%{name}
2010-01-15 22:36:55 +00:00
%{_libexecdir}/%{name}/stapio
%{_libexecdir}/%{name}/stap-authorize-cert
2010-07-21 22:47:12 +00:00
%if %{with_crash}
%dir %{_libdir}/%{name}
2010-07-21 22:47:12 +00:00
%{_libdir}/%{name}/staplog.so*
%endif
%{_mandir}/man7/stappaths.7*
2008-11-13 21:29:28 +00:00
%{_mandir}/man8/staprun.8*
2011-07-25 22:27:49 +00:00
%doc README README.security AUTHORS NEWS COPYING
2007-12-05 17:16:04 +00:00
2012-02-02 02:55:08 +00:00
%files client -f %{name}.lang
2008-11-13 21:29:28 +00:00
%defattr(-,root,root)
2012-02-02 02:55:08 +00:00
%doc README README.unprivileged AUTHORS NEWS COPYING examples
%if %{with_docs}
%doc docs.installed/*.pdf
%doc docs.installed/tapsets/*.html
%if %{with_publican}
%doc docs.installed/SystemTap_Beginners_Guide
%endif
%endif
%{_bindir}/stap
%{_bindir}/stap-prep
%{_bindir}/stap-report
%{_mandir}/man1/stap.1*
%{_mandir}/man1/stap-merge.1*
%{_mandir}/man3/*
2010-07-21 22:47:12 +00:00
%{_mandir}/man7/stappaths.7*
2012-02-02 02:55:08 +00:00
%dir %{_datadir}/%{name}
%{_datadir}/%{name}/tapset
2007-12-05 17:16:04 +00:00
2009-02-19 18:10:43 +00:00
%files initscript
%defattr(-,root,root)
2010-01-15 22:36:55 +00:00
%{_sysconfdir}/rc.d/init.d/systemtap
2009-02-19 18:10:43 +00:00
%dir %{_sysconfdir}/systemtap
%dir %{_sysconfdir}/systemtap/conf.d
%dir %{_sysconfdir}/systemtap/script.d
%config(noreplace) %{_sysconfdir}/systemtap/config
%dir %{_localstatedir}/cache/systemtap
2011-01-17 12:16:56 +00:00
%ghost %{_localstatedir}/run/systemtap
2010-01-15 22:36:55 +00:00
%doc initscript/README.systemtap
2009-02-19 18:10:43 +00:00
2012-02-02 02:55:08 +00:00
%files sdt-devel -f %{name}.lang
%defattr(-,root,root)
%{_bindir}/dtrace
%{_includedir}/sys/sdt.h
%{_includedir}/sys/sdt-config.h
%{_mandir}/man1/dtrace.1*
%doc README AUTHORS NEWS COPYING
%files testsuite
%defattr(-,root,root)
%dir %{_datadir}/%{name}
%{_datadir}/%{name}/testsuite
# ------------------------------------------------------------------------
2009-02-19 18:10:43 +00:00
%changelog
2012-09-20 21:43:22 +00:00
* Thu Sep 20 2012 Josh Stone <jistone@redhat.com> 2.0-0.4.gitec12f84
- Update to a new snapshot towards 2.0.
2012-08-31 15:51:45 +00:00
* Fri Aug 31 2012 Lukas Berk <lberk@redhat.com> 2.0-0.3.git10c737f
- Correct the location of stap-env
* Wed Aug 15 2012 Dan Horák <dan[at]danny.cz> 2.0-0.2.git10c737f
- dyninst not available on s390(x) and arm
* Tue Aug 07 2012 Josh Stone <jistone@redhat.com> 2.0-0.1.git10c737f
- Update to a snapshot of the upcoming 2.0 release.
* Wed Jul 18 2012 Josh Stone <jistone@redhat.com> - 1.8-5
- bz840902 ppc build fix (related to bz837641)
2012-07-13 13:29:37 +00:00
* Fri Jul 13 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.8-4
- Fix ifarch statement
2012-07-13 13:41:29 +00:00
- use file based requires for glibc-devel on x86_64 so that we work in koji
2012-07-13 13:29:37 +00:00
* Wed Jul 11 2012 Frank Ch. Eigler <fche@redhat.com> - 1.8-3
- PR14348 task_work_add race condition fix
2012-07-09 19:15:56 +00:00
* Mon Jul 09 2012 Josh Stone <jistone@redhat.com>
- bz837641 build fix
2012-06-17 17:05:46 +00:00
* Sun Jun 17 2012 Frank Ch. Eigler <fche@redhat.com> - 1.8-1
- Upstream release.
* Mon Apr 30 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.7-7
- Enable crash support on ARM, cleanup spec
* Thu Apr 19 2012 Karsten Hopp <karsten@redhat.com> - 1.7-6.1
- rebuild on PPC(64) without crash, publican
2012-03-29 20:40:31 +00:00
* Thu Mar 29 2012 Richard W.M. Jones <rjones@redhat.com> - 1.7-6
- Rebuild for rpm soname bump.
2012-03-16 16:07:25 +00:00
* Fri Mar 16 2012 Frank Ch. Eigler <fche@redhat.com> - 1.7-5
- dbhole advises ARM publican/fop/java is a go for launch.
* Thu Mar 01 2012 Mark Wielaard <mjw@redhat.com> - 1.7-4
- ARM currently doesn't have publican/fop/java and no prelink.
2012-02-28 20:18:52 +00:00
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7-3
- Rebuilt for c++ ABI breakage
2012-02-22 18:50:17 +00:00
* Wed Feb 22 2012 Frank Ch. Eigler <fche@redhat.com> - 1.7-2
- CVE-2012-0875 (kernel panic when processing malformed DWARF unwind data)
2012-02-02 02:55:08 +00:00
* Wed Feb 01 2012 Frank Ch. Eigler <fche@redhat.com> - 1.7-1
- Upstream release.
2012-06-17 17:05:46 +00:00
* Fri Jan 13 2012 David Smith <dsmith@redhat.com> - 1.6-2
- Fixed /bin/mktemp require.
2011-12-06 06:14:44 +00:00
2011-07-25 22:27:49 +00:00
* Mon Jul 25 2011 Stan Cox <scox@redhat.com> - 1.6-1
- Upstream release.
2012-06-17 17:05:46 +00:00
* Tue May 23 2011 Stan Cox <scox@redhat.com> - 1.5-1
2011-05-23 21:25:36 +00:00
- Upstream release.
2011-01-17 12:19:48 +00:00
* Mon Jan 17 2011 Frank Ch. Eigler <fche@redhat.com> - 1.4-1
- Upstream release.
2010-07-21 22:47:12 +00:00
* Wed Jul 21 2010 Josh Stone <jistone@redhat.com> - 1.3-1
- Upstream release.
2010-03-24 17:16:30 +00:00
2010-03-22 22:34:39 +00:00
* Mon Mar 22 2010 Frank Ch. Eigler <fche@redhat.com> - 1.2-1
- Upstream release.
2010-01-15 22:36:55 +00:00
* Mon Dec 21 2009 David Smith <dsmith@redhat.com> - 1.1-1
- Upstream release.
2009-10-21 15:51:01 +00:00
2009-09-23 02:25:47 +00:00
* Tue Sep 22 2009 Josh Stone <jistone@redhat.com> - 1.0-1
- Upstream release.
2009-08-05 04:00:44 +00:00
2009-08-05 03:44:50 +00:00
* Tue Aug 4 2009 Josh Stone <jistone@redhat.com> - 0.9.9-1
- Upstream release.
2009-06-12 00:34:05 +00:00
* Thu Jun 11 2009 Josh Stone <jistone@redhat.com> - 0.9.8-1
- Upstream release.
2009-04-24 01:12:54 +00:00
* Thu Apr 23 2009 Josh Stone <jistone@redhat.com> - 0.9.7-1
- Upstream release.
2009-03-27 17:25:06 +00:00
* Fri Mar 27 2009 Josh Stone <jistone@redhat.com> - 0.9.5-1
- Upstream release.
* Wed Mar 18 2009 Will Cohen <wcohen@redhat.com> - 0.9-2
- Add location of man pages.
2009-02-19 18:10:43 +00:00
* Tue Feb 17 2009 Frank Ch. Eigler <fche@redhat.com> - 0.9-1
- Upstream release.
2008-11-13 21:29:28 +00:00
* Thu Nov 13 2008 Frank Ch. Eigler <fche@redhat.com> - 0.8-1
- Upstream release.
2008-07-15 16:45:18 +00:00
* Tue Jul 15 2008 Frank Ch. Eigler <fche@redhat.com> - 0.7-1
- Upstream release.
2008-02-12 16:24:50 +00:00
* Fri Feb 1 2008 Frank Ch. Eigler <fche@redhat.com> - 0.6.1-3
2008-07-15 16:45:18 +00:00
- Add zlib-devel to buildreq; missing from crash-devel
- Process testsuite .stp files for #!stap->#!/usr/bin/stap
2008-01-18 19:32:21 +00:00
* Fri Jan 18 2008 Frank Ch. Eigler <fche@redhat.com> - 0.6.1-1
- Add crash-devel buildreq to build staplog.so crash(8) module.
- Many robustness & functionality improvements:
* Wed Dec 5 2007 Will Cohen <wcohen@redhat.com> - 0.6-2
- Correct Source to point to location contain code.
2007-12-05 17:16:04 +00:00
* Thu Aug 9 2007 David Smith <dsmith@redhat.com> - 0.6-1
- Bumped version, added libcap-devel BuildRequires.
* Wed Jul 11 2007 Will Cohen <wcohen@redhat.com> - 0.5.14-2
- Fix Requires and BuildRequires for sqlite.
2007-08-21 21:37:54 +00:00
* Tue Jul 2 2007 Frank Ch. Eigler <fche@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,
3261, 3282, 3331, 3428 3519, 3545, 3625, 3648, 3880, 3888, 3911,
3952, 3965, 4066, 4071, 4075, 4078, 4081, 4096, 4119, 4122, 4127,
4146, 4171, 4179, 4183, 4221, 4224, 4254, 4281, 4319, 4323, 4326,
4329, 4332, 4337, 4415, 4432, 4444, 4445, 4458, 4467, 4470, 4471,
4518, 4567, 4570, 4579, 4589, 4609, 4664
2007-03-26 16:09:36 +00:00
* Mon Mar 26 2007 Frank Ch. Eigler <fche@redhat.com> - 0.5.13-1
- An emergency / preliminary refresh, mainly for compatibility
with 2.6.21-pre kernels.
2007-01-23 19:28:45 +00:00
* Mon Jan 1 2007 Frank Ch. Eigler <fche@redhat.com> - 0.5.12-1
- Many changes, see NEWS file.
2006-10-20 00:13:13 +00:00
* Tue Sep 26 2006 David Smith <dsmith@redhat.com> - 0.5.10-1
- Added 'systemtap-runtime' subpackage.
2006-07-19 22:32:14 +00:00
* Wed Jul 19 2006 Roland McGrath <roland@redhat.com> - 0.5.9-1
- PRs 2669, 2913
2005-12-16 18:06:49 +00:00
2006-06-17 01:56:14 +00:00
* Fri Jun 16 2006 Roland McGrath <roland@redhat.com> - 0.5.8-1
- PRs 2627, 2520, 2228, 2645
* Fri May 5 2006 Frank Ch. Eigler <fche@redhat.com> - 0.5.7-1
- PRs 2511 2453 2307 1813 1944 2497 2538 2476 2568 1341 2058 2220 2437
1326 2014 2599 2427 2438 2465 1930 2149 2610 2293 2634 2506 2433
2006-04-05 05:24:28 +00:00
* Tue Apr 4 2006 Roland McGrath <roland@redhat.com> - 0.5.5-1
- Many changes, affected PRs include: 2068, 2293, 1989, 2334,
1304, 2390, 2425, 953.
2006-02-02 15:59:35 +00:00
* Wed Feb 1 2006 Frank Ch. Eigler <fche@redhat.com> - 0.5.4-1
- PRs 1916, 2205, 2142, 2060, 1379
2006-01-17 07:52:34 +00:00
* Mon Jan 16 2006 Roland McGrath <roland@redhat.com> - 0.5.3-1
- Many changes, affected PRs include: 2056, 1144, 1379, 2057,
2060, 1972, 2140, 2148
2005-12-20 01:11:30 +00:00
* Mon Dec 19 2005 Roland McGrath <roland@redhat.com> - 0.5.2-1
- Fixed build with gcc 4.1, various tapset changes.
2005-08-26 19:26:41 +00:00
2005-12-12 10:16:46 +00:00
* Wed Dec 7 2005 Roland McGrath <roland@redhat.com> - 0.5.1-1
- elfutils update, build changes
2005-12-02 20:38:08 +00:00
* Fri Dec 02 2005 Frank Ch. Eigler <fche@redhat.com> - 0.5-1
- Many fixes and improvements: 1425, 1536, 1505, 1380, 1329, 1828, 1271,
1339, 1340, 1345, 1837, 1917, 1903, 1336, 1868, 1594, 1564, 1276, 1295
2005-11-01 01:01:47 +00:00
* Mon Oct 31 2005 Roland McGrath <roland@redhat.com> - 0.4.2-1
- Many fixes and improvements: PRs 1344, 1260, 1330, 1295, 1311, 1368,
1182, 1131, 1332, 1366, 1456, 1271, 1338, 1482, 1477, 1194.
2005-09-14 21:28:31 +00:00
* Wed Sep 14 2005 Roland McGrath <roland@redhat.com> - 0.4.1-1
- Many fixes and improvements since 0.2.2; relevant PRs include:
1122, 1134, 1155, 1172, 1174, 1175, 1180, 1186, 1187, 1191, 1193, 1195,
1197, 1205, 1206, 1209, 1213, 1244, 1257, 1258, 1260, 1265, 1268, 1270,
1289, 1292, 1306, 1335, 1257
2005-09-07 21:28:32 +00:00
* Wed Sep 7 2005 Frank Ch. Eigler <fche@redhat.com>
- Bump version.
2005-08-26 19:26:41 +00:00
* Wed Aug 16 2005 Frank Ch. Eigler <fche@redhat.com>
- Bump version.
2005-08-03 13:15:56 +00:00
2005-08-04 10:23:41 +00:00
* Wed Aug 3 2005 Martin Hunt <hunt@redhat.com> - 0.2.2-1
- Add directory /var/cache/systemtap
- Add stp_check to /usr/libexec/systemtap
2005-08-03 13:15:56 +00:00
* Wed Aug 3 2005 Roland McGrath <roland@redhat.com> - 0.2.1-1
- New version 0.2.1, various fixes.
2005-07-29 08:40:21 +00:00
* Fri Jul 29 2005 Roland McGrath <roland@redhat.com> - 0.2-1
- New version 0.2, requires elfutils 0.111
2005-07-22 21:27:25 +00:00
2005-07-29 08:40:21 +00:00
* Mon Jul 25 2005 Roland McGrath <roland@redhat.com>
- Clean up spec file, build bundled elfutils.
* Thu Jul 21 2005 Martin Hunt <hunt@redhat.com>
- Set Version to use version from autoconf.
- Fix up some of the path names.
- Add Requires and BuildRequires.
* Wed Jul 19 2005 Will Cohen <wcohen@redhat.com>
- Initial creation of RPM.