Blame SPECS/libdaemon.spec

7f8fc4
Name: libdaemon
7f8fc4
Version: 0.14
7f8fc4
Release: 7%{?dist}
7f8fc4
Summary: Library for writing UNIX daemons
7f8fc4
Group: System Environment/Libraries
7f8fc4
License: LGPLv2+
7f8fc4
URL: http://0pointer.de/lennart/projects/libdaemon/
7f8fc4
Source0: http://0pointer.de/lennart/projects/libdaemon/%{name}-%{version}.tar.gz
7f8fc4
7f8fc4
# Requires lynx to build the docs
7f8fc4
BuildRequires:  lynx
7f8fc4
7f8fc4
%description
7f8fc4
libdaemon is a lightweight C library which eases the writing of UNIX daemons.
7f8fc4
It consists of the following parts:
7f8fc4
* A wrapper around fork() which does the correct daemonization
7f8fc4
  procedure of a process
7f8fc4
* A wrapper around syslog() for simpler and compatible log output to
7f8fc4
  Syslog or STDERR
7f8fc4
* An API for writing PID files
7f8fc4
* An API for serializing UNIX signals into a pipe for usage with
7f8fc4
  select() or poll()
7f8fc4
* An API for running subprocesses with STDOUT and STDERR redirected
7f8fc4
  to syslog.
