source: projects/specs/trunk/n/npth/npth-vl.spec @ 10306

Revision 10306, 3.1 KB checked in by tomop, 8 years ago (diff)

npth-1.2-4

Line 
1Name:           npth
2Version:        1.2
3Release:        4%{?_dist_release}
4Summary:        The New GNU Portable Threads library
5# software uses dual licensing (or both in parallel)
6License:        LGPLv3+ or GPLv2+ or (LGPLv3+ and GPLv2+)
7URL:            http://git.gnupg.org/cgi-bin/gitweb.cgi?p=npth.git
8
9Vendor: Project Vine
10Distribution: Vine Linux
11
12Source:         ftp://ftp.gnupg.org/gcrypt/npth/npth-%{version}.tar.bz2
13#Source1:        ftp://ftp.gnupg.org/gcrypt/npth/npth-%{version}.tar.bz2.sig
14# Manual page is re-used and changed pth-config.1 from pth-devel package
15Source2:        npth-config.1
16
17%description
18nPth is a non-preemptive threads implementation using an API very similar
19to the one known from GNU Pth. It has been designed as a replacement of
20GNU Pth for non-ancient operating systems. In contrast to GNU Pth is is
21based on the system's standard threads implementation. Thus nPth allows
22the use of libraries which are not compatible to GNU Pth.
23
24%package        devel
25Summary:        Development files for %{name}
26Requires:       %{name}%{?_isa} = %{version}-%{release}
27
28%description    devel
29This package contains libraries and header files for
30developing applications that use %{name}.
31
32%prep
33%setup -q
34
35%build
36%configure --disable-static
37%make_build
38
39%install
40%make_install INSTALL='install -p'
41
42mkdir -p %{buildroot}%{_mandir}/man1/
43install -pm0644 %{S:2} %{buildroot}%{_mandir}/man1/
44
45find %{buildroot} -name '*.la' -delete -print
46
47%check
48make check
49
50%post -p /sbin/ldconfig
51
52%postun -p /sbin/ldconfig
53
54%files
55%license COPYING COPYING.LESSER
56%{_libdir}/*.so.*
57
58%files devel
59%doc AUTHORS ChangeLog NEWS README
60%{_bindir}/*
61%{_libdir}/*.so
62%{_includedir}/*.h
63%{_mandir}/*/*
64%{_datadir}/aclocal/*
65
66%changelog
67* Sat May 21 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.2-4
68- initial build for Vine Linux.
69
70* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.2-3
71- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
72
73* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-2
74- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
75
76* Thu Apr 16 2015 Christopher Meng <rpm@cicku.me> - 1.2-1
77- Update to 1.2
78
79* Sat Nov 15 2014 Christopher Meng <rpm@cicku.me> - 1.1-1
80- Update to 1.1
81
82* Sat Sep 20 2014 Christopher Meng <rpm@cicku.me> - 1.0-1
83- Update to 1.0
84
85* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.91-7
86- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
87
88* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.91-6
89- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
90
91* Thu Mar  7 2013 Milan Bartos <mbartos@redhat.com> - 0.91-5
92- fixed license tag
93
94* Wed Mar  6 2013 Milan Bartos <mbartos@redhat.com> - 0.91-4
95- fixed license tag
96- added comment to license and manual page
97- removed defattr
98
99* Tue Mar  5 2013 Milan Bartos <mbartos@redhat.com> - 0.91-3
100- added npth-config man page
101
102* Tue Mar  5 2013 Milan Bartos <mbartos@redhat.com> - 0.91-2
103- fixed license tag
104- added COPYING.LESSER to package
105
106* Tue Feb 26 2013 Milan Bartos <mbartos@redhat.com> - 0.91-1
107- initial port
108
Note: See TracBrowser for help on using the repository browser.