104 lines
3.4 KiB
RPMSpec
104 lines
3.4 KiB
RPMSpec
Name: lwp
|
|
Version: 2.6
|
|
Release: 9%{?dist}
|
|
Summary: C library for user-mode threading
|
|
Group: System Environment/Libraries
|
|
License: LGPLv2
|
|
URL: http://www.coda.cs.cmu.edu/
|
|
Source0: ftp://ftp.coda.cs.cmu.edu/pub/lwp/src/%{name}-%{version}.tar.gz
|
|
Source1: ftp://ftp.coda.cs.cmu.edu/pub/lwp/src/%{name}-%{version}.tar.gz.asc
|
|
Patch0: lwp-2.6-no-longjmp_chk.patch
|
|
|
|
%description
|
|
The LWP user-space threads library. The LWP threads library is used by the Coda
|
|
distributed file-system, RVM (a persistent VM library), and RPC2/SFTP (remote
|
|
procedure call library).
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Group: Development/Libraries
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
%description devel
|
|
The %{name}-devel package contains libraries and header files for
|
|
developing applications that use %{name}.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p1 -b .nolongjmpchk
|
|
|
|
%build
|
|
%configure --disable-static
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
|
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
|
|
|
%check
|
|
./src/testlwp 2
|
|
|
|
%post -p /sbin/ldconfig
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%doc AUTHORS COPYING NEWS README
|
|
%{_libdir}/*.so.*
|
|
|
|
%files devel
|
|
%{_includedir}/%{name}
|
|
%{_libdir}/*.so
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
|
|
|
%changelog
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-9
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-8
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-7
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-6
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-5
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
* Wed Oct 12 2011 Tom Callaway <spot@fedoraproject.org> - 2.6-4
|
|
- fix subpackage requires
|
|
- add .asc signature file
|
|
|
|
* Tue Oct 11 2011 Tom Callaway <spot@fedoraproject.org> - 2.6-3
|
|
- revived
|
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
* Thu Apr 1 2010 Adam Goode <adam@spicenitz.org> - 2.6-1
|
|
- New upstream release
|
|
+ Fix fortify failure whenever a new thread is started (not really)
|
|
+ ARM thumb2 assembly fix
|
|
- Update longjmp patch, upstream is not quite right yet
|
|
|
|
* Thu Aug 20 2009 Adam Goode <adam@spicenitz.org> - 2.5-3
|
|
- Add check to specfile
|
|
- Patch around lwp's creative use of longjmp that fails with fortify
|
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
* Fri Feb 27 2009 Adam Goode <adam@spicenitz.org> - 2.5-1
|
|
- New upstream release
|
|
+ Correct license on a few files
|
|
+ Add valgrind support
|
|
+ Adjust API (not ABI) for const correctness
|
|
+ Increase context switch performance
|
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
* Mon May 12 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 2.4-1
|
|
- Initial Fedora package
|