From 04174ae3197f4ed1c6f6b98d703579e997b5116f Mon Sep 17 00:00:00 2001 From: Automatic Build System Date: Sat, 6 Jan 2024 05:47:22 +0100 Subject: [PATCH] automatic update by autodist [release 2.10-1mamba;Fri Jul 01 2011] --- README.md | 10 +++++ libsigsegv.spec | 115 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 125 insertions(+) create mode 100644 libsigsegv.spec diff --git a/README.md b/README.md index 5cf7e85..fccb908 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,12 @@ # libsigsegv +This is a library for handling page faults in user mode. A page fault +occurs when a program tries to access to a region of memory that is +currently not available. Catching and handling a page fault is a useful +technique for implementing: + - pageable virtual memory + - memory-mapped access to persistent databases + - generational garbage collectors + - stack overflow handlers + - distributed shared memory + diff --git a/libsigsegv.spec b/libsigsegv.spec new file mode 100644 index 0000000..966ccf6 --- /dev/null +++ b/libsigsegv.spec @@ -0,0 +1,115 @@ +Name: libsigsegv +Version: 2.10 +Release: 1mamba +Summary: is a library for handling page faults in user mode. +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: gil +URL: http://libsigsegv.sourceforge.net/ +Source: http://ftp.gnu.org/gnu/libsigsegv/libsigsegv-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +This is a library for handling page faults in user mode. A page fault +occurs when a program tries to access to a region of memory that is +currently not available. Catching and handling a page fault is a useful +technique for implementing: + - pageable virtual memory + - memory-mapped access to persistent databases + - generational garbage collectors + - stack overflow handlers + - distributed shared memory + +%package devel +Group: Development/Libraries +Summary: Libraries and headers for %{name} +Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description devel +This is a library for handling page faults in user mode. A page fault +occurs when a program tries to access to a region of memory that is +currently not available. Catching and handling a page fault is a useful +technique for implementing: + - pageable virtual memory + - memory-mapped access to persistent databases + - generational garbage collectors + - stack overflow handlers + - distributed shared memory + +This package contains libraries and header files need for development. + +%package static +Summary: Static libraries for %{name} +Group: Development/Libraries +Requires: %{name}-devel = %{version} + +%description static +This is a library for handling page faults in user mode. A page fault +occurs when a program tries to access to a region of memory that is +currently not available. Catching and handling a page fault is a useful +technique for implementing: + - pageable virtual memory + - memory-mapped access to persistent databases + - generational garbage collectors + - stack overflow handlers + - distributed shared memory + +This package contains static libraries need for development. + +%prep + +%setup -q + +%build +%configure \ + --enable-shared \ + --enable-static + +%make +make check + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root) +%{_libdir}/*.so.* +%doc AUTHORS COPYING ChangeLog ChangeLog.1 NEWS README README.woe32 + +%files devel +%defattr(-,root,root) +%{_includedir}/*.h +%{_libdir}/*.so + +%files static +%defattr(-,root,root) +%{_libdir}/*.a +%{_libdir}/*.la + +%changelog +* Fri Jul 01 2011 Automatic Build System 2.10-1mamba +- automatic update by autodist + +* Tue Nov 09 2010 Automatic Build System 2.9-1mamba +- automatic update by autodist + +* Wed Jan 13 2010 Automatic Build System 2.8-1mamba +- automatic update by autodist + +* Sat Aug 15 2009 Automatic Build System 2.7-1mamba +- automatic update by autodist + +* Mon Nov 10 2008 gil 2.6-1mamba +- package created by autospec