2004-09-09 08:56:13 +00:00
|
|
|
Summary: A small text editor
|
|
|
|
Name: nano
|
2007-06-03 12:27:39 +00:00
|
|
|
Version: 2.0.6
|
2007-08-22 14:48:11 +00:00
|
|
|
Release: 2%{?dist}
|
|
|
|
License: GPLv2+
|
2004-09-09 08:56:13 +00:00
|
|
|
Group: Applications/Editors
|
|
|
|
URL: http://www.nano-editor.org
|
2006-05-16 16:17:03 +00:00
|
|
|
Source: http://www.nano-editor.org/dist/v1.3/%{name}-%{version}.tar.gz
|
2007-08-22 17:53:29 +00:00
|
|
|
Patch0: nano-2.0.6-open-macro.patch
|
2007-02-05 17:28:41 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2006-05-16 16:17:03 +00:00
|
|
|
BuildRequires: ncurses-devel, autoconf, gettext-devel, groff
|
2007-02-05 17:28:41 +00:00
|
|
|
Requires(post): /sbin/install-info
|
|
|
|
Requires(preun): /sbin/install-info
|
2004-09-09 08:56:13 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
GNU nano is a small and friendly text editor.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2007-08-22 17:53:29 +00:00
|
|
|
%patch0 -p1
|
2005-09-05 13:01:14 +00:00
|
|
|
iconv -f iso-8859-1 -t utf-8 -o nano.1.tmp doc/man/fr/nano.1 && mv nano.1.tmp doc/man/fr/nano.1
|
|
|
|
iconv -f iso-8859-1 -t utf-8 -o nanorc.5.tmp doc/man/fr/nano.1 && mv nanorc.5.tmp doc/man/fr/nanorc.5
|
2004-09-09 08:56:13 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
%configure --enable-all
|
|
|
|
make
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
make DESTDIR="%{buildroot}" install
|
|
|
|
#ln -s nano %{buildroot}%{_bindir}/pico
|
|
|
|
rm -f %{buildroot}%{_infodir}/dir
|
|
|
|
|
|
|
|
%find_lang %{name}
|
|
|
|
|
|
|
|
%post
|
|
|
|
/sbin/install-info %{_infodir}/%{name}.info.gz %{_infodir}/dir
|
2007-02-05 17:28:41 +00:00
|
|
|
exit 0
|
2004-09-09 08:56:13 +00:00
|
|
|
|
2007-02-05 17:28:41 +00:00
|
|
|
%preun
|
|
|
|
if [ $1 -eq 0 ]; then
|
|
|
|
/sbin/install-info --delete %{_infodir}/%{name}.info.gz %{_infodir}/dir
|
|
|
|
fi
|
|
|
|
exit 0
|
2004-09-09 08:56:13 +00:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
%files -f %{name}.lang
|
|
|
|
%defattr(-,root,root)
|
2005-03-02 14:15:59 +00:00
|
|
|
%doc AUTHORS BUGS COPYING ChangeLog INSTALL NEWS README THANKS TODO
|
|
|
|
%doc doc/nanorc.sample
|
|
|
|
%doc doc/faq.html
|
2004-09-09 08:56:13 +00:00
|
|
|
%{_bindir}/*
|
|
|
|
%{_mandir}/man*/*
|
2005-09-05 12:53:57 +00:00
|
|
|
%{_mandir}/fr/man*/*
|
2004-09-09 08:56:13 +00:00
|
|
|
%{_infodir}/nano.info*
|
2006-07-10 22:19:32 +00:00
|
|
|
%{_datadir}/nano
|
2004-09-09 08:56:13 +00:00
|
|
|
|
|
|
|
%changelog
|
2007-08-22 14:48:11 +00:00
|
|
|
* Wed Aug 22 2007 David Woodhouse <dwmw2@infradead.org> - 2.0.6-2
|
|
|
|
- Update licence
|
2007-08-22 17:54:30 +00:00
|
|
|
- Fix open(O_CREAT) calls without mode
|
2007-08-22 14:48:11 +00:00
|
|
|
|
2007-06-03 12:27:39 +00:00
|
|
|
* Sun Jun 03 2007 Florian La Roche <laroche@redhat.com> - 2.0.6-1
|
|
|
|
- update to 2.0.6
|
|
|
|
|
2007-02-05 17:28:41 +00:00
|
|
|
* Mon Feb 05 2007 Florian La Roche <laroche@redhat.com> - 2.0.3-1
|
|
|
|
- update to 2.0.3
|
|
|
|
- update spec file syntax, fix scripts rh#220527
|
|
|
|
|
2006-07-12 07:25:45 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.3.12-1.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-07-10 22:05:36 +00:00
|
|
|
* Mon Jul 10 2006 David Woodhouse <dwmw2@redhat.com> - 1.3.12-1
|
|
|
|
- Update to 1.3.12
|
|
|
|
|
2006-05-16 16:17:03 +00:00
|
|
|
* Tue May 16 2006 David Woodhouse <dwmw2@redhat.com> - 1.3.11-1
|
|
|
|
- Update to 1.3.11
|
|
|
|
- BuildRequires: groff (#191946)
|
|
|
|
|
2006-02-11 04:41:33 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.3.8-1.2.1
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 13:09:47 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.3.8-1.2
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2005-12-09 20:45:20 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-09-05 12:53:57 +00:00
|
|
|
* Mon Sep 5 2005 David Woodhouse <dwmw2@redhat.com> 1.3.8-1
|
2005-09-05 13:01:14 +00:00
|
|
|
- 1.3.8
|
2005-09-05 12:53:57 +00:00
|
|
|
|
2005-03-02 14:15:59 +00:00
|
|
|
* Wed Mar 2 2005 David Woodhouse <dwmw2@redhat.com> 1.3.5-0.20050302
|
|
|
|
- Update to post-1.3.5 CVS tree to get UTF-8 support.
|
|
|
|
|
2004-09-09 08:58:17 +00:00
|
|
|
* Wed Aug 04 2004 David Woodhouse <dwmw2@redhat.com> 1.2.4-1
|
|
|
|
- 1.2.4
|
|
|
|
|
2004-09-09 08:58:03 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 08:57:48 +00:00
|
|
|
* Fri Apr 02 2004 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- 1.2.3
|
|
|
|
|
2004-09-09 08:57:36 +00:00
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Mon Aug 11 2003 Bill Nottingham <notting@redhat.com> 1.2.1-4
|
|
|
|
- build in different environment
|
|
|
|
|
2004-09-09 08:56:13 +00:00
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Tue May 6 2003 Bill Nottingham <notting@redhat.com> 1.2.1-2
|
|
|
|
- description tweaks
|
|
|
|
|
|
|
|
* Mon May 5 2003 Bill Nottingham <notting@redhat.com> 1.2.1-1
|
|
|
|
- initial build, tweak upstream spec file
|