2009-10-13 11:37:22 +00:00
|
|
|
Summary: A small text editor
|
|
|
|
Name: nano
|
2015-04-14 18:29:08 +00:00
|
|
|
Version: 2.4.1
|
2015-06-17 21:28:23 +00:00
|
|
|
Release: 2%{?dist}
|
2009-11-25 17:57:33 +00:00
|
|
|
License: GPLv3+
|
2009-10-13 11:37:22 +00:00
|
|
|
Group: Applications/Editors
|
|
|
|
URL: http://www.nano-editor.org
|
2015-03-23 09:27:22 +00:00
|
|
|
Source: http://www.nano-editor.org/dist/v2.4/%{name}-%{version}.tar.gz
|
2009-10-13 11:37:22 +00:00
|
|
|
Source2: nanorc
|
2014-05-29 07:23:07 +00:00
|
|
|
Patch0: nano-2.3.3-warnings.patch
|
2010-11-22 22:15:06 +00:00
|
|
|
|
|
|
|
# http://lists.gnu.org/archive/html/nano-devel/2010-08/msg00004.html
|
|
|
|
Patch1: 0001-check-stat-s-result-and-avoid-calling-stat-on-a-NULL.patch
|
|
|
|
|
|
|
|
# http://lists.gnu.org/archive/html/nano-devel/2010-08/msg00005.html
|
|
|
|
Patch2: 0002-use-futimens-if-available-instead-of-utime.patch
|
|
|
|
|
2009-10-13 11:37:22 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2013-03-27 12:13:26 +00:00
|
|
|
BuildRequires: file-devel
|
2009-10-15 17:10:24 +00:00
|
|
|
BuildRequires: gettext-devel
|
|
|
|
BuildRequires: groff
|
|
|
|
BuildRequires: ncurses-devel
|
|
|
|
BuildRequires: sed
|
2014-05-29 07:23:07 +00:00
|
|
|
BuildRequires: texinfo
|
install everything in /usr
This patch is needed for the /usr-move feature
https://fedoraproject.org/wiki/Features/UsrMove
This package requires now 'filesystem' >= 3, which is only installable
on a system which has /bin, /sbin, /lib, /lib64 as symlinks to /usr and
not regular directories. The 'filesystem' package acts as a guard, to
prevent *this* package to be installed on old unconverted systems.
New installations will have the 'filesystem' >=3 layout right away, old
installations need to be converted with anaconda or dracut first; only
after that, the 'filesystem' package, and also *this* package can be
installed.
Packages *should* not install files in /bin, /sbin, /lib, /lib64, but
only in the corresponding directories in /usr. Packages *must* not
install conflicting files with the same names in the corresponding
directories in / and /usr. Especially compatibility symlinks must not be
installed.
Feel free to modify any of the changes to the spec file, but keep the
above in mind.
2012-01-25 18:04:55 +00:00
|
|
|
Conflicts: filesystem < 3
|
2009-10-13 11:37:22 +00:00
|
|
|
Requires(post): /sbin/install-info
|
2007-02-05 17:28:41 +00:00
|
|
|
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
|
2010-03-03 16:42:18 +00:00
|
|
|
%patch0 -p1
|
2010-11-22 22:15:06 +00:00
|
|
|
%patch1 -p1
|
|
|
|
%patch2 -p1
|
2009-12-02 11:14:16 +00:00
|
|
|
|
2008-04-04 21:09:09 +00:00
|
|
|
for f in doc/man/fr/{nano.1,nanorc.5,rnano.1} ; do
|
|
|
|
iconv -f iso-8859-1 -t utf-8 -o $f.tmp $f && mv $f.tmp $f
|
2009-09-18 18:14:09 +00:00
|
|
|
touch $f.html
|
2008-04-04 21:09:09 +00:00
|
|
|
done
|
2004-09-09 08:56:13 +00:00
|
|
|
|
2010-11-22 22:15:06 +00:00
|
|
|
# do not run autotools, we have already reflected the configure.ac
|
|
|
|
# changes in configure and config.h.in
|
|
|
|
touch -c aclocal.m4 config.h.in configure Makefile.in
|
|
|
|
|
2004-09-09 08:56:13 +00:00
|
|
|
%build
|
install everything in /usr
This patch is needed for the /usr-move feature
https://fedoraproject.org/wiki/Features/UsrMove
This package requires now 'filesystem' >= 3, which is only installable
on a system which has /bin, /sbin, /lib, /lib64 as symlinks to /usr and
not regular directories. The 'filesystem' package acts as a guard, to
prevent *this* package to be installed on old unconverted systems.
New installations will have the 'filesystem' >=3 layout right away, old
installations need to be converted with anaconda or dracut first; only
after that, the 'filesystem' package, and also *this* package can be
installed.
Packages *should* not install files in /bin, /sbin, /lib, /lib64, but
only in the corresponding directories in /usr. Packages *must* not
install conflicting files with the same names in the corresponding
directories in / and /usr. Especially compatibility symlinks must not be
installed.
Feel free to modify any of the changes to the spec file, but keep the
above in mind.
2012-01-25 18:04:55 +00:00
|
|
|
%configure
|
2009-11-25 17:57:33 +00:00
|
|
|
make %{?_smp_mflags}
|
2004-09-09 08:56:13 +00:00
|
|
|
|
|
|
|
%install
|
install everything in /usr
This patch is needed for the /usr-move feature
https://fedoraproject.org/wiki/Features/UsrMove
This package requires now 'filesystem' >= 3, which is only installable
on a system which has /bin, /sbin, /lib, /lib64 as symlinks to /usr and
not regular directories. The 'filesystem' package acts as a guard, to
prevent *this* package to be installed on old unconverted systems.
New installations will have the 'filesystem' >=3 layout right away, old
installations need to be converted with anaconda or dracut first; only
after that, the 'filesystem' package, and also *this* package can be
installed.
Packages *should* not install files in /bin, /sbin, /lib, /lib64, but
only in the corresponding directories in /usr. Packages *must* not
install conflicting files with the same names in the corresponding
directories in / and /usr. Especially compatibility symlinks must not be
installed.
Feel free to modify any of the changes to the spec file, but keep the
above in mind.
2012-01-25 18:04:55 +00:00
|
|
|
make DESTDIR="%{buildroot}" install
|
2004-09-09 08:56:13 +00:00
|
|
|
#ln -s nano %{buildroot}%{_bindir}/pico
|
|
|
|
rm -f %{buildroot}%{_infodir}/dir
|
2009-10-15 17:10:24 +00:00
|
|
|
cp %{SOURCE2} ./nanorc
|
|
|
|
|
2011-03-03 11:05:56 +00:00
|
|
|
# disable line wrapping by default and set hunspell as the default spell-checker
|
|
|
|
sed -e 's/# set nowrap/set nowrap/' \
|
|
|
|
-e 's/^#.*set speller.*$/set speller "hunspell"/' \
|
|
|
|
doc/nanorc.sample >> ./nanorc
|
2012-08-28 15:34:18 +00:00
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}
|
|
|
|
install -m 644 ./nanorc %{buildroot}%{_sysconfdir}/nanorc
|
2004-09-09 08:56:13 +00:00
|
|
|
|
|
|
|
%find_lang %{name}
|
|
|
|
|
|
|
|
%post
|
2009-09-17 11:04:42 +00:00
|
|
|
if [ -f %{_infodir}/%{name}.info.gz ]; then
|
|
|
|
/sbin/install-info %{_infodir}/%{name}.info.gz %{_infodir}/dir
|
|
|
|
fi
|
2007-02-05 17:28:41 +00:00
|
|
|
exit 0
|
2009-09-17 11:04:42 +00:00
|
|
|
|
2007-02-05 17:28:41 +00:00
|
|
|
%preun
|
|
|
|
if [ $1 -eq 0 ]; then
|
2009-09-17 11:04:42 +00:00
|
|
|
if [ -f %{_infodir}/%{name}.info.gz ]; then
|
|
|
|
/sbin/install-info --delete %{_infodir}/%{name}.info.gz %{_infodir}/dir
|
|
|
|
fi
|
2007-02-05 17:28:41 +00:00
|
|
|
fi
|
|
|
|
exit 0
|
2004-09-09 08:56:13 +00:00
|
|
|
|
|
|
|
%files -f %{name}.lang
|
2014-07-16 12:38:58 +00:00
|
|
|
%doc AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO
|
2005-03-02 14:15:59 +00:00
|
|
|
%doc doc/nanorc.sample
|
|
|
|
%doc doc/faq.html
|
2004-09-09 08:56:13 +00:00
|
|
|
%{_bindir}/*
|
2009-10-13 11:37:22 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/nanorc
|
2004-09-09 08:56:13 +00:00
|
|
|
%{_mandir}/man*/*
|
2008-04-04 21:01:54 +00:00
|
|
|
%lang(fr) %{_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
|
2015-06-17 21:28:23 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-04-14 18:29:08 +00:00
|
|
|
* Tue Apr 14 2015 Kamil Dudka <kdudka@redhat.com> - 2.4.1-1
|
|
|
|
- new upstream release
|
|
|
|
|
2015-03-23 09:27:22 +00:00
|
|
|
* Mon Mar 23 2015 Kamil Dudka <kdudka@redhat.com> - 2.4.0-1
|
|
|
|
- new upstream release
|
|
|
|
|
2015-02-21 21:20:58 +00:00
|
|
|
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.3.6-7
|
|
|
|
- Rebuilt for Fedora 23 Change
|
|
|
|
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
|
|
|
|
|
2015-01-27 17:00:16 +00:00
|
|
|
* Tue Jan 27 2015 Kamil Dudka <kdudka@redhat.com> - 2.3.6-6
|
|
|
|
- additional fixes to the file locking feature of nano (#1186384)
|
|
|
|
|
2015-01-26 14:10:26 +00:00
|
|
|
* Mon Jan 26 2015 Kamil Dudka <kdudka@redhat.com> - 2.3.6-5
|
|
|
|
- fix the file locking feature of nano (#1183320)
|
|
|
|
|
2015-01-05 13:58:15 +00:00
|
|
|
* Mon Jan 05 2015 Kamil Dudka <kdudka@redhat.com> - 2.3.6-4
|
|
|
|
- drop BR for autoconf, which is no longer needed
|
|
|
|
|
2015-01-05 13:21:03 +00:00
|
|
|
* Mon Jan 05 2015 Kamil Dudka <kdudka@redhat.com> - 2.3.6-3
|
|
|
|
- do not use closed file descriptor when setting backup's timestamp (#1177155)
|
|
|
|
|
2014-08-17 11:00:58 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-17 20:33:02 +00:00
|
|
|
* Thu Jul 17 2014 Kamil Dudka <kdudka@redhat.com> - 2.3.6-1
|
|
|
|
- new upstream release
|
|
|
|
|
2014-07-16 12:38:58 +00:00
|
|
|
* Wed Jul 16 2014 Kamil Dudka <kdudka@redhat.com> - 2.3.5-1
|
|
|
|
- new upstream release
|
|
|
|
|
2014-06-07 12:02:06 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-06-03 07:14:48 +00:00
|
|
|
* Tue Jun 03 2014 Kamil Dudka <kdudka@redhat.com> - 2.3.4-1
|
|
|
|
- new upstream release
|
|
|
|
|
2014-05-29 07:23:07 +00:00
|
|
|
* Thu May 29 2014 Kamil Dudka <kdudka@redhat.com> - 2.3.3-1
|
|
|
|
- new upstream release
|
|
|
|
|
2013-08-09 11:37:24 +00:00
|
|
|
* Fri Aug 09 2013 Kamil Dudka <kdudka@redhat.com> - 2.3.2-4
|
|
|
|
- document the --poslog (-P) option in nano.1 man page
|
|
|
|
|
2013-08-03 12:41:15 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-03-27 12:13:26 +00:00
|
|
|
* Wed Mar 27 2013 Kamil Dudka <kdudka@redhat.com> - 2.3.2-2
|
|
|
|
- add "BuildRequires: file-devel" to build libmagic support (#927994)
|
|
|
|
|
2013-03-26 15:24:39 +00:00
|
|
|
* Tue Mar 26 2013 Kamil Dudka <kdudka@redhat.com> - 2.3.2-1
|
|
|
|
- new upstream release
|
|
|
|
|
2013-02-14 07:56:23 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.1-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-08-28 15:34:18 +00:00
|
|
|
* Tue Aug 28 2012 Kamil Dudka <kdudka@redhat.com> - 2.3.1-5
|
|
|
|
- fix specfile issues reported by the fedora-review script
|
|
|
|
|
2012-07-20 03:56:21 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
install everything in /usr
This patch is needed for the /usr-move feature
https://fedoraproject.org/wiki/Features/UsrMove
This package requires now 'filesystem' >= 3, which is only installable
on a system which has /bin, /sbin, /lib, /lib64 as symlinks to /usr and
not regular directories. The 'filesystem' package acts as a guard, to
prevent *this* package to be installed on old unconverted systems.
New installations will have the 'filesystem' >=3 layout right away, old
installations need to be converted with anaconda or dracut first; only
after that, the 'filesystem' package, and also *this* package can be
installed.
Packages *should* not install files in /bin, /sbin, /lib, /lib64, but
only in the corresponding directories in /usr. Packages *must* not
install conflicting files with the same names in the corresponding
directories in / and /usr. Especially compatibility symlinks must not be
installed.
Feel free to modify any of the changes to the spec file, but keep the
above in mind.
2012-01-25 18:04:55 +00:00
|
|
|
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 2.3.1-3
|
|
|
|
- install everything in /usr
|
|
|
|
https://fedoraproject.org/wiki/Features/UsrMove
|
|
|
|
|
2012-01-13 10:49:45 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-05-11 06:53:11 +00:00
|
|
|
* Wed May 11 2011 Kamil Dudka <kdudka@redhat.com> - 2.3.1-1
|
|
|
|
- new upstream release
|
|
|
|
|
2011-03-03 11:05:56 +00:00
|
|
|
* Thu Mar 03 2011 Kamil Dudka <kdudka@redhat.com> - 2.3.0-1
|
|
|
|
- new upstream release (#680736)
|
|
|
|
- use hunspell as default spell-checker (#681000)
|
|
|
|
- fix for http://thread.gmane.org/gmane.editors.nano.devel/2911
|
|
|
|
|
2011-02-08 23:06:22 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.6-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-11-28 20:01:32 +00:00
|
|
|
* Sun Nov 28 2010 Kamil Dudka <kdudka@redhat.com> - 2.2.6-2
|
|
|
|
- fix bugs introduced by patches added in 2.2.6-1 (#657875)
|
|
|
|
|
2010-11-22 22:15:06 +00:00
|
|
|
* Mon Nov 22 2010 Kamil Dudka <kdudka@redhat.com> - 2.2.6-1
|
|
|
|
- new upstream release (#655978)
|
|
|
|
- increase code robustness (patches related to CVE-2010-1160, CVE-2010-1161)
|
|
|
|
|
2010-08-07 20:03:51 +00:00
|
|
|
* Sat Aug 07 2010 Kamil Dudka <kdudka@redhat.com> - 2.2.5-1
|
|
|
|
- new upstream release (#621857)
|
|
|
|
|
2010-04-15 18:08:21 +00:00
|
|
|
* Thu Apr 15 2010 Kamil Dudka <kdudka@redhat.com> - 2.2.4-1
|
|
|
|
- new upstream release
|
|
|
|
- CVE-2010-1160, CVE-2010-1161 (#582739)
|
|
|
|
|
2010-03-03 16:42:18 +00:00
|
|
|
* Wed Mar 03 2010 Kamil Dudka <kdudka@redhat.com> - 2.2.3-1
|
|
|
|
- new upstream release
|
|
|
|
|
2010-01-29 01:09:45 +00:00
|
|
|
* Fri Jan 29 2010 Kamil Dudka <kdudka@redhat.com> - 2.2.2-1
|
|
|
|
- new upstream release
|
|
|
|
|
2009-12-26 23:55:18 +00:00
|
|
|
* Sun Dec 27 2009 Kamil Dudka <kdudka@redhat.com> - 2.2.1-1
|
|
|
|
- new upstream release
|
|
|
|
|
2009-12-01 13:11:47 +00:00
|
|
|
* Tue Dec 01 2009 Kamil Dudka <kdudka@redhat.com> - 2.2.0-1
|
|
|
|
- new upstream release
|
|
|
|
|
2009-11-25 17:57:33 +00:00
|
|
|
* Wed Nov 25 2009 Kamil Dudka <kdudka@redhat.com> - 2.0.9-7
|
|
|
|
- sanitize specfile according to Fedora Packaging Guidelines
|
|
|
|
|
2009-10-15 17:10:24 +00:00
|
|
|
* Thu Oct 15 2009 Kamil Dudka <kdudka@redhat.com> - 2.0.9-6
|
|
|
|
- use nanorc.sample as base of /etc/nanorc
|
|
|
|
|
2009-10-13 12:27:43 +00:00
|
|
|
* Tue Oct 13 2009 Kamil Dudka <kdudka@redhat.com> - 2.0.9-5
|
|
|
|
- fix build failure of the last build
|
|
|
|
|
2009-10-13 11:37:22 +00:00
|
|
|
* Tue Oct 13 2009 Kamil Dudka <kdudka@redhat.com> - 2.0.9-4
|
|
|
|
- ship a system-wide configuration file along with the nano package
|
|
|
|
- disable line wrapping by default (#528359)
|
|
|
|
|
2009-09-21 13:50:12 +00:00
|
|
|
* Mon Sep 21 2009 Kamil Dudka <kdudka@redhat.com> - 2.0.9-3
|
|
|
|
- suppress warnings for __attribute__((warn_unused_result)) (#523951)
|
|
|
|
|
2009-09-18 18:52:30 +00:00
|
|
|
* Fri Sep 18 2009 Kamil Dudka <kdudka@redhat.com> - 2.0.9-2
|
|
|
|
- install binaries to /bin (#168340)
|
|
|
|
|
2009-09-18 18:14:09 +00:00
|
|
|
* Fri Sep 18 2009 Kamil Dudka <kdudka@redhat.com> - 2.0.9-1
|
|
|
|
- new upstream release
|
|
|
|
- dropped patch no longer needed (possible change in behavior though negligible)
|
|
|
|
- fixed broken HTML doc in FR locales (#523951)
|
|
|
|
|
2009-09-17 11:04:42 +00:00
|
|
|
* Thu Sep 17 2009 Kamil Dudka <kdudka@redhat.com> - 2.0.6-8
|
|
|
|
- do process install-info only without --excludedocs(#515943)
|
|
|
|
|
2009-07-25 15:44:28 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.6-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-26 04:13:32 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.6-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-04-04 21:01:54 +00:00
|
|
|
* Fri Apr 4 2008 Ville Skyttä <ville.skytta at iki.fi> - 2.0.6-5
|
2008-04-04 21:09:09 +00:00
|
|
|
- Mark localized man pages with %%lang, fix French nanorc(5) (#322271).
|
2008-04-04 21:01:54 +00:00
|
|
|
|
2008-02-19 02:04:34 +00:00
|
|
|
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.0.6-4
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2007-12-08 07:20:52 +00:00
|
|
|
* Fri Dec 07 2007 Jason L Tibbitts III <tibbs@math.uh.edu> - 2.0.6-3
|
|
|
|
- Pass rnano.1 through iconv to silence the final rpmlint complaint
|
|
|
|
and finish up the merge review.
|
|
|
|
|
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
|