source: projects/specs/trunk/e/ed/ed-vl.spec @ 9467

Revision 9467, 5.4 KB checked in by inagaki, 9 years ago (diff)

2015-03-24 Ryoichi INAGAKI <ryo1@…>

  • bind, guild, js, unixODBC: rebuilt
  • ed: updated


Line 
1Summary: The GNU line editor.
2Summary(ja): GNU ラインエディタ
3Name: ed
4Version: 1.10
5Release: 1%{?_dist_release}
6
7License: GPLv3+ and GFDL
8Group: Applications/Text
9URL: http://www.gnu.org/software/ed/
10
11Source: ftp://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.bz2
12
13BuildRoot: %{_tmppath}/%{name}-%{version}-root
14Requires(post): /sbin/install-info
15Requires(preun): /sbin/install-info
16
17Vendor: Project Vine
18Distribution: Vine Linux
19
20%description
21Ed is a line-oriented text editor, used to create, display, and modify
22text files (both interactively and via shell scripts).  For most
23purposes, ed has been replaced in normal usage by full-screen editors
24(emacs and vi, for example).
25
26Ed was the original UNIX editor, and may be used by some programs.  In
27general, however, you probably don't need to install it and you probably
28won't use it.
29
30%description -l ja
31ed はラインベースのテキストエディタです.テキストファイルを作成/表示/修正
32するのに使われます (インタラクティブにも,シェルスクリプト経由でも使えます).
33多くのケースで,ed の代わりにフルスクリーンエディタ (emacs や vi 等) が
34使われる様になってきています.
35
36ed は UNIX オリジナルのエディタで,一部のプログラムが ed を使用している
37かもしれません.しかし一般的には ed をインストールする必要はありませんし,
38使うこともないでしょう.
39
40
41%prep
42%setup -q
43rm -f stamp-h.in
44
45%build
46%configure --exec-prefix=/
47make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS"
48
49%install
50rm -rf $RPM_BUILD_ROOT
51mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
52make install DESTDIR=$RPM_BUILD_ROOT bindir=/bin \
53        mandir=%{_mandir}/man1
54
55rm -f $RPM_BUILD_ROOT%{_infodir}/dir*
56gzip -9qnf  $RPM_BUILD_ROOT%{_infodir}/*
57install -p -m0644 doc/ed.1 $RPM_BUILD_ROOT%{_mandir}/man1
58
59%post
60/sbin/install-info %{_infodir}/ed.info.gz %{_infodir}/dir \
61    --entry="* ed: (ed).                  The GNU Line Editor." || :
62
63%preun
64if [ $1 = 0 ] ; then
65  /sbin/install-info --delete %{_infodir}/ed.info.gz %{_infodir}/dir \
66    --entry="* ed: (ed).                  The GNU Line Editor." || :
67fi
68
69%clean
70rm -rf $RPM_BUILD_ROOT
71
72%files
73%defattr(-,root,root)
74%doc ChangeLog NEWS README TODO AUTHORS COPYING
75/bin/*
76%{_infodir}/ed.info.gz
77%{_mandir}/*/*
78
79
80%changelog
81* Sun Mar 22 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 1.10-1
82- updated to 1.10
83
84* Wed Jan 15 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.9-1
85- update to 1.9
86
87* Sat Apr 16 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.5-1
88- new upstream release
89
90* Mon Nov 30 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4-1
91- new upstream release
92
93* Sat Nov  8 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.1-1
94- new upstream release
95
96* Sat Aug 23 2008 Shu KONNO <owa@bg.wakwak.com> 1.0-1
97- new upstream release
98- spec in utf-8
99
100* Sat Apr 19 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.9-1
101- new upstream release
102
103* Sat Oct 20 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.8-0vl1
104- new upstream release
105- updated URL, License
106
107* Fri Sep 22 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.2-35vl2
108- rebuild to add gpg sign
109
110* Sat Apr 10 2004 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 0.2-35vl1
111- rename spec file to ed-vl.spec
112- added patch2
113  * Tue Dec 17 2002 Karsten Hopp <karsten@redhat.de>ト<8D>
114  - remove regex, use glibc's regex (#79132)
115
116* Wed Dec 04 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.2-28vl1
117- based on 0.2-28 from rawhide and built for Vine Linux
118- BuildPreReq: autoconf253, automake15
119- added Japanese summary and description
120
121* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
122- automated rebuild
123
124* Thu May 23 2002 Tim Powers <timp@redhat.com>
125- automated rebuild
126
127* Mon May  6 2002 Bernhard Rosenkraenzer <bero@redhat.com> 0.2-26
128- Fix build with current toolchain
129
130* Wed Apr 03 2002 Karsten Hopp <karsten@redhat.de>
131- don't use gcc -s
132
133* Fri Feb 22 2002 Karsten Hopp <karsten@redhat.de>
134- bump version
135
136* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
137- automated rebuild
138
139* Mon Oct 15 2001 Karsten Hopp <karsten@redhat.de>
140- add home page (#54602)
141
142* Sat Jul 07 2001 Karsten Hopp <karsten@redhat.de>
143- Copyright -> License
144- fix URL
145
146* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
147- Bump release + rebuild.
148
149* Mon Dec 04 2000 Karsten Hopp <karsten@redhat.de>
150- back out fixes for compiler warnings
151
152* Wed Nov 29 2000 Karsten Hopp <karsten@redhat.de>
153- Security bugfix (mkstemp instead of mktemp) Bugzilla #21470
154
155* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
156- automatic rebuild
157
158* Sun Jun 18 2000 Than Ngo <than@redhat.de>
159- fix typo
160
161* Sat Jun 17 2000 Than Ngo <than@redhat.de>
162- add %%defattr
163- clean up specfile
164
165* Sat May 20 2000 Ngo Than <than@redhat.de>
166- rebuild for 7.0
167- put man pages and infos in right place
168
169* Thu Feb 03 2000 Preston Brown <pbrown@redhat.com>
170- rebuild to gzip man pages.
171
172* Tue Mar 23 1999 Jeff Johnson <jbj@redhat.com>
173- fix %post syntax error (#1689).
174
175* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
176- auto rebuild in the new build environment (release 11)
177
178* Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
179- Injected new description and group.
180
181* Fri Dec 18 1998 Preston Brown <pbrown@redhat.com>
182- bumped spec number for initial rh 6.0 build
183
184* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
185- translations modified for de, fr, tr
186
187* Fri Oct 17 1997 Donnie Barnes <djb@redhat.com>
188- added install-info support
189- added BuildRoot
190- correct URL in Source line
191
192* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
193- built against glibc
Note: See TracBrowser for help on using the repository browser.