79767e
%global devrel 1
79767e
79767e
Summary: A text-based Web browser
79767e
Name: lynx
79767e
Version: 2.8.9
79767e
Release: 4%{?dist}
79767e
License: GPLv2
79767e
Group: Applications/Internet
79767e
Source: https://invisible-mirror.net/archives/lynx/tarballs/lynx%{version}rel.%{devrel}.tar.bz2
79767e
URL: http://lynx.browser.org/
79767e
79767e
# RH specific tweaks - directory layout, utf-8 by default, misc. configuration
79767e
Patch0: lynx-2.8.9-redhat.patch
79767e
79767e
# patch preparing upstream sources for rpmbuild, in particular for parallel make
79767e
Patch1: lynx-2.8.9-build.patch
79767e
79767e
# prompt user before executing command via a lynxcgi link even in advanced mode,
79767e
# as the actual URL may not be shown but hidden behind an HTTP redirect and set
79767e
# TRUSTED_LYNXCGI:none in lynx.cfg to disable all lynxcgi URLs by default
79767e
# [CVE-2008-4690]
79767e
Patch2: lynx-CVE-2008-4690.patch
79767e
79767e
# avoid build failure caused by mistakenly excluded <locale.h>
79767e
Patch3: lynx-2.8.8-locale.patch
79767e
79767e
# fix bugs detected by static analysis (#1602612)
79767e
Patch4: lynx-2.8.9-static-analysis.patch
79767e
79767e
# fix disclosure of HTTP auth credentials via SNI data (CVE-2021-38165)
79767e
Patch5: lynx-2.8.9-CVE-2021-38165.patch
79767e
79767e
Provides: webclient
79767e
Provides: text-www-browser
79767e
BuildRequires: dos2unix
79767e
BuildRequires: gcc
79767e
BuildRequires: gettext
79767e
BuildRequires: openssl-devel
79767e
BuildRequires: ncurses-devel
79767e
BuildRequires: slang-devel
79767e
BuildRequires: telnet
79767e
BuildRequires: unzip
79767e
BuildRequires: zip
79767e
BuildRequires: zlib-devel
79767e
79767e
# provides /usr/share/doc/HTML/en-US/index.html used as STARTFILE on RHEL
79767e
%if 0%{?rhel}
79767e
Requires: redhat-indexhtml
79767e
%endif
79767e
79767e
%description
79767e
Lynx is a text-based Web browser. Lynx does not display any images,
79767e
but it does support frames, tables, and most other HTML tags. One
79767e
advantage Lynx has over graphical browsers is speed; Lynx starts and
79767e
exits quickly and swiftly displays web pages.
79767e
79767e
%prep
79767e
%setup -q -n lynx2.8.9rel.%{devrel}
79767e
79767e
%patch0 -p1
79767e
%patch1 -p1
79767e
%patch2 -p1
79767e
%patch3 -p1
79767e
%patch4 -p1
79767e
%patch5 -p1
79767e
79767e
%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}}
79767e
sed -e "s,^HELPFILE:.*,HELPFILE:file://localhost%{_pkgdocdir}/lynx_help/lynx_help_main.html,g" -i lynx.cfg
79767e
%if 0%{?rhel}
79767e
sed -e 's,^STARTFILE:.*,STARTFILE:file:/usr/share/doc/HTML/en-US/index.html,' -i lynx.cfg
79767e
%endif
79767e
79767e
%build
79767e
%configure --libdir=/etc            \
79767e
    --disable-font-switch           \
79767e
    --disable-rpath-hack            \
79767e
    --enable-addrlist-page          \
79767e
    --enable-charset-choice         \
79767e
    --enable-cgi-links              \
79767e
    --enable-cjk                    \
79767e
    --enable-debug                  \
79767e
    --enable-default-colors         \
79767e
    --enable-externs                \
79767e
    --enable-file-upload            \
79767e
    --enable-internal-links         \
79767e
    --enable-ipv6                   \
79767e
    --enable-japanese-utf8          \
79767e
    --enable-justify-elts           \
79767e
    --enable-locale-charset         \
79767e
    --enable-kbd-layout             \
79767e
    --enable-libjs                  \
