source: projects/specs/trunk/lib/libs/libsigsegv/libsigsegv-vl.spec @ 12535

Revision 12535, 2.2 KB checked in by tomop, 3 years ago (diff)

updated 3 packages

audit-3.0.1-1

initscripts-8.91.16-6

libsigsegv-2.13-1

Line 
1Name: libsigsegv
2Summary: Library for handling page faults in user mode
3Version: 2.13
4Release: 1%{?_dist_release}
5Group: system
6Vendor: Project Vine
7Distribution: Vine Linux
8
9License: GPLv2
10URL: https://www.gnu.org/software/libsigsegv/
11Source0: https://ftp.gnu.org/gnu/libsigsegv/libsigsegv-%{version}.tar.gz
12BuildRoot: %{_tmppath}/%{name}-%{version}-root
13
14%description
15This is a library for handling page faults in user mode. A page fault
16occurs when a program tries to access to a region of memory that is
17currently not available. Catching and handling a page fault is a useful
18technique for implementing:
19
20  - pageable virtual memory,
21  - memory-mapped access to persistent databases,
22  - generational garbage collectors,
23  - stack overflow handlers,
24  - distributed shared memory,
25  - ...
26
27%package devel
28Summary: Development libraries and headers for %{name}
29Group: programming
30Requires: %{name} = %{version}-%{release}
31
32%description devel
33Development libraries and headers for %{name}.
34
35
36%debug_package
37
38
39%prep
40%setup -q
41
42
43%build
44%configure --enable-shared --enable-static
45make
46
47
48%install
49rm -rf %{buildroot}
50%makeinstall
51## remove unuse files
52rm -rf $RPM_BUILD_ROOT%{_libdir}/*.la
53
54
55%clean
56rm -rf %{buildroot}
57
58
59%post -p /sbin/ldconfig
60%postun -p /sbin/ldconfig
61
62
63%files
64%defattr(-,root,root)
65%license COPYING
66%{_libdir}/*.so.*
67
68%files devel
69%defattr(-,root,root)
70%license COPYING
71%doc AUTHORS ChangeLog* NEWS PORTING README
72%{_includedir}/*.h
73%{_libdir}/*.so
74%{_libdir}/*.a
75#%{_libdir}/*.la
76
77
78%changelog
79* Fri Feb 19 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.13-1
80- new upstream release.
81
82* Thu Sep 05 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.12-1
83- new upstream release.
84
85* Sun Aug 24 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.10-1
86- update to 2.10
87
88* Sun Apr 17 2011 Shu KONNO <owa@bg.wakwak.com> 2.8-2
89- rebuilt with rpm-4.8.1-3
90
91* Tue Feb 23 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.8-1
92- new upstream release
93- built with new toolchain
94
95* Sat Oct 18 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.6-1
96- new upstream release
97
98* Sat Sep 20 2008 Shu KONNO <owa@bg.wakwak.com> 2.4-1vl5
99- applied new versioning policy
100- removed *.la
101
102* Sun Mar 18 2007 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 2.4-0vl1
103- Initial build.
104
Note: See TracBrowser for help on using the repository browser.