7f8fc4
7f8fc4
%package devel
7f8fc4
Group: Development/Libraries
7f8fc4
Summary: Libraries and header files for libdaemon development
7f8fc4
Requires: libdaemon = %{version}-%{release}
7f8fc4
7f8fc4
%description devel
7f8fc4
The libdaemon-devel package contains the header files and libraries
7f8fc4
necessary for developing programs using libdaemon.
7f8fc4
7f8fc4
%prep
7f8fc4
%setup -q
7f8fc4
7f8fc4
%build
7f8fc4
%configure --disable-static
7f8fc4
make %{?_smp_mflags}
7f8fc4
7f8fc4
%install
7f8fc4
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
7f8fc4
find $RPM_BUILD_ROOT \( -name *.a -o -name *.la \) -exec rm {} \;
7f8fc4
7f8fc4
rm $RPM_BUILD_ROOT/%{_datadir}/doc/libdaemon/README
7f8fc4
rm $RPM_BUILD_ROOT/%{_datadir}/doc/libdaemon/README.html
7f8fc4
rm $RPM_BUILD_ROOT/%{_datadir}/doc/libdaemon/style.css
7f8fc4
7f8fc4
%post -p /sbin/ldconfig
7f8fc4
7f8fc4
%postun -p /sbin/ldconfig
7f8fc4
7f8fc4
%files
7f8fc4
%defattr(-,root,root,-)
7f8fc4
%doc LICENSE README
7f8fc4
%{_libdir}/*so.*
7f8fc4
7f8fc4
%files devel
7f8fc4
%defattr(-,root,root,-)
7f8fc4
%doc doc/README.html doc/style.css
7f8fc4
%{_includedir}/*
7f8fc4
%{_libdir}/*.so
7f8fc4
%{_libdir}/pkgconfig/*.pc
7f8fc4
7f8fc4
%changelog
7f8fc4
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 0.14-7
7f8fc4
- Mass rebuild 2014-01-24
7f8fc4
7f8fc4
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 0.14-6
7f8fc4
- Mass rebuild 2013-12-27
7f8fc4
7f8fc4
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14-5
7f8fc4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
7f8fc4
7f8fc4
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14-4
7f8fc4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
7f8fc4
7f8fc4
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14-3
7f8fc4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
7f8fc4
7f8fc4
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14-2
7f8fc4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
7f8fc4
7f8fc4
* Fri Sep 10 2010 Parag Nemade <paragn AT fedoraproject.org> - 0.14-2
7f8fc4
- Merge-review cleanup (#225995)
7f8fc4
7f8fc4
* Sun Oct 18 2009 Lennart Poettering <lpoetter@redhat.com> - 0.14-1
7f8fc4
- New release 0.14
7f8fc4
7f8fc4
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13-3
7f8fc4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
7f8fc4
7f8fc4
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13-2
7f8fc4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
7f8fc4
7f8fc4
* Tue Jul 29 2008 Lennart Poettering <lpoetter@redhat.com> - 0.13-1
7f8fc4
- New release 0.13
7f8fc4
7f8fc4
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.12-3
7f8fc4
- Autorebuild for GCC 4.3
7f8fc4
7f8fc4
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 0.12-2
7f8fc4
- Rebuild for selinux ppc32 issue.
7f8fc4
7f8fc4
* Wed Jul 11 2007 Lennart Poettering <lpoetter@redhat.com> - 0.12-1
7f8fc4
- Update to upstream 0.12. (Basically just includes patch from 0.11-2)
7f8fc4
7f8fc4
* Mon Jul  2 2007 Dan Williams <dcbw@redhat.com> - 0.11-2
7f8fc4
- Fix double-free bug when closing daemon file descriptor (avahi.org #148)
7f8fc4
7f8fc4
* Fri Jun 22 2007 Martin Bacovsky <mbacovsk@redhat.com> - 0.11-1
7f8fc4
- Upgrade to new upstream version 0.11
7f8fc4
7f8fc4
* Thu Apr  5 2007 Martin Bacovsky <mbacovsk@redhat.com> - 0.10-4
7f8fc4
- Resolves: #222855: fileconflict for /usr/share/doc/libdaemon-devel-0.10/Makefile 
7f8fc4
7f8fc4
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - sh: line 0: fg: no job control
7f8fc4
- rebuild
7f8fc4
7f8fc4
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.10-3.1
7f8fc4
- bump again for double-long bug on ppc(64)
7f8fc4
7f8fc4
* Tue Feb 07 2006 Jason Vas Dias <jvdias@redhat.com> - 0.10-3
7f8fc4
- rebuild for new gcc, glibc, glibc-kernheaders
7f8fc4
7f8fc4
* Mon Jan 06 2006 Jason Vas Dias <jvdias@redhat.com> - 0.10-2
7f8fc4
- rebuild for new gcc / glibc
7f8fc4
7f8fc4
* Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com> - 0.10-1.1
7f8fc4
- rebuild on new gcc
7f8fc4
7f8fc4
* Wed Dec  7 2005 Jason Vas Dias <jvdias@redhat.com> - 0.10-1
7f8fc4
- Update to 0.10
7f8fc4
7f8fc4
* Thu Oct 20 2005 Alexander Larsson <alexl@redhat.com> - 0.8-1
7f8fc4
- Update to 0.8, move from extras to core, split out devel package
7f8fc4
7f8fc4
* Sun May 22 2005 Jeremy Katz <katzj@redhat.com> - 0.6-6
7f8fc4
- rebuild on all arches
7f8fc4
7f8fc4
* Fri Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
7f8fc4
- rebuilt
7f8fc4
7f8fc4
* Thu May 13 2004 Aaron Bennett <aaron.bennett@olin.edu> 0:0.6-0.fdr.4
7f8fc4
- Added post and postun scripts to run ldconfig
7f8fc4
- changed group to standard System/Libraries group
7f8fc4
- removed libtool *.la files
7f8fc4
7f8fc4
* Tue May 4 2004 Aaron Bennett <aaron.bennett@olin.edu> 0:0.6.-0.fdr.3
7f8fc4
- Signed packaged with GPG key
7f8fc4
7f8fc4
* Tue May 4 2004 Aaron Bennett <aaron.bennett@olin.edu> - 0:0.6-0.fdr.2
7f8fc4
- Changed URL and Source tag for Fedora.us packaging compliance
7f8fc4
- Incremented release tag
7f8fc4
7f8fc4
* Thu Apr 29 2004 Aaron Bennett <abennett@olin.edu> - 0:0.6-1
7f8fc4
- Changed to version 0.6 of libdaemon
7f8fc4
7f8fc4
* Wed Mar 31 2004 Aaron Bennett <abennett@olin.edu>
7f8fc4
- Initial build.