numad/numad.spec

85 lines
2.4 KiB
RPMSpec
Raw Normal View History

2012-02-23 15:16:22 +00:00
%global systemctl_bin /usr/bin/systemctl
Name: numad
Version: 0.5
2012-10-16 07:35:07 +00:00
Release: 7.20121015git%{?dist}
2012-02-23 15:16:22 +00:00
Summary: NUMA user daemon
License: LGPLv2
Group: System Environment/Daemons
URL: http://git.fedorahosted.org/git/?p=numad.git
# The source for this package was pulled from upstream's vcs. Use the
# following commands to generate the tarball:
# git clone git://git.fedorahosted.org/numad.git numad-0.5git
# tar cJf numad-0.5git.tar.xz numad-0.5git/
Source0: %{name}-%{version}git.tar.xz
Requires: systemd-units, initscripts
Requires(post): systemd-units, initscripts
Requires(preun): systemd-units, initscripts
2012-02-24 07:38:23 +00:00
BuildRequires: systemd-units
2012-02-23 15:16:22 +00:00
ExcludeArch: s390 s390x %{arm}
%description
Numad, a daemon for NUMA (Non-Uniform Memory Architecture) systems,
that monitors NUMA characteristics and manages placement of processes
and memory to minimize memory latency and thus provide optimum performance.
%prep
%setup -q -n %{name}-%{version}git
%build
make CFLAGS="-std=gnu99 -g" LDFLAGS="-lpthread"
%install
mkdir -p %{buildroot}%{_bindir}
mkdir -p %{buildroot}%{_sysconfdir}
mkdir -p %{buildroot}%{_unitdir}
mkdir -p %{buildroot}%{_mandir}/man8/
install -p -m 644 numad.conf %{buildroot}%{_sysconfdir}/
install -p -m 644 numad.service %{buildroot}%{_unitdir}/
make install prefix=%{buildroot}/usr
%files
%{_bindir}/numad
%{_unitdir}/numad.service
%config(noreplace) %{_sysconfdir}/numad.conf
%doc %{_mandir}/man8/numad.8.gz
%post
%systemd_post numad.service
2012-02-23 15:16:22 +00:00
%preun
%systemd_preun numad.service
2012-02-23 15:16:22 +00:00
%postun
%systemd_postun numad.service
2012-02-23 15:16:22 +00:00
%changelog
2012-10-16 07:35:07 +00:00
* Tue Oct 16 2012 Jan Synáček <jsynacek@redhat.com> - 0.5-7.20121015git
- Update to 20121015
* Wed Aug 22 2012 Jan Synáček <jsynacek@redhat.com> - 0.5-6.20120522git
- add systemd-rpm macros
- Resolves: #850236
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5-5.20120522git
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2012-05-23 06:11:22 +00:00
* Wed May 23 2012 Jan Synáček <jsynacek@redhat.com> - 0.5-4.20120522git
- update source (20120522) and manpage
2012-03-06 07:21:37 +00:00
* Tue Mar 06 2012 Jan Synáček <jsynacek@redhat.com> 0.5-3.20120221git
- update source
- drop the patch
2012-02-24 07:38:23 +00:00
* Fri Feb 24 2012 Jan Synáček <jsynacek@redhat.com> 0.5-2.20120221git
- add BuildRequires: systemd-units
2012-02-23 15:16:22 +00:00
* Wed Feb 15 2012 Jan Synáček <jsynacek@redhat.com> 0.5-1.20120221git
- spec update
* Fri Feb 10 2012 Bill Burns <bburns@redhat.com> 0.5-1
- initial version