source: projects/specs/trunk/g/gsl/gsl-vl.spec @ 12266

Revision 12266, 6.2 KB checked in by ara_t, 5 years ago (diff)

gsl: update to 2.6

Line 
1Name:      gsl
2Summary:   The GNU Scientific Library for numerical analysis.
3Summary(ja): 数値解析用の GNU 科学技術計算ライブラリ
4Version:   2.6
5Release:   1%{?_dist_release}
6
7License:   GPLv3
8Group:     System Environment/Libraries
9URL:       http://www.gnu.org/software/gsl/
10Source:    %{name}-%{version}.tar.gz
11
12BuildRoot: %{_tmppath}/%{name}-%{version}-root
13
14Vendor: Project Vine
15Distribution: Vine Linux
16
17Packager: inagaki
18
19
20%description
21The GNU Scientific Library (GSL) is a collection of routines for
22numerical analysis, written in C
23
24%description -l ja
25gsl パッケージは、科学技術計算用のライブラリ、GNU Scientific Library (GSL)
26を収めたものです。GSL は C で記述された数値解析ルーチンのコレクションです。
27
28
29%package devel
30Summary:  Static libraries and header files for GSL development.
31Summary(ja):  GSL での開発に必要な静的ライブラリとヘッダファイル
32Group:    Development/Libraries
33Requires: %{name} = %{version}-%{release}
34Requires(post): /sbin/install-info
35Requires(preun): /sbin/install-info
36
37%description devel
38The gsl-devel package contains the header files and static libraries
39necessary for developing programs using the GSL (GNU Scientific Library).
40
41%description devel -l ja
42gsl-devel パッケージには GNU Scientific Library (GSL) を使ってプログラムを
43開発する際に必要となる、ヘッダーファイルおよびスタティックライブラリが収め
44られています。
45
46
47%prep
48%setup -q
49
50%build
51%configure --disable-static --enable-silent-rules
52touch doc/gsl-ref.info
53%{__make}
54
55%install
56%{__rm} -rf ${RPM_BUILD_ROOT}
57%{__make} DESTDIR=${RPM_BUILD_ROOT} MANDIR=%{_mandir} INFODIR=%{_infodir} install
58
59%{__rm} -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
60%{__rm} -f $RPM_BUILD_ROOT%{_infodir}/dir
61
62%post -p /sbin/ldconfig
63
64%postun -p /sbin/ldconfig
65
66%post devel
67/sbin/install-info %{_infodir}/gsl-ref.info.gz %{_infodir}/dir
68
69%preun devel
70if [ "$1" = 0 ]; then
71    /sbin/install-info --delete %{_infodir}/gsl-ref.info.gz %{_infodir}/dir
72fi
73
74%clean
75rm -rf $RPM_BUILD_ROOT
76
77
78%files
79%defattr(-,root,root)
80%doc AUTHORS BUGS COPYING ChangeLog INSTALL NEWS
81%doc README NEWS THANKS TODO
82%{_bindir}/gsl-histogram
83%{_bindir}/gsl-randist
84%{_libdir}/*.so.*
85%{_mandir}/man1/gsl-histogram.*
86%{_mandir}/man1/gsl-randist.*
87
88%files devel
89%defattr(-,root,root)
90%doc AUTHORS COPYING
91%{_bindir}/gsl-config
92%{_includedir}/*
93%{_datadir}/aclocal/*.m4
94%{_infodir}/*
95#{_libdir}/*.a
96#{_libdir}/*.la
97%{_libdir}/*.so
98%{_libdir}/pkgconfig/*.pc
99%{_mandir}/man1/gsl-config.*
100%{_mandir}/man3/*
101
102
103%changelog
104* Sun Oct 13 2019 Toshiaki Ara <ara_t@384.jp> 2.6-1
105- new upstream release
106
107* Sun Aug 12 2018 Toshiaki Ara <ara_t@384.jp> 2.5-1
108- new upstream release
109
110* Sun Jun 03 2018 Toshiaki Ara <ara_t@384.jp> 2.4-1
111- new upstream release
112
113* Mon Nov 14 2016 Toshiaki Ara <ara_t@384.jp> 2.2.1-1
114- new upstream release
115
116* Fri Sep 12 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 1.16-1
117- new upstream release
118
119* Sun Sep 26 2010 Shu KONNO <owa@bg.wakwak.com> 1.14-2
120- rebuilt with rpm-4.8.1 for pkg-config
121
122* Sat Apr 24 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.14-1
123- new upstream release
124- built with new toolchain
125
126* Wed Jun 24 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.12-1
127- new upstream release
128- spec in UTF-8
129- removed lib*.a files from devel package
130
131* Fri May 16 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.11-1
132- new upstream release
133- removed lib*.la files from devel package
134
135* Tue Oct 23 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.10-0vl1
136- new upstream release
137- added Requires(post, preun) to devel package
138- updated License to GPLv3
139
140* Sun Aug  5 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.9-0vl1
141- new upstream release
142
143* Wed Jul 13 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.6-0vl1
144- updated to 1.6
145
146* Tue Nov 23 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.5-0vl1
147- updated to 1.5
148- rebuild with new toolchains
149- added Japanese summary
150
151* Fri Dec 26 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4-0vl2
152- rebuild with new toolchains
153
154* Fri Dec 26 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4-0vl2
155- rebuild with new toolchains
156
157* Sat Aug 30 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4-0vl1
158- update to 1.4
159- rebuild with new toolchains
160- change URL
161
162* Thu Jul 18 2002 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 1.2-0vl1
163- update to 1.2
164- modified for Vine.
165
166* Sat Mar 16 2002 Fuhito Suguri <bitwalk@jcom.home.ne.jp> 1.1.1-5bw
167- Update 1.1.1.
168
169* Wed Feb 27 2002 Fuhito Suguri <bitwalk@jcom.home.ne.jp> 1.1-4bw
170- Update 1.1.
171
172* Mon Feb 18 2002 Fuhito Suguri <bitwalk@jcom.home.ne.jp> 1.0-3bw
173- add Japanese descriptions and rebuild on RH7.2.
174
175* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
176- automated rebuild
177
178* Thu Dec 13 2001 Trond Eivind Glomsrod <teg@redhat.com> 1.0-1
179- 1.0
180- Split into gsl and gsl-devel
181- update description (#56926)
182
183* Thu Jul 19 2001 Preston Brown <pbrown@redhat.com>
184- upgrade to 0.9
185
186* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
187- Bump release + rebuild.
188
189* Thu Jan 18 2001 Preston Brown <pbrown@redhat.com>
190- prereq install-info (#24250)
191
192* Mon Dec 11 2000 Preston Brown <pbrown@redhat.com>
193- 0.7, remove excludearch for ia64
194
195* Sun Jul 30 2000 Florian La Roche <Florian.LaRoche@redhat.de>
196- fix %post to be a real shell and add ldconfig to %post
197
198* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
199- automatic rebuild
200
201* Mon Jun 19 2000 Preston Brown <pbrown@redhat.com>
202- don't include the info dir file...
203
204* Sat Jun 17 2000 Bill Nottingham <notting@redhat.com>
205- add %%defattr
206
207* Mon Jun 12 2000 Preston Brown <pbrown@redhat.com>
208- 0.6, FHS paths
209- exclude ia64, it is having issues
210
211* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
212- auto rebuild in the new build environment (release 2)
213
214* Thu Mar 11 1999 Bill Nottingham <notting@redhat.com>
215- update to 0.3f
216- add patches to fix glibc-2.1 compilation, doc oddity
217
218* Thu Feb 25 1999 Bill Nottingham <notting@redhat.com>
219- new summary/description, work around automake oddity
220
221* Tue Jan 12 1999 Michael K. Johnson <johnsonm@redhat.com>
222- libtoolize for arm
223
224* Thu Sep 10 1998 Cristian Gafton <gafton@redhat.com>
225- spec file fixups
226
227* Sat May 9 1998 Michael Fulbright <msf@redhat.com>
228- started with package for gmp from Toshio Kuratomi <toshiok@cats.ucsc.edu>
229- cleaned up file list
230- fixed up install-info support
Note: See TracBrowser for help on using the repository browser.