79767e
    --enable-nls                    \
79767e
    --enable-nsl-fork               \
79767e
    --enable-persistent-cookies     \
79767e
    --enable-prettysrc              \
79767e
    --enable-read-eta               \
79767e
    --enable-scrollbar              \
79767e
    --enable-source-cache           \
79767e
    --enable-warnings               \
79767e
    --with-screen=ncursesw          \
79767e
    --with-ssl=%{_libdir}           \
79767e
    --with-zlib                     \
79767e
    ac_cv_path_RLOGIN=/usr/bin/rlogin
79767e
79767e
make -C po
79767e
make %{?_smp_mflags}
79767e
79767e
# remove zero-length tests files to silence rpmlint
79767e
rm -fv test/X test/nobody
79767e
79767e
%install
79767e
chmod -x samples/mailto-form.pl
79767e
make install DESTDIR=$RPM_BUILD_ROOT
79767e
79767e
# remove unneeded files with incompatible encoding
79767e
rm -f docs/{OS-390.announce,README.jp}
79767e
rm -f samples/*.bat
79767e
79767e
# convert line endings
79767e
dos2unix samples/lynx-demo.cfg
79767e
dos2unix samples/midnight.lss
79767e
79767e
# Install Lang dependent resources
79767e
mkdir -p $RPM_BUILD_ROOT/usr/share/locale/ja/LC_MESSAGES/
79767e
79767e
cat >$RPM_BUILD_ROOT%{_sysconfdir}/lynx-site.cfg <
79767e
# Place any local lynx configuration options (proxies etc.) here.
79767e
EOF
79767e
79767e
%find_lang %{name}
79767e
79767e
%files -f %{name}.lang
79767e
%doc docs README INSTALLATION samples
79767e
%doc test lynx.hlp lynx_help
79767e
%{_bindir}/lynx
79767e
%{_mandir}/*/*
79767e
%config(noreplace) %{_sysconfdir}/lynx.cfg
79767e
%config(noreplace) %{_sysconfdir}/lynx.lss
79767e
%config(noreplace,missingok) %{_sysconfdir}/lynx-site.cfg
79767e
79767e
%changelog
79767e
* Tue Aug 31 2021 Kamil Dudka <kdudka@redhat.com> - 2.8.9-4
79767e
- fix disclosure of HTTP auth credentials via SNI data (CVE-2021-38165)
79767e
79767e
* Thu Nov 08 2018 Kamil Dudka <kdudka@redhat.com> - 2.8.9-2
79767e
- fix bugs detected by static analysis (#1602612)
79767e
79767e
* Tue Jul 10 2018 Kamil Dudka <kdudka@redhat.com> - 2.8.9-1
79767e
- update to the latest upstream release
79767e
79767e
* Wed May 23 2018 Kamil Dudka <kdudka@redhat.com> - 2.8.9-0.23.dev19
79767e
- do not require 'rsh' installed at build time (#1581747)
79767e
- update to the latest upstream pre-release
79767e
79767e
* Mon Feb 19 2018 Kamil Dudka <kdudka@redhat.com> - 2.8.9-0.22.dev16
79767e
- add explicit BR for the gcc compiler
79767e
79767e
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.9-0.21.dev16
79767e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
79767e
79767e
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.9-0.20.dev16
79767e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
79767e
79767e
* Mon Jul 31 2017 Florian Weimer <fweimer@redhat.com> - 2.8.9-0.19.dev16
79767e
- Rebuild with binutils fix for ppc64le (#1475636)
79767e
79767e
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.9-0.18.dev16
79767e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
79767e
79767e
* Tue Jul 25 2017 Kamil Dudka <kdudka@redhat.com> - 2.8.9-0.17.dev16
79767e
- fix rpmlint warnings
79767e
- do not depend on perl
79767e
- update upstream project URL
79767e
- update to the latest upstream pre-release
79767e
79767e
* Wed May 17 2017 Kamil Dudka <kdudka@redhat.com> - 2.8.9-0.16.dev14
79767e
- update to the latest upstream pre-release
79767e
79767e
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.9-0.15.dev11
79767e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
79767e
79767e
* Tue Jan 24 2017 Kamil Dudka <kdudka@redhat.com> - 2.8.9-0.14.dev11
79767e
- update to the latest upstream pre-release (fixes CVE-2016-9179)
79767e
79767e
* Thu Oct 20 2016 Kamil Dudka <kdudka@redhat.com> - 2.8.9-0.13.dev9
79767e
- fix compatibility with OpenSSL 1.1
79767e
79767e
* Wed Oct 12 2016 Kamil Dudka <kdudka@redhat.com> - 2.8.9-0.12.dev9
79767e
- update to the latest upstream pre-release
79767e
79767e
* Sat Feb 06 2016 Kamil Dudka <kdudka@redhat.com> - 2.8.9-0.11.dev6
79767e
- avoid using rpath for the lynx executable
79767e
- remove zero-length tests files to silence rpmlint
79767e
79767e
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.9-0.10.dev6
79767e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
79767e
79767e
* Mon Nov 09 2015 Kamil Dudka <kdudka@redhat.com> - 2.8.9-0.9.dev6
79767e
- update to the latest upstream pre-release
79767e
79767e
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.9-0.8.dev5
79767e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
79767e
79767e
* Tue Apr 28 2015 Kamil Dudka <kdudka@redhat.com> - 2.8.9-0.7.dev5
79767e
- update to the latest upstream pre-release
79767e
79767e
* Wed Feb 11 2015 Ville Skyttä <ville.skytta@iki.fi> - 2.8.9-0.6.dev4
79767e
- do not remove -g from our CFLAGS (#1191706)
79767e
79767e
* Wed Jan 28 2015 Kamil Dudka <kdudka@redhat.com> - 2.8.9-0.5.dev4
79767e
- update to the latest upstream pre-release
79767e
- drop a compiler wrapper no longer needed
79767e
- do not override compiler/linker flags given by the build system
79767e
79767e
* Mon Jan 05 2015 Kamil Dudka <kdudka@redhat.com> - 2.8.9-0.4.dev2
79767e
- update to the latest upstream pre-release
79767e
79767e
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.9-0.3.dev1
79767e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
79767e
79767e
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.9-0.2.dev1
79767e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
79767e
79767e
* Mon Apr 28 2014 Kamil Dudka <kdudka@redhat.com> - 2.8.9-0.1.dev1
79767e
- update to the latest upstream pre-release
79767e
79767e
* Fri Aug 09 2013 Kamil Dudka <kdudka@redhat.com> - 2.8.8-0.3.dev16
79767e
- update to the latest upstream pre-release
79767e
- make the help working with unversioned docdir (#993909)
79767e
79767e
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.8-0.2.dev15
79767e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
79767e
79767e
* Wed Feb 13 2013 Kamil Dudka <kdudka@redhat.com> - 2.8.8-0.1.dev15
79767e
- update to the latest upstream pre-release
79767e
- drop applied patches
79767e
- drop lynx-2.8.6-backgrcolor.patch (#908449)
79767e
79767e
* Tue Sep 11 2012 Kamil Dudka <kdudka@redhat.com> - 2.8.7-12
79767e
- set STARTFILE to a local file when building for RHEL
79767e
79767e
* Fri Sep 07 2012 Kamil Dudka <kdudka@redhat.com> - 2.8.7-11
79767e
- fix typo in the man page (#854574)
79767e
79767e
* Tue Aug 28 2012 Kamil Dudka <kdudka@redhat.com> - 2.8.7-10
79767e
- sync the upstream tarball with the current upstream version
79767e
- fix specfile issues reported by the fedora-review script
79767e
79767e
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.7-9
79767e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
79767e
79767e
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.7-8
79767e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
79767e
79767e
* Fri May 27 2011 Kamil Dudka <kdudka@redhat.com> - 2.8.7-7
79767e
- include read-only text fields on form submission (#679266)
79767e
79767e
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.7-6
79767e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
79767e
79767e
* Wed Jul 07 2010 Kamil Dudka <kdudka@redhat.com> - 2.8.7-5
79767e
- upstream patch that limits length of parsed URIs (#605286)
79767e
79767e
* Thu Apr 08 2010 Kamil Dudka <kdudka@redhat.com> - 2.8.7-4
79767e
- allow IPv6 addresses without http:// prefix (#425879)
79767e
79767e
* Wed Apr 07 2010 Kamil Dudka <kdudka@redhat.com> - 2.8.7-3
79767e
- avoid build failure caused by mistakenly excluded <locale.h>
79767e
79767e
* Wed Jan 13 2010 Kamil Dudka <kdudka@redhat.com> - 2.8.7-2
79767e
- make it possible to delete a bookmark when ~/lynx_bookmarks.html is writable
79767e
  by group (#486070)
79767e
79767e
* Tue Jan 05 2010 Kamil Dudka <kdudka@redhat.com> - 2.8.7-1
79767e
- new upstream release
79767e
- dropped applied patches
79767e
- fixed regression from #533004
79767e
- cleanup in BuildRequires
79767e
79767e
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 2.8.6-22
79767e
- rebuilt with new openssl
79767e
79767e
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.6-21
79767e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
79767e
79767e
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.6-20
79767e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
79767e
79767e
* Sat Jan 17 2009 Tomas Mraz <tmraz@redhat.com> - 2.8.6-19
79767e
- rebuild with new openssl
79767e
79767e
* Fri Nov  7 2008 Jiri Moskovcak <jmoskovc@redhat.com> - 2.8.6-18
79767e
- Fixed CVE-2008-4690 lynx: remote arbitrary command execution.
79767e
  via a crafted lynxcgi: URL (thoger)
79767e
79767e
* Thu Aug  7 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.8.6-17
79767e
- fix license tag
79767e
79767e
* Thu May 29 2008 Jiri Moskovcak <jmoskovc@redhat.com> - 2.8.6-16
79767e
- updated to latest stable version 2.8.6rel5
79767e
- Resolves: #214205
79767e
- added build patches from Dennis Gilmore
79767e
- skipped 2 releases to correct the NVR path
79767e
79767e
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.8.6-13
79767e
- Autorebuild for GCC 4.3
79767e
79767e
* Wed Jan 30 2008 Jiri Moskovcak <jmoskovc@redhat.com> - 2.8.6-12
79767e
- added telnet, rsh, zip and unzip to BuildRequires
79767e
- Resolves: #430508
79767e
79767e
* Tue Jan  8 2008 Jiri Moskovcak <jmoskovc@redhat.com> - 2.8.6-11
79767e
- fixed crash when using formatting character '$' in translation
79767e
- Resolves: #426449
79767e
79767e
* Tue Dec 11 2007 Ivana Varekova <varekova@redhat.com> - 2.8.6-10
79767e
- add default-colors option, change default setting (#409211)
79767e
79767e
* Wed Dec 05 2007 Release Engineering <rel-eng at fedoraproject dot org> - 2.8.6-9
79767e
- Rebuild for openssl bump
79767e
79767e
* Wed Dec  5 2007 Ivana Varekova <varekova@redhat.com> - 2.8.6-8
79767e
- rebuild 
79767e
79767e
* Fri Oct 12 2007 Ivana Varekova <varekova@redhat.com> - 2.8.6-7
79767e
- add provides:text-www-browser flag
79767e
79767e
* Tue Oct  2 2007 Ivana Varekova <varekova@redhat.com> - 2.8.6-6
79767e
- fix 311031 - fix argument parsing
79767e
79767e
* Tue Aug 28 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.8.6-5
79767e
- Rebuild for selinux ppc32 issue.
79767e
79767e
* Tue Jul 17 2007 Ivana Varekova <varekova@redhat.com> - 2.8.6-4
79767e
- remove default-colors option
79767e
79767e
* Fri Feb 23 2007 Ivana Varekova <varekova@redhat.com> - 2.8.6-3
79767e
- incorporate package review feedback (#226113)
79767e
79767e
* Wed Oct 25 2006 Ivana Varekova <varekova@redhat.com> - 2.8.6-2
79767e
- add japanese unicode support (#143787)
79767e
79767e
* Tue Oct 24 2006 Ivana Varekova <varekova@redhat.com> - 2.8.6-1
79767e
- update to 2.8.6
79767e
79767e
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.8.5-28.1
79767e
- rebuild
79767e
79767e
* Tue May 30 2006 Ivana Varekova <varekova@redhat.com> - 2.8.5-28
79767e
- add buildreq gettext (#193515)
79767e
79767e
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.8.5-27.2.1
79767e
- bump again for double-long bug on ppc(64)
79767e
79767e
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.8.5-27.2
79767e
- rebuilt for new gcc4.1 snapshot and glibc changes
79767e
79767e
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
79767e
- rebuilt
79767e
79767e
* Sun Nov 13 2005 Tim Waugh <twaugh@redhat.com> 2.8.5-27
79767e
- Apply patch to fix CVE-2005-2929 (bug #172973).
79767e
79767e
* Thu Nov 10 2005 Tomas Mraz <tmraz@redhat.com> 2.8.5-26
79767e
- rebuilt against new openssl
79767e
79767e
* Wed Nov  9 2005 Tim Waugh <twaugh@redhat.com> 2.8.5-25
79767e
- Rebuild for new openssl.
79767e
79767e
* Mon Oct 17 2005 Tim Waugh <twaugh@redhat.com> 2.8.5-24
79767e
- Apply patch to fix CAN-2005-3120 (bug #170253).
79767e
79767e
* Tue Mar 29 2005 Tim Waugh <twaugh@redhat.com> 2.8.5-23
79767e
- Fixed fix for bug #90302 (bug #152146).
79767e
79767e
* Wed Mar  2 2005 Tim Waugh <twaugh@redhat.com> 2.8.5-22
79767e
- Rebuild for new GCC.
79767e
79767e
* Thu Jan  6 2005 Tim Waugh <twaugh@redhat.com> 2.8.5-21
79767e
- Fixed <option> handling (bug #90302).
79767e
79767e
* Thu Dec 30 2004 Tim Waugh <twaugh@redhat.com> 2.8.5-20
79767e
- Added --enable-locale-charset compilation option, set LOCALE_CHARSET
79767e
  on in the config file and removed i18ncfg patch (bug #124849).
79767e
79767e
* Fri Nov 19 2004 Tim Waugh <twaugh@redhat.com> 2.8.5-19
79767e
- 2.8.5rel1.  Fixes bug #139783.
79767e
79767e
* Thu Jul  8 2004 Tim Waugh <twaugh@redhat.com> 2.8.5-18
79767e
- Removed perl dependencies (bug #127423).
79767e
79767e
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
79767e
- rebuilt
79767e
79767e
* Tue May 25 2004 Tim Waugh <twaugh@redhat.com> 2.8.5-16
79767e
- No longer need lynx-284-ipv6-salen.patch.
79767e
- No longer need lynx2-8-2-telnet.patch.
79767e
79767e
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 2.8.5-15
79767e
- rebuilt
79767e
79767e
* Mon Dec  1 2003 Tim Waugh <twaugh@redhat.com> 2.8.5-14
79767e
- Updated to dev16, fixing bug #110196.
79767e
- No longer need crlf patch.
79767e
- Use shipped ja translations.
79767e
- Use %%find_lang.
79767e
- Default config file now sets UTF-8 (bug #110986).
79767e
79767e
* Fri Jun 06 2003 Adrian Havill <havill@redhat.com> 2.8.5-13
79767e
- use wide version of ncurses for UTF-8
79767e
79767e
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
79767e
- rebuilt
79767e
79767e
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
79767e
- rebuilt
79767e
79767e
* Wed Jan 22 2003 Tim Waugh <twaugh@redhat.com> 2.8.5-10
79767e
- Fix CRLF issue.
79767e
79767e
* Tue Jan  7 2003 Nalin Dahyabhai <nalin@redhat.com> 2.8.5-9
79767e
- rebuild
79767e
79767e
* Fri Dec 20 2002 Elliot Lee <sopwith@redhat.com> 2.8.5-8
79767e
- _smp_mflags
79767e
79767e
* Thu Dec 12 2002 Nalin Dahyabhai <nalin@redhat.com>
79767e
- use openssl pkg-config data, if available
79767e
79767e
* Wed Nov 20 2002 Tim Powers <timp@redhat.com>
79767e
- rebuild on all arches
79767e
79767e
* Thu Aug 08 2002 Karsten Hopp <karsten@redhat.de>
79767e
- remove menu entry (#69457)
79767e
79767e
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
79767e
- automated rebuild
79767e
79767e
* Thu May 23 2002 Tim Powers <timp@redhat.com>
79767e
- automated rebuild
79767e
79767e
* Mon May 13 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.8.5-3
79767e
- Fix build with current toolchain
79767e
79767e
* Thu Nov 22 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.8.5-2
79767e
- Update (dev5)
79767e
79767e
* Wed Oct 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.8.5-1
79767e
- Update (dev3)
79767e
- Use "display" as image viewer (#54184)
79767e
79767e
* Tue Jul 31 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.8.4-17
79767e
- 2.8.4 release - no need to ship prerelease code...
79767e
79767e
* Thu Jul 19 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.8.4-16
79767e
- update to 2.8.4p5 (bugfix release)
79767e
79767e
* Tue Jul 10 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.8.4-15
79767e
- Add site-cfg file (#43841)
79767e
79767e
* Sun Jun 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.8.4-14
79767e
- 2.8.4p2
79767e
79767e
* Thu Jun 07 2001 Florian La Roche <Florian.LaRoche@redhat.de>
79767e
- support newer gettext version
79767e
79767e
* Thu May  3 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.8.4-12
79767e
- --with-display=ncurses, fixes #37481
79767e
79767e
* Wed May  2 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.8.4-11
79767e
- Add Czech/Slovak patches from milan.kerslager@spsselib.hiedu.cz (RFE#38334)
79767e
79767e
* Sun Apr 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
79767e
- dev20
79767e
- Add ipv6 patches from Pekka Savola <pekkas@netcore.fi>:
79767e
  - enable ipv6, patch for missing sockaddr sa_len
79767e
  - buildrequires: slang-devel, zlib-devel
79767e
  (Bug #35644)
79767e
79767e
* Fri Mar  2 2001 Nalin Dahyabhai <nalin@redhat.com>
79767e
- rebuild in new environment
79767e
79767e
* Thu Jan  4 2001 Nalin Dahyabhai <nalin@redhat.com>
79767e
- Fix up more of the i18ncfg patch
79767e
79767e
* Wed Jan  3 2001 Bernhard Rosenkraenzer <bero@redhat.com>
79767e
- 2.8.4dev16
79767e
- Fix up the i18ncfg patch - segfaulting on startup is not exactly
79767e
  a nice feature.
79767e
- Mark locale related files as such
79767e
- Mark /etc/lynx.cfg.ja as %%lang(ja)
79767e
- Add BuildRequires
79767e
79767e
* Thu Dec 21 2000 Yukihiro Nakai <ynakai@redhat.com>
79767e
- Add -enable-nls --with-included-gettext
79767e
- Add i18ncfg patch
79767e
- Add Japanese resources
79767e
79767e
* Thu Oct  5 2000 Bernhard Rosenkraenzer <bero@redhat.com>
79767e
- Update build URL
79767e
- Fix help (Bug #18394)
79767e
- Replace the "index page link" (pointing to a Mosaic site with thousands
79767e
  of dead links) with a link to Google
79767e
79767e
* Sat Sep 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
79767e
- Add https:// support (#17554)
79767e
- Update to dev10
79767e
79767e
* Fri Aug  4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
79767e
- Add Swedish and German translations to desktop file, Bug 15322
79767e
79767e
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
79767e
- automatic rebuild
79767e
79767e
* Tue Jul 11 2000 Bernhard Rosenkraenzer <bero@redhat.com>
79767e
- 2.8.4.dev.4
79767e
79767e
* Mon Jul 10 2000 Bernhard Rosenkraenzer <bero@redhat.com>
79767e
- Fix up location of standard page and help page in lynx.cfg (still
79767e
  pointed at /usr/doc instead of /usr/share/doc, Bug #13227)
79767e
79767e
* Thu Jun 8 2000 Tim Powers <timp@redhat.com>
79767e
- fixed man page lolcation to be FHS compliant
79767e
- use predefined RPM macros wherever possible
79767e
- use %%makeinstall
79767e
- cleaned up files list
79767e
79767e
* Wed Apr 26 2000 Florian La Roche <Florian.LaRoche@redhat.com>
79767e
- 2.8.3rel.1
79767e
79767e
* Tue Mar 28 2000 Bernhard Rosenkraenzer <bero@redhat.com>
79767e
- 2.8.3dev23
79767e
- add URL header
79767e
79767e
* Mon Feb 07 2000 Preston Brown <pbrown@redhat.com>
79767e
- wmconfig -> desktop
79767e
79767e
* Sat Feb 05 2000 Cristian Gafton <gafton@redhat.com>
79767e
- version 2.8.3dev18
79767e
- drop the RFC compliance patch - they seemed to have done theiir own
79767e
- pray that ported patches are okay
79767e
79767e
* Mon Jan 31 2000 Bernhard Rosenkraenzer <bero@redhat.com>
79767e
- Add "passive mode ftp" option, activated by PASSIVE:TRUE in /etc/lynx.cfg
79767e
- turn on "PASSIVE:TRUE" by default
79767e
- deal with the fact that RPM compresses man pages.
79767e
79767e
* Sun Jan 16 2000 Bernhard Rosenkraenzer <bero@redhat.com>
79767e
- Add "view with less" download option
79767e
79767e
* Wed Nov  3 1999 Bernhard Rosenkraenzer <bero@redhat.com>
79767e
- Fix compliance with RFCs describing FTP.
79767e
  We can now connect to wu-ftpd >= 2.6.0 based servers.
79767e
79767e
* Wed Aug 25 1999 Bill Nottingham <notting@redhat.com>
79767e
- fix path to help file.
79767e
- turn off font switching
79767e
- disable args to telnet.
79767e
79767e
* Tue Jun 15 1999 Bill Nottingham <notting@redhat.com>
79767e
- update to 2.8.2
79767e
79767e
* Mon Mar 29 1999 Bill Nottingham <notting@redhat.com>
79767e
- apply some update patches from the lynx folks
79767e
- set user's TEMP dir to their home dir to avoid /tmp races
79767e
79767e
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
79767e
- auto rebuild in the new build environment (release 10)
79767e
79767e
* Wed Feb 24 1999 Bill Nottingham <notting@redhat.com>
79767e
- return of wmconfig
79767e
79767e
* Mon Nov 30 1998 Bill Nottingham <notting@redhat.com>
79767e
- create cookie file 0600
79767e
79767e
* Fri Nov  6 1998 Bill Nottingham <notting@redhat.com>
79767e
- update to 2.8.1rel2
79767e
79767e
* Thu Oct 29 1998 Bill Nottingham <notting@redhat.com>
79767e
- build for Raw Hide (slang-1.2.2)
79767e
79767e
* Sat Oct 10 1998 Cristian Gafton <gafton@redhat.com>
79767e
- 2.8.1pre9
79767e
- strip binaries
79767e
79767e
* Mon Oct 05 1998 Cristian Gafton <gafton@redhat.com>
79767e
- updated to lynx2.8.1pre.7.tar.gz
79767e
79767e
* Fri May 08 1998 Prospector System <bugs@redhat.com>
79767e
- translations modified for de, fr, tr
79767e
79767e
* Mon May 04 1998 Cristian Gafton <gafton@redhat.com>
79767e
- upgraded to 2.8rel3
79767e
- fixed mailto: buffer overflow (used Alan's patch)
79767e
79767e
* Fri Mar 20 1998 Cristian Gafton <gafton@redhat.com>
79767e
- updated to 2.8
79767e
- added buildroot
79767e
79767e
* Tue Jan 13 1998 Erik Troan <ewt@redhat.com>
79767e
- updated to 2.7.2
79767e
- enabled lynxcgi
79767e
79767e
* Thu Oct 23 1997 Donnie Barnes <djb@redhat.com>
79767e
- updated from 2.6 to 2.7.1
79767e
- moved /usr/lib/lynx.cfg to /etc/lynx.cfg
79767e
- build with slang instead of ncurses
79767e
- made default startup file be file:/usr/doc/HTML/index.html
79767e