source: projects/specs/trunk/l/lftp/lftp-vl.spec @ 10453

Revision 10453, 10.8 KB checked in by tomop, 8 years ago (diff)

lftp-4.7.2-2

Line 
1Summary: A sophisticated file transfer program
2Summary(ja): 洗練された ftp/http クライアント
3Name: lftp
4Version: 4.7.2
5Release: 2%{?_dist_release}
6License: GPLv3
7Group: Applications/Internet
8URL: http://lftp.yar.ru/
9
10Source: http://ftp.yars.free.net/pub/source/lftp/lftp-%{version}.tar.xz
11
12BuildRoot: %{_tmppath}/%{name}-%{version}-root
13BuildRequires: expat-devel
14BuildRequires: ncurses-devel
15BuildRequires: openssl-devel
16BuildRequires: pkgconfig
17BuildRequires: readline-devel
18BuildRequires: zlib-devel
19
20Packager: iwamoto
21Vendor: Project Vine
22Distribution: Vine Linux
23
24%description
25LFTP is a sophisticated ftp/http file transfer program. Like bash, it has job
26control and uses the readline library for input. It has bookmarks, built-in
27mirroring, and can transfer several files in parallel. It is designed with
28reliability in mind.
29
30%description -l ja
31LFTP は洗練された ftp/http ファイル転送プログラムです.Bash のように、ジョブ制御
32機能を有し、入力には Readline ライブラリを使用します。ブックマーク機能や、ミラー
33リング機能も組み込まれており、複数のファイルを並列して転送することも可能です。 
34もちろん、信頼性を念頭に設計されています。
35
36%package scripts
37Summary:        Scripts for lftp
38Summary(ja):    LFTP のユーティリティスクリプト
39Group:          Applications/Internet
40Requires:       lftp = %{version}-%{release}
41Requires:       perl(DBD::SQLite)
42BuildArch:      noarch
43
44%description scripts
45Utility scripts for use with lftp.
46
47%description scripts -l ja
48LFTP のユーティリティスクリプトです。
49
50%prep
51%setup -q
52
53# cp po/ja.po po/ja.po.orig
54# msgmerge -v %{SOURCE10} po/ja.po.orig -o po/ja.po
55
56%build
57if pkg-config openssl ; then
58        CPPFLAGS=`pkg-config --cflags openssl`; export CPPFLAGS
59        LDFLAGS=`pkg-config --libs-only-L openssl`; export LDFLAGS
60fi
61LDFLAGS="-L`pwd`/src/.libs $LDFLAGS"; export LDFLAGS
62%configure --with-modules --disable-static --with-openssl
63export tagname=CC
64make %{?_smp_mflags}
65
66%install
67rm -rf $RPM_BUILD_ROOT
68%makeinstall sysconfdir=$RPM_BUILD_ROOT%{_sysconfdir}
69rm -f $RPM_BUILD_ROOT%{_libdir}/lftp/%{version}/*.la
70chmod 0755 $RPM_BUILD_ROOT%{_libdir}/lftp/*
71chmod 0755 $RPM_BUILD_ROOT%{_libdir}/lftp/%{version}/*.so
72
73# Remove files from $RPM_BUILD_ROOT that we aren't shipping.
74rm -f $RPM_BUILD_ROOT%{_libdir}/lftp/%{version}/*.a
75rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
76
77%find_lang %{name}
78
79%clean
80rm -rf $RPM_BUILD_ROOT
81
82%files -f %{name}.lang
83%defattr(-,root,root)
84%doc README README.modules FAQ THANKS COPYING
85%doc TODO NEWS FEATURES
86%config(noreplace) %{_sysconfdir}/lftp.conf
87%{_bindir}/*
88%{_mandir}/*/*
89# %{_datadir}/lftp
90%{_libdir}/*.so*
91%dir %{_libdir}/lftp
92%dir %{_libdir}/lftp/%{version}
93%{_libdir}/lftp/%{version}/cmd-*.so
94%{_libdir}/lftp/%{version}/liblftp-network.so
95# %{_libdir}/lftp/%{version}/liblftp-getdate.so
96%{_libdir}/lftp/%{version}/liblftp-pty.so
97%{_libdir}/lftp/%{version}/proto-*.so
98
99
100%files scripts
101%defattr(-,root,root,-)
102%{_datadir}/lftp
103
104%changelog
105* Thu Jun 30 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.7.2-2
106- rebuilt with new toolchain.
107
108* Sat May 28 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.7.2-1
109- new upstream release
110
111* Sun May 15 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.7.1-1
112- new upstream release
113
114* Fri Aug 08 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 4.5.4-1
115- new upstream release
116
117* Tue Jun 17 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.5.2-1
118- new upstream release
119
120* Thu Jan  9 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.4.14-1
121- new upstream release
122- add BR: zlib-devel
123- fix changelog date
124
125* Sun Sep 30 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.4.0-1
126- new upstream release
127- use upstream ja.po instead of old local ja.po (source10)
128
129* Sat Jun  2 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.3.7-1
130- new upstream release
131- built with openssl 1.0.1
132
133* Mon May  2 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.2.3-1
134- new upstream release
135
136* Sun Jan  9 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.1.2-3
137- rebuilt with openssl 1.0.0c
138
139* Wed Jan  5 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.1.2-2
140- separated scripts to script package
141
142* Mon Jan  3 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.1.2-1
143- new upstream release
144- change source tarball format (bz2 -> xz)
145
146* Sat Aug  7 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.0.9-1
147- new upstream release with security fix (CVE-2010-2251)
148
149* Thu Jan 21 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.0.5-1
150- new upstream release 
151- update ja.po file (Thanks to Tadashi Jokagi <elf@elf.no-ip.org>)
152- update %files section to fit new release
153
154* Tue Jul 28 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.7.15-1
155- new upstream release
156
157* Tue May 19 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.7.14-1
158- new upstream release
159
160* Wed May 06 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.7.13-1
161- new upstream release
162
163* Wed Mar 25 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.7.11-1
164- new upstream release
165
166* Wed Mar 04 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.7.9-1vl5
167- new upstream release
168
169* Sun Feb 01 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.7.8-1vl5
170- new upstream release
171- fix License tag
172
173* Mon Jan 12 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.7.7-1vl5
174- new upstream release
175
176* Mon Dec 01 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.7.6-1vl5
177- new upstream release
178
179* Mon Oct 20 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.7.4-1vl5
180- new upstream release
181- del liblftp-getdate.so from files list (upstream change)
182
183* Sat Jul 12 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.7.3-1vl5
184- new upstream release
185- spec in UTF8
186
187* Sat May 03 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.7.1-2vl5
188- add BuildPrereq expat-devel
189
190* Sat May 03 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.7.1-1vl5
191- new upstream release
192- new versioning policy
193
194* Mon Mar 10 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.7.0-0vl1
195- new upstream release
196
197* Wed Feb 20 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.6.1-0vl2
198- rebuild with expat-2.0.1
199
200* Mon Jan 07 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.6.1-0vl1
201- new upstream release
202
203* Sat Oct 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.15-0vl1
204- new upstream release
205
206* Tue Aug 28 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.5.13-0vl1
207- new upstream release
208
209* Mon Jul 30 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.5.12-0vl1
210- new upstream release
211
212* Sat May 19 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.5.10-0vl1
213- new upstream release
214- rebuilt with new toolchain and openssl-0.9.8
215
216* Fri Jan 12 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.5.9-0vl1
217- new upstream release
218
219* Sat Nov 11 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.5.6-0vl3
220- fix configure option to use openssl
221
222* Sun Oct 29 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 3.5.6-0vl2
223- rebuild with gnutls-1.4.1
224
225* Fri Oct 27 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.5.6-0vl1
226- new upstream release
227
228* Mon Aug 21 2006 KOBAYASHI Taizo <tkoba@vinelinux.org> 3.5.4-0vl1
229- new upstream release
230
231* Fri Jul 07 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.4.7-0vl2
232- changed Group to Applications/Internet
233
234* Fri Jun 09 2006 KOBAYASHI Taizo <tkoba@vinelinux.org> 3.4.7-0vl1
235- new upstream release
236
237* Sun Mar 19 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.4.2-0vl2
238- rebuild with readline-5.1
239
240* Wed Feb 15 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.4.2-0vl1
241- new upstream release
242
243* Fri Oct 22 2004 IWAI, Masaharu <iwai@alib.jp> 3.0.9-0vl1
244- new upstream release
245- update ja.po ( Source10 )
246- add Japanese description
247- lftp.conf: noreplace
248
249* Sun Jun 13 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.6-0vl1
250- new upstream release
251
252* Thu Jun  3 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.5-0vl1
253- new upstream release
254
255* Fri Apr 30 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.3-0vl1
256- new upstream release
257
258* Sun Apr 18 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.2-0vl2
259- update ja.po (more work needed...)
260
261* Sun Apr 18 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.2-0vl1
262- new upstream release
263
264* Sun Apr 4 2004 HAYASHI Kentarou <linjian@gigo-ice.org> 3.0.0-0vl1
265- new upstream release
266
267* Mon Mar 1 2004 HAYASHI Kentarou <linjian@gigo-ice.org> 2.6.12-0vl1
268- new upstream release
269
270* Mon Dec 29 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.11-0vl1
271- new upstream release
272
273* Thu Dec 18 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.10-0vl1
274- new upstream release
275
276* Sat Aug 30 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.7-0vl1
277- new upstream release
278
279* Tue Jun 10 2003 Jun NISHII <jun@vinelinux.org> 2.6.5-2vl1
280- synced with RawHide 2.6.5-2
281
282* Thu Mar 27 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 2.6.3-4vl1
283- synced with RawHide 2.6.3-4
284
285* Wed Jan 23 2002 Jun Nishii <jun@vinelinux.org> 2.4.8-0vl1
286- ver.up
287- fix COPYRIGHT(GPL->GPL2)
288
289* Tue Sep 25 2001 Kazuhisa TAKEI <takei@vinelinux.org>
290- 2.4.4
291- major version  update
292
293* Mon Jul 16 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
294- 2.3.10-0vl5
295- rebuilt with openssl-0.9.6b
296
297* Thu May 24 2001 <sagami@vinelinux.org>
298- 2.3.10-0vl4: fix so as not to own %%{_bindir} itself
299
300* Thu May 24 2001 Kazuhisa TAKEI<takei@vinelinux.org> 2.3.10-0vl3
301- remove configurei's --with-modules option.
302
303* Sat May 19 2001 <takei@vinelinux.org> 2.3.10-0vl2
304- fixed spec bug( sevaral lftp modules lack)
305
306* Fri May 11 2001 <sagami@vinelinux.org>
307- 2.3.10-0vl1: use more macros
308
309* Tue Jan 23 2001 Kazuhisa TAKEI <takei@vinelinux.org> 2.3.7-0vl2
310- enable ssl
311
312* Tue Jan 23 2001 Kazuhisa TAKEI <takei@vinelinux.org> 2.3.7-0vl1
313- 2.3.7-0vl1
314
315* Wed Dec 13 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
316- 2.3.3-0vl4
317- rebuilt with readline-4
318
319* Thu Oct 12 2000 Kazuhisa TAKEI<takei@vinelinux.org> 2.3.3-0vl3
320- add lftpget
321
322* Mon Oct  9 2000 Kazuhisa TAKEI<takei@vinelinux.org> 2.3.3-0vl1
323- upstream merge ja.po
324- %doc /usr/man -> %{_mandir}   
325- several .spec file's bug  fixed.
326
327* Sun Oct  1 2000 Kazuhisa TAKEI<takei@vinelinux.org> 2.3.0-0vl5
328- fixed ja.po
329
330* Mon Sep 11 2000 Kazuhisa TAKEI<takei@vinelinux.org>
331- 2.2.6-1vl0
332- remove noroot.patch
333
334* Mon Sep 11 2000 Kazuhisa TAKEI<takei@vinelinux.org>
335- 2.2.2-1vl3
336- added Japanese message catalog file
337
338* Thu Jul 27 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
339- 2.2.2-1vl2
340- cleaned up noroot.patch
341- added %build tag (why forgotten?)
342- added Japanese Summary
343- modified %files section to handle compressed man pages
344
345* Thu May  4 2000 Kazuhisa TAKEI <takei@vinelinux.org>
346- change spec file  for Vine Linux
347
348* Sat Oct 02 1999 Alexander Lukyanov <lav@yars.free.net>
349- 2.1.1 release
350- removed ChangeLog from doc.
351
352* Mon Sep 27 1999 Alexander Lukyanov <lav@yars.free.net>
353- 2.1.0 release
354
355* Tue Sep 14 1999 Alexander Lukyanov <lav@yars.free.net>
356- add lftpget
357
358* Tue Jul 27 1999 Adrian Likins <alikins@redhat.com>
359-initial release
Note: See TracBrowser for help on using the repository browser.