diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..422be31 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/liblockfile_1.08.orig.tar.gz diff --git a/.liblockfile.metadata b/.liblockfile.metadata new file mode 100644 index 0000000..1f299a2 --- /dev/null +++ b/.liblockfile.metadata @@ -0,0 +1 @@ +c3b67ca81abb45aa02c75c2a99f0e387b897fe73 SOURCES/liblockfile_1.08.orig.tar.gz diff --git a/SPECS/liblockfile.spec b/SPECS/liblockfile.spec new file mode 100644 index 0000000..4759850 --- /dev/null +++ b/SPECS/liblockfile.spec @@ -0,0 +1,133 @@ +Name: liblockfile +Version: 1.08 +Release: 17%{?dist} +Summary: This implements a number of functions found in -lmail on SysV systems + +Group: Applications/System +# regarding license please see file COPYRIGHT +License: GPLv2+ and LGPLv2+ +URL: http://packages.qa.debian.org/libl/liblockfile.html +Source0: http://ftp.de.debian.org/debian/pool/main/libl/liblockfile/liblockfile_1.08.orig.tar.gz + +%description +This library implements a number of functions found in -lmail on SysV +systems. These functions are designed to lock the standard mailboxes in +/var/mail (or wherever the system puts them). + +In additions, this library adds a number of functions to create, +manage and remove generic lockfiles. + +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + + +%prep +%setup -q -n %{name}-%{version} + +# remove -g root from install +sed -i "s/install -g root -m 755 dotlockfile \$(ROOT)\$(bindir);/install -m 755 dotlockfile \$(ROOT)\$(bindir);/" Makefile.in + + +%build +%configure --enable-shared +make %{?_smp_mflags} + + +%install +rm -rf %{buildroot} +mkdir -p %{buildroot}/%{_includedir} +mkdir -p %{buildroot}/%{_bindir} +mkdir -p %{buildroot}/%{_libdir} +mkdir -p %{buildroot}/%{_mandir}/man1 +mkdir -p %{buildroot}/%{_mandir}/man3 +make ROOT=%{buildroot} install + +ldconfig -N -n %{buildroot}/%{_libdir} + + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + + +%files +%{_bindir}/dotlockfile +%{_libdir}/liblockfile.so.1.0 +%{_libdir}/liblockfile.so.1 +%{_mandir}/man1/dotlockfile.1* +%doc README COPYRIGHT Changelog + + +%files devel +%{_libdir}/liblockfile.so +%{_includedir}/maillock.h +%{_includedir}/lockfile.h +%{_mandir}/man3/lockfile_create.3* +%{_mandir}/man3/maillock.3* + + +%changelog +* Fri Jan 24 2014 Daniel Mach - 1.08-17 +- Mass rebuild 2014-01-24 + +* Fri Dec 27 2013 Daniel Mach - 1.08-16 +- Mass rebuild 2013-12-27 + +* Thu Feb 14 2013 Fedora Release Engineering - 1.08-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Fri Sep 14 2012 Matthias Runge - 1.08-14 +- license is GPLv2+ and LGPLv2+ +- minor spec cleanups + +* Thu Jul 19 2012 Fedora Release Engineering - 1.08-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Fri Jan 13 2012 Fedora Release Engineering - 1.08-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Feb 08 2011 Fedora Release Engineering - 1.08-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Sat Aug 14 2010 Matthias Runge 1.08.10 +- replace linking of libs with ldconfig + +* Fri Aug 6 2010 Matthias Runge 1.08-9 +- change description and summary of -devel-subpackage +- make wildcard for man-pages even match against uncompressed files + +* Fri Aug 6 2010 Matthias Runge 1.08-8 +- rename to liblockfile +- sorting file to main and -devel package +- explicitly list files in files-section + +* Fri Aug 6 2010 Matthias Runge 1.08-7 +- remove COPYRIGHT from devel +- just fix one missing link from upstream + +* Thu Aug 5 2010 Matthias Runge 1.08-6 +- include COPYRIGHT in -devel, too +- remove unnecessary exclude + +* Tue Aug 3 2010 Matthias Runge 1.08-5 +- fix shared lib warning, sort lib to devel +- choose GPLv2+ as License (until we know better) + +* Wed Jul 28 2010 Matthias Runge 1.08-4 +- rename to lockfile +- sort lib to top package, fix license, build shared lib + +* Sun Jul 18 2010 Matthias Runge 1.08-3 +- fix up hidden dirs, and links + +* Wed Jun 30 2010 Matthias Runge 1.08-2 +- replace patch by sed-script + +* Sat May 22 2010 Matthias Runge 1.08-1 +- initial build