libstatgrab/libstatgrab.spec

226 lines
7.7 KiB
RPMSpec
Raw Normal View History

2013-08-16 09:48:45 +00:00
%global pkgname statgrab
2013-08-16 09:48:45 +00:00
Name: libstatgrab
2013-09-30 07:42:42 +00:00
Version: 0.17
Release: 8%{?dist}.2
2013-09-30 07:42:42 +00:00
Epoch: 1
2013-08-16 09:48:45 +00:00
Summary: A library that provides cross platform access to statistics about the system
License: LGPLv2+
URL: http://www.i-scream.org/libstatgrab
Source0: http://ftp.i-scream.org/pub/i-scream/%{name}/%{name}-%{version}.tar.gz
2013-09-30 07:42:42 +00:00
Patch0: %{name}.nochmod.patch
2013-08-16 09:48:45 +00:00
BuildRequires: libtool ncurses-devel
%description
Libstatgrab is a library that provides cross platform access to statistics
about the system on which it's run. It's written in C and presents a selection
of useful interfaces which can be used to access key system statistics. The
current list of statistics includes CPU usage, memory utilisation, disk usage,
process counts, network traffic, disk I/O, and more.
The current list of platforms is Solaris 2.x, Linux, and FreeBSD 4.x/5.x.
The aim is to extend this to include as many operating systems as possible.
The package also includes a couple of useful tools. The first, saidar,
provides a curses-based interface to viewing the current state of the
system. The second, statgrab, gives a sysctl-style interface to the
statistics gathered by libstatgrab. This extends the use of libstatgrab
to people writing scripts or anything else that can't easily make C
function calls. Included with statgrab is a script to generate an MRTG
configuration file to use statgrab.
2013-08-16 09:48:45 +00:00
%package -n %{pkgname}-tools
Summary: Tools from %{name} to monitoring the system
License: GPLv2+
2013-08-16 09:48:45 +00:00
%description -n %{pkgname}-tools
This package contains a few tools shiped with libstatgrab.
Eg. A tool called saidar, which shows various system
information like top, but - of course - OTHER informations.
2013-08-16 09:48:45 +00:00
%package devel
Summary: The development files from %{name}
2013-09-30 07:42:42 +00:00
Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release}
2013-08-16 09:48:45 +00:00
%description devel
This package contains header files and man pages for those
use to develop libstatgrab based applications.
2013-08-16 09:48:45 +00:00
%package examples
Summary: The example files from %{name}
License: GPLv2+
2013-09-30 07:42:42 +00:00
Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release}
2013-08-16 09:48:45 +00:00
%description examples
This package contains various examples used to show how
to develop libstatgrab based applications.
%prep
%setup -q
2013-09-30 07:42:42 +00:00
%patch0 -p0
%build
%configure --with-ncurses --disable-static
# remove rpath from libtool
sed -i.rpath 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
sed -i.rpath 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
make %{?_smp_mflags}
%install
2013-08-16 09:48:45 +00:00
make install DESTDIR=%{buildroot}
cd examples/.libs
install -m 755 cpu_usage disk_traffic load_stats network_iface_stats \
network_traffic os_info page_stats process_snapshot \
2013-08-16 09:48:45 +00:00
process_stats user_list vm_stats %{buildroot}%{_bindir}
chmod 755 %{buildroot}%{_bindir}/statgrab-make-mrtg-config
chmod 755 %{buildroot}%{_bindir}/saidar
chmod 755 %{buildroot}%{_bindir}/statgrab
find %{buildroot} -name '*.la' -delete
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
2013-08-16 09:48:45 +00:00
%doc AUTHORS README ChangeLog NEWS COPYING.LGPL
%{_libdir}/*.so.*
%files devel
2013-08-16 09:48:45 +00:00
%doc examples/*.c
%{_libdir}/*.so
%{_includedir}/*.h
2013-08-16 09:48:45 +00:00
%{_libdir}/pkgconfig/%{name}.pc
%{_mandir}/*/sg_*
%files examples
2013-08-16 09:48:45 +00:00
%doc COPYING
%{_bindir}/cpu_usage
%{_bindir}/disk_traffic
%{_bindir}/load_stats
%{_bindir}/network_iface_stats
%{_bindir}/network_traffic
%{_bindir}/os_info
%{_bindir}/page_stats
%{_bindir}/process_snapshot
%{_bindir}/process_stats
%{_bindir}/user_list
%{_bindir}/vm_stats
2013-08-16 09:48:45 +00:00
%files -n %{pkgname}-tools
%doc COPYING
%{_bindir}/saidar
%{_bindir}/statgrab
%{_bindir}/statgrab-make-mrtg-config
%{_bindir}/statgrab-make-mrtg-index
%{_mandir}/*/*statgrab*
%{_mandir}/*/saidar*
%changelog
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-8.2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-7.2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-6.2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2013-09-30 07:42:42 +00:00
* Tue Sep 17 2013 Oliver Falk <oliver@linux-kernel.at> - 1:0.17-5.2
- Fix requires (epoch)
* Tue Sep 17 2013 Oliver Falk <oliver@linux-kernel.at> - 1:0.17-5.1
- Fix BZ#1008491 - too many broken deps
2013-08-16 09:48:45 +00:00
* Fri Aug 16 2013 Christopher Meng <rpm@cicku.me> - 0.90-2
- SPEC Cleanup.
- Remove unneeded Requires.
* Tue Aug 13 2013 Oliver Falk <oliver@linux-kernel.at> - 0.90-1
- Update
- Should fix BZ#925891
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2013-07-17 08:02:59 +00:00
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 0.17-5
- Perl 5.18 rebuild
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2011-04-10 17:55:36 +00:00
* Sun Apr 10 2011 Sven Lankes <sven@lank.es> - 0.17-1
- new upstream release
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Thu Jan 27 2011 Oliver Falk <oliver@linux-kernel.at> 0.16-5
- Rebuild for new perl-5.12.3
* Fri Feb 12 2010 Oliver Falk <oliver@linux-kernel.at> 0.16-4
- Disable building of static libs #556075
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2008-03-20 08:49:19 +00:00
* Thu Mar 20 2008 Oliver Falk <oliver@linux-kernel.at> 0.16-1
- Update
2008-02-13 16:38:30 +00:00
* Wed Feb 13 2008 Patrick "Jima" Laughton <jima@beer.tclug.org> 0.15-2
- Bump-n-build for GCC 4.3
* Mon Aug 20 2007 Patrick "Jima" Laughton <jima@beer.tclug.org> 0.15-1
- New upstream version
- License clarification
- Fixed License tags for statgrab-tools and libstatgrab-examples
- Fix for rpath (problem found in previous versions, as well)
* Wed Jan 24 2007 Patrick "Jima" Laughton <jima@beer.tclug.org> 0.14-1
- New upstream version
- Minor cleanup for rpmlint warning
2006-10-04 19:50:08 +00:00
* Wed Oct 04 2006 Patrick "Jima" Laughton <jima@beer.tclug.org> 0.13-3
- Bump-n-build
* Tue Sep 19 2006 Patrick "Jima" Laughton <jima@beer.tclug.org> - 0.13-2
- Bump for FC6 rebuild
2013-08-16 09:48:45 +00:00
* Thu Apr 20 2006 Oliver Falk <oliver@linux-kernel.at> - 0.13-1
2006-04-20 09:30:51 +00:00
- Update
2013-08-16 09:48:45 +00:00
* Wed Aug 10 2005 Oliver Falk <oliver@linux-kernel.at> - 0.12-1
2005-08-10 08:45:32 +00:00
- Update
- Added saidar manpage
2013-08-16 09:48:45 +00:00
* Fri Jul 08 2005 Oliver Falk <oliver@linux-kernel.at> - 0.11.1-3
- Included examples/*.c in doc
* Wed Jul 6 2005 Tom "spot" Callaway <tcallawa@redhat.com> 0.11.1-2
- a lot of fixes for Fedora Extras
2013-08-16 09:48:45 +00:00
* Thu May 19 2005 Oliver Falk <oliver@linux-kernel.at> - 0.11.1-1.1
- Specfile cleanup
2013-08-16 09:48:45 +00:00
* Sun Apr 03 2005 Oliver Falk <oliver@linux-kernel.at> - 0.11.1-1
- Update
2013-08-16 09:48:45 +00:00
* Fri Mar 25 2005 Oliver Falk <oliver@linux-kernel.at> - 0.11-2.1
- Fix rpmlint warnings
2013-08-16 09:48:45 +00:00
* Tue Feb 15 2005 Oliver Falk <oliver@linux-kernel.at> - 0.11-2
- Don't require coreutils. They are normally installed on Fedora, but
not available on RH 8, where the tools are usually also installed.
Yes, rebuilding with nodeps would also do it, but it's not fine...
2013-08-16 09:48:45 +00:00
* Tue Feb 15 2005 Oliver Falk <oliver@linux-kernel.at> - 0.11-1
- Initial build for Fedora Core