Blame SPECS/elinks.spec

68f3b8
%global prerel pre6
68f3b8
68f3b8
Name:      elinks
68f3b8
Summary:   A text-mode Web browser
68f3b8
Version:   0.12
68f3b8
Release:   0.36.%{prerel}.p1%{?dist}
68f3b8
License:   GPLv2
68f3b8
URL:       http://elinks.or.cz
68f3b8
Group:     Applications/Internet
68f3b8
Source:    http://elinks.or.cz/download/elinks-%{version}%{prerel}.tar.bz2
68f3b8
Source2:   elinks.conf
68f3b8
68f3b8
BuildRequires: automake
68f3b8
BuildRequires: bzip2-devel
68f3b8
BuildRequires: expat-devel
68f3b8
BuildRequires: gpm-devel
68f3b8
BuildRequires: js-devel
68f3b8
BuildRequires: krb5-devel
68f3b8
BuildRequires: libidn-devel
68f3b8
BuildRequires: nss_compat_ossl-devel
68f3b8
BuildRequires: pkgconfig
68f3b8
BuildRequires: zlib-devel
68f3b8
Requires(preun): %{_sbindir}/alternatives
68f3b8
Requires(post): coreutils
68f3b8
Requires(post): %{_sbindir}/alternatives
68f3b8
Requires(postun): coreutils
68f3b8
Requires(postun): %{_sbindir}/alternatives
68f3b8
Provides:  webclient
68f3b8
Obsoletes: links < 1:0.97
68f3b8
Provides:  links = 1:0.97-1
68f3b8
Provides: text-www-browser
68f3b8
68f3b8
Patch0: elinks-0.11.0-ssl-noegd.patch
68f3b8
Patch1: elinks-0.10.1-utf_8_io-default.patch
68f3b8
Patch3: elinks-0.11.0-getaddrinfo.patch
68f3b8
Patch4: elinks-0.11.0-sysname.patch
68f3b8
Patch5: elinks-0.10.1-xterm.patch
68f3b8
Patch7: elinks-0.11.3-macropen.patch
68f3b8
Patch8: elinks-scroll.patch
68f3b8
Patch9: elinks-nss.patch
68f3b8
Patch10: elinks-nss-inc.patch
68f3b8
Patch11: elinks-0.12pre5-js185.patch
68f3b8
Patch12: elinks-0.12pre5-ddg-search.patch
68f3b8
Patch13: elinks-0.12pre6-autoconf.patch
68f3b8
68f3b8
%description
68f3b8
Elinks is a text-based Web browser. Elinks does not display any images,
68f3b8
but it does support frames, tables and most other HTML tags. Elinks'
68f3b8
advantage over graphical browsers is its speed--Elinks starts and exits
68f3b8
quickly and swiftly displays Web pages.
68f3b8
68f3b8
%prep
68f3b8
%setup -q -n %{name}-%{version}%{prerel}
68f3b8
68f3b8
# Prevent crash when HOME is unset (bug #90663).
68f3b8
%patch0 -p1
68f3b8
68f3b8
# UTF-8 by default
68f3b8
%patch1 -p1
68f3b8
68f3b8
# Make getaddrinfo call use AI_ADDRCONFIG.
68f3b8
%patch3 -p1
68f3b8
68f3b8
# Don't put so much information in the user-agent header string (bug #97273).
68f3b8
%patch4 -p1
68f3b8
68f3b8
# Fix xterm terminal: "Linux" driver seems better than "VT100" (#128105)
68f3b8
%patch5 -p1
68f3b8
68f3b8
# fix for open macro in new glibc
68f3b8
%patch7 -p1
68f3b8
68f3b8
#upstream fix for out of screen dialogs
68f3b8
%patch8 -p1
68f3b8
68f3b8
# Port elinks to use NSS library for cryptography (#346861) - accepted upstream
68f3b8
%patch9 -p1
68f3b8
68f3b8
# Port elinks to use NSS library for cryptography (#346861) - incremental patch
68f3b8
%patch10 -p1
68f3b8
68f3b8
# backported upstream commits f31cf6f, 2844f8b, 218a225, and 12803e4
68f3b8
%patch11 -p1
68f3b8
68f3b8
# add default "ddg" dumb/smart rewrite prefixes for DuckDuckGo (#856348)
68f3b8
%patch12 -p1
68f3b8
68f3b8
# add missing AC_LANG_PROGRAM around the first argument of AC_COMPILE_IFELSE
68f3b8
%patch13 -p1
68f3b8
68f3b8
# remove bogus serial numbers
68f3b8
sed -i 's/^# *serial [AM0-9]*$//' acinclude.m4 config/m4/*.m4
68f3b8
68f3b8
# we need to recreate autotools files because of the NSS patch
68f3b8
aclocal -I config/m4
68f3b8
autoconf
68f3b8
autoheader
68f3b8
68f3b8
%build
68f3b8
export CFLAGS="$RPM_OPT_FLAGS $(getconf LFS_CFLAGS) -D_GNU_SOURCE"
68f3b8
%configure %{?rescue:--without-gpm} --without-x --with-gssapi \
68f3b8
  --enable-bittorrent --with-nss_compat_ossl --enable-256-colors \
68f3b8
  --without-openssl --without-gnutls
68f3b8
68f3b8
# uncomment to turn off optimizations
68f3b8
#sed -i 's/-O2/-O0/' Makefile.config
68f3b8
68f3b8
MOPTS="V=1"
68f3b8
if tty >/dev/null 2>&1; then
68f3b8
    # turn on fancy colorized output only when we have a TTY device
68f3b8
    MOPTS=
68f3b8
fi
68f3b8
make %{?_smp_mflags} $MOPTS
68f3b8
68f3b8
%install
68f3b8
make install DESTDIR=$RPM_BUILD_ROOT V=1
68f3b8
rm -f $RPM_BUILD_ROOT%{_datadir}/locale/locale.alias
68f3b8
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}
68f3b8
install -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/elinks.conf
68f3b8
touch $RPM_BUILD_ROOT%{_bindir}/links
68f3b8
true | gzip -c > $RPM_BUILD_ROOT%{_mandir}/man1/links.1.gz
68f3b8
%find_lang elinks
68f3b8
68f3b8
%postun
68f3b8
if [ "$1" -ge "1" ]; then
68f3b8
	links=`readlink %{_sysconfdir}/alternatives/links`
68f3b8
	if [ "$links" == "%{_bindir}/elinks" ]; then
68f3b8
		%{_sbindir}/alternatives --set links %{_bindir}/elinks
68f3b8
	fi
68f3b8
fi
68f3b8
exit 0
68f3b8
68f3b8
%post
68f3b8
#Set up alternatives files for links
68f3b8
%{_sbindir}/alternatives --install %{_bindir}/links links %{_bindir}/elinks 90 \
68f3b8
  --slave %{_mandir}/man1/links.1.gz links-man %{_mandir}/man1/elinks.1.gz
68f3b8
links=`readlink %{_sysconfdir}/alternatives/links`
68f3b8
if [ "$links" == "%{_bindir}/elinks" ]; then
68f3b8
	%{_sbindir}/alternatives --set links %{_bindir}/elinks
68f3b8
fi
68f3b8
68f3b8
68f3b8
%preun
68f3b8
if [ $1 = 0 ]; then
68f3b8
	%{_sbindir}/alternatives --remove links %{_bindir}/elinks
68f3b8
fi
68f3b8
exit 0
68f3b8
68f3b8
%files -f elinks.lang
68f3b8
%doc README SITES TODO COPYING
68f3b8
%ghost %verify(not md5 size mtime) %{_bindir}/links
68f3b8
%{_bindir}/elinks
68f3b8
%ghost %verify(not md5 size mtime) %{_mandir}/man1/links.1.gz
68f3b8
%config(noreplace) %{_sysconfdir}/elinks.conf
68f3b8
%{_mandir}/man1/elinks.1*
68f3b8
%{_mandir}/man5/*
68f3b8
68f3b8
%changelog
68f3b8
* Wed Jun 07 2017 Yaakov Selkowitz <yselkowi@redhat.com> - 0.12-0.36.pre6.p1
68f3b8
- Rebuilt for js 48-bit VA support (#1459399)
68f3b8
68f3b8
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 0.12-0.36.pre6
68f3b8
- Mass rebuild 2014-01-24
68f3b8
68f3b8
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 0.12-0.35.pre6
68f3b8
- Mass rebuild 2013-12-27
68f3b8
68f3b8
* Mon Feb 25 2013 Kamil Dudka <kdudka@redhat.com> - 0.12-0.34.pre6
68f3b8
- update to latest upstream pre-release
68f3b8
- drop unneeded patches
68f3b8
- fix autoconf warnings
68f3b8
- explicitly disable using OpenSSL and GnuTLS
68f3b8
68f3b8
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12-0.33.pre5
68f3b8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
68f3b8
68f3b8
* Fri Jan 04 2013 Kamil Dudka <kdudka@redhat.com> - 0.12-0.32.pre5
68f3b8
- do not delegate GSSAPI credentials (CVE-2012-4545)
68f3b8
68f3b8
* Mon Oct 08 2012 Kamil Dudka <kdudka@redhat.com> - 0.12-0.31.pre5
68f3b8
- add default "ddg" dumb/smart rewrite prefixes for DuckDuckGo (#856348)
68f3b8
68f3b8
* Tue Aug 28 2012 Kamil Dudka <kdudka@redhat.com> - 0.12-0.30.pre5
68f3b8
- fix specfile issues reported by the fedora-review script
68f3b8
68f3b8
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12-0.29.pre5
68f3b8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
68f3b8
68f3b8
* Fri Mar 09 2012 Kamil Dudka <kdudka@redhat.com> - 0.12-0.28.pre5
68f3b8
- do not crash if add_heartbeat() returned NULL (#798103)
68f3b8
68f3b8
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12-0.27.pre5
68f3b8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
68f3b8
68f3b8
* Fri May 06 2011 Kamil Dudka <kdudka@redhat.com> - 0.12-0.26.pre5
68f3b8
- improve the js-1.8.5 patch (upstream commit 218a225)
68f3b8
68f3b8
* Thu Apr 21 2011 Kamil Dudka <kdudka@redhat.com> - 0.12-0.25.pre5
68f3b8
- port to js-1.8.5 API (upstream commits f31cf6f and 2844f8b)
68f3b8
68f3b8
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12-0.24.pre5
68f3b8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
68f3b8
68f3b8
* Wed Apr 07 2010 Kamil Dudka <kdudka@redhat.com> - 0.12-0.23.pre5
68f3b8
- do not print control characters to build logs
68f3b8
- avoid aclocal warnings
68f3b8
68f3b8
* Thu Jan 07 2010 Kamil Dudka <kdudka@redhat.com> - 0.12-0.22.pre5
68f3b8
- remove patch for configure script to find OpenSSL (we use NSS now)
68f3b8
- remove buildrequires for nss-devel (#550770)
68f3b8
68f3b8
* Sun Dec 27 2009 Kamil Dudka <kdudka@redhat.com> 0.12-0.21.pre5
68f3b8
- add buildrequires for js-devel (#550717) and zlib-devel
68f3b8
- build support for 256 color terminal
68f3b8
68f3b8
* Mon Dec 14 2009 Ondrej Vasik <ovasik@redhat.com> 0.12-0.20.pre5
68f3b8
- Add buildrequires for gpm-devel to enable gpm support(#547064)
68f3b8
68f3b8
* Fri Aug 14 2009 Orion Poplawski <orion@cora.nwra.com> 0.12-0.19.pre5
68f3b8
- Add Requires(post/postun): coreutils for readlink
68f3b8
68f3b8
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12-0.18.pre5
68f3b8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
68f3b8
68f3b8
* Wed Jul 08 2009 Ondrej Vasik <ovasik@redhat.com> 0.12-0.17.pre5
68f3b8
- new upstream bugfix prerelease
68f3b8
68f3b8
* Mon Jun 01 2009 Ondrej Vasik <ovasik@redhat.com> 0.12-0.16.pre4
68f3b8
- new upstream bugfix prerelease
68f3b8
- defuzz patches
68f3b8
68f3b8
* Wed Apr 29 2009 Kamil Dudka <kdudka@redhat.com> 0.12-0.15.pre3
68f3b8
- try to load default NSS root certificates if the configuration option
68f3b8
  connection.ssl.trusted_ca_file is set to an empty string (#497788)
68f3b8
68f3b8
* Tue Apr 28 2009 Ondrej Vasik <ovasik@redhat.com> 0.12-0.14.pre3
68f3b8
- enable certificate verification by default via configuration
68f3b8
  file(#495532)
68f3b8
68f3b8
* Tue Apr 28 2009 Kamil Dudka <kdudka@redhat.com> 0.12-0.13.pre3
68f3b8
- use appropriate BuildRequires for nss_compat_ossl (#495532)
68f3b8
- support for trusted CA certificates loading from file in PEM format
68f3b8
68f3b8
* Fri Apr 03 2009 Ondrej Vasik <ovasik@redhat.com> 0.12-0.12.pre3
68f3b8
- use word Elinks instead of Links in package description
68f3b8
68f3b8
* Mon Mar 30 2009 Ondrej Vasik <ovasik@redhat.com> 0.12-0.11.pre3
68f3b8
- new upstream bugfix prerelease
68f3b8
- defuzz patches
68f3b8
68f3b8
* Wed Mar 25 2009 Ondrej Vasik <ovasik@redhat.com> 0.12-0.10.pre2
68f3b8
- use better obsoletes/provides for links, use alternatives for
68f3b8
  links manpage and binary(#470703)
68f3b8
68f3b8
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12-0.9.pre2
68f3b8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
68f3b8
68f3b8
* Fri Jan 16 2009 Tomas Mraz <tmraz@redhat.com> 0.12-0.8.pre2
68f3b8
- rebuild with new openssl
68f3b8
68f3b8
* Wed Jan 14 2009 Ondrej Vasik <ovasik@redhat.com> 0.12-0.7.pre2
68f3b8
- versioned obsoletes and provides for links
68f3b8
68f3b8
* Wed Oct  1 2008 Kamil Dudka <kdudka@redhat.com> 0.12-0.6.pre2
68f3b8
- port elinks to use NSS library for cryptography (#346861)
68f3b8
68f3b8
* Mon Sep 29 2008 Ondrej Vasik <ovasik@redhat.com> 0.12-0.5.pre2
68f3b8
- new upstream bugfix prerelease
68f3b8
- Removed already applied patches for tabreload and bittorrent
68f3b8
68f3b8
* Mon Sep  1 2008 Ondrej Vasik <ovasik@redhat.com> 0.12-0.4.pre1
68f3b8
- upstream fix for bittorrent protocol
68f3b8
- upstream fix for out of screen bittorrent dialog texts
68f3b8
68f3b8
* Tue Jul 15 2008 Ondrej Vasik <ovasik@redhat.com> 0.12-0.3.pre1
68f3b8
- get rid off fuzz in patches
68f3b8
68f3b8
* Tue Jul 15 2008 Ondrej Vasik <ovasik@redhat.com> 0.12-0.2.pre1
68f3b8
- fix a crash when opening tab during page reload
68f3b8
68f3b8
* Tue Jul  1 2008 Ondrej Vasik <ovasik@redhat.com> 0.12-0.1.pre1
68f3b8
- unstable elinks-0.12 pre1, solves several long-term issues 
68f3b8
  unsolvable (or very hard to solve) in 0.11.4 (like #173411),
68f3b8
  in general is elinks-0.12pre1 considered better than 0.11.4
68f3b8
- dropped patches negotiate-auth, chunkedgzip - included in 0.12pre1,
68f3b8
  modified few others due source code changes
68f3b8
68f3b8
* Sat Jun 21 2008 Ondrej Vasik <ovasik@redhat.com> 0.11.4-1
68f3b8
- new stable upstream release
68f3b8
68f3b8
* Thu Mar  6 2008 Ondrej Vasik <ovasik@redhat.com> 0.11.4-0.4.rc1
68f3b8
- new upstream release candidate marked stable
68f3b8
68f3b8
* Thu Feb 21 2008 Ondrej Vasik <ovasik@redhat.com> 0.11.4-0.3.rc0
68f3b8
- fixed broken output for gzipped chunked pages(#410801)
68f3b8
68f3b8
* Thu Feb 07 2008 Ondrej Vasik <ovasik@redhat.com> 0.11.4-0.2.rc0
68f3b8
- used -D_GNU_SOURCE instead of ugly hack/patch to 
68f3b8
  have NI_MAXPATH defined
68f3b8
68f3b8
* Wed Feb 06 2008 Ondrej Vasik <ovasik@redhat.com> 0.11.4-0.1.rc0
68f3b8
- new version marked stable by upstream 0.11.4rc0
68f3b8
- enabled experimental bittorent support(#426702)
68f3b8
68f3b8
* Wed Dec 05 2007 Ondrej Vasik <ovasik@redhat.com> 0.11.3-7
68f3b8
- rebuilt because of new OpenSSL
68f3b8
68f3b8
* Thu Oct 11 2007 Ondrej Vasik <ovasik@redhat.com> 0.11.3-6
68f3b8
- generalized text-www-browser requirements(#174566)
68f3b8
68f3b8
* Tue Aug 28 2007 Ondrej Vasik <ovasik@redhat.com> 0.11.3-5
68f3b8
- rebuilt because of expat 2.0
68f3b8
68f3b8
* Wed Aug 22 2007 Ondrej Vasik <ovasik@redhat.com> 0.11.3-4
68f3b8
- rebuilt for F8
68f3b8
- changed license tag to GPLv2
68f3b8
68f3b8
* Thu Aug  9 2007 Ondrej Vasik <ovasik@redhat.com> 0.11.3-3
68f3b8
- fix of open macro(new glibc) by Joe Orton
68f3b8
68f3b8
* Fri Jul 27 2007 Ondrej Vasik <ovasik@redhat.com> 0.11.3-2
68f3b8
- cleanup of duplicates in buildreq, added license file to doc 
68f3b8
- (package review by Tyler Owen(#225725))
68f3b8
68f3b8
* Tue Jun  5 2007 Ondrej Vasik <ovasik@redhat.com> 0.11.3-1
68f3b8
- update to new upstream version
68f3b8
- removed patch for #210103 , included in upstream release
68f3b8
- updated patch elinks-0.11.1-negotiate.patch to pass build
68f3b8
68f3b8
* Mon Mar 26 2007 Karel Zak <kzak@redhat.com> 0.11.2-1
68f3b8
- update to new upstream version
68f3b8
- cleanup spec file
68f3b8
68f3b8
* Wed Oct 11 2006 Karel Zak <kzak@redhat.com> 0.11.1-5
68f3b8
- fix #210103 - elinks crashes when given bad HTTP_PROXY
68f3b8
68f3b8
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.11.1-4.1
68f3b8
- rebuild
68f3b8
68f3b8
* Mon Jun 12 2006 Karel Zak <kzak@redhat.com> 0.11.1-4
68f3b8
- improved negotiate-auth patch (faster now)
68f3b8
68f3b8
* Fri Jun  9 2006 Karel Zak <kzak@redhat.com> 0.11.1-3
68f3b8
- added negotiate-auth (GSSAPI) support -- EXPERIMENTAL!
68f3b8
68f3b8
* Mon May 29 2006 Karel Zak <kzak@redhat.com> 0.11.1-2
68f3b8
- update to new upstream version
68f3b8
68f3b8
* Wed May 17 2006 Karsten Hopp <karsten@redhat.de> 0.11.0-3
68f3b8
- add buildrequires bzip2-devel, expat-devel,libidn-devel
68f3b8
68f3b8
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.11.0-2.2
68f3b8
- bump again for double-long bug on ppc(64)
68f3b8
68f3b8
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.11.0-2.1
68f3b8
- rebuilt for new gcc4.1 snapshot and glibc changes
68f3b8
68f3b8
* Tue Jan 10 2006 Karel Zak <kzak@redhat.com> 0.11.0-2
68f3b8
- use upstream version of srcdir.patch
68f3b8
68f3b8
* Tue Jan 10 2006 Karel Zak <kzak@redhat.com> 0.11.0-1
68f3b8
- update to new upstream version
68f3b8
- fix 0.11.0 build system (srcdir.patch)
68f3b8
- regenerate patches:
68f3b8
     elinks-0.11.0-getaddrinfo.patch, 
68f3b8
     elinks-0.11.0-ssl-noegd.patch,
68f3b8
     elinks-0.11.0-sysname.patch,
68f3b8
     elinks-0.11.0-union.patch
68f3b8
68f3b8
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com> 0.10.6-2.1
68f3b8
- rebuilt
68f3b8
68f3b8
* Wed Nov  9 2005 Karel Zak <kzak@redhat.com> 0.10.6-2
68f3b8
- rebuild (against new openssl)
68f3b8
68f3b8
* Thu Sep 29 2005 Karel Zak <kzak@redhat.com> 0.10.6-1
68f3b8
- update to new upstream version
68f3b8
68f3b8
* Tue May 17 2005 Karel Zak <kzak@redhat.com> 0.10.3-3
68f3b8
- fix #157300 - Strange behavior on ppc64 (patch by Miloslav Trmac)
68f3b8
68f3b8
* Tue May 10 2005 Miloslav Trmac <mitr@redhat.com> - 0.10.3-2
68f3b8
- Fix checking for numeric command prefix (#152953, patch by Jonas Fonseca)
68f3b8
- Fix invalid C causing assertion errors on ppc and ia64 (#156647)
68f3b8
68f3b8
* Mon Mar 21 2005 Karel Zak <kzak@redhat.com> 0.10.3-1
68f3b8
- sync with upstream; stable 0.10.3
68f3b8
68f3b8
* Sat Mar  5 2005 Karel Zak <kzak@redhat.com> 0.10.2-2
68f3b8
- rebuilt
68f3b8
68f3b8
* Tue Feb  8 2005 Karel Zak <kzak@redhat.com> 0.10.2-1
68f3b8
- sync with upstream; stable 0.10.2
68f3b8
68f3b8
* Fri Jan 28 2005 Karel Zak <kzak@redhat.com> 0.10.1-1
68f3b8
- sync with upstream; stable 0.10.1
68f3b8
68f3b8
* Thu Oct 14 2004 Karel Zak <kzak@redhat.com> 0.9.2-2
68f3b8
- the "Linux" driver seems better than "VT100" for xterm (#128105)
68f3b8
68f3b8
* Wed Oct  6 2004 Karel Zak <kzak@redhat.com> 0.9.2-1
68f3b8
- upload new upstream tarball with stable 0.9.2 release
68f3b8
68f3b8
* Mon Sep 20 2004 Jindrich Novy <jnovy@redhat.com> 0.9.2-0.rc7.4
68f3b8
- 0.9.2rc7.
68f3b8
- changed summary in spec to get rid of #41732, #61499
68f3b8
68f3b8
* Mon Sep 13 2004 Tim Waugh <twaugh@redhat.com> 0.9.2-0.rc4.3
68f3b8
- Avoid symbol clash (bug #131170).
68f3b8
68f3b8
* Fri Aug  6 2004 Tim Waugh <twaugh@redhat.com> 0.9.2-0.rc4.2
68f3b8
- 0.9.2rc4.
68f3b8
68f3b8
* Mon Jul 12 2004 Tim Waugh <twaugh@redhat.com> 0.9.2-0.rc2.2
68f3b8
- Fix elinks -dump -stdin (bug #127624).
68f3b8
68f3b8
* Thu Jul  1 2004 Tim Waugh <twaugh@redhat.com> 0.9.2-0.rc2.1
68f3b8
- 0.9.2rc2.
68f3b8
68f3b8
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
68f3b8
- rebuilt
68f3b8
68f3b8
* Wed Jun  2 2004 Tim Waugh <twaugh@redhat.com> 0.9.1-3
68f3b8
- Build with LFS support (bug #125064).
68f3b8
68f3b8
* Fri May 28 2004 Tim Waugh <twaugh@redhat.com> 0.9.1-2
68f3b8
- Use UTF-8 by default (bug #76445).
68f3b8
68f3b8
* Thu Mar 11 2004 Tim Waugh <twaugh@redhat.com> 0.9.1-1
68f3b8
- 0.9.1.
68f3b8
- Use %%find_lang.
68f3b8
68f3b8
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
68f3b8
- rebuilt
68f3b8
68f3b8
* Mon Dec  8 2003 Tim Waugh <twaugh@redhat.com> 0.4.3-1
68f3b8
- 0.4.3.
68f3b8
- Updated pkgconfig patch.
68f3b8
68f3b8
* Mon Aug 11 2003 Tim Waugh <twaugh@redhat.com> 0.4.2-7.1
68f3b8
- Rebuilt.
68f3b8
68f3b8
* Mon Aug 11 2003 Tim Waugh <twaugh@redhat.com> 0.4.2-7
68f3b8
- Don't require XFree86-libs (bug #102072).
68f3b8
68f3b8
* Tue Jul 22 2003 Nalin Dahyabhai <nalin@redhat.com> 0.4.2-6.2
68f3b8
- rebuild
68f3b8
68f3b8
* Thu Jun 12 2003 Tim Waugh <twaugh@redhat.com> 0.4.2-6.1
68f3b8
- Rebuilt.
68f3b8
68f3b8
* Thu Jun 12 2003 Tim Waugh <twaugh@redhat.com> 0.4.2-6
68f3b8
- Make getaddrinfo call use AI_ADDRCONFIG.
68f3b8
- Don't put so much information in the user-agent header string (bug #97273).
68f3b8
68f3b8
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
68f3b8
- rebuilt
68f3b8
68f3b8
* Mon Jun  2 2003 Tim Waugh <twaugh@redhat.com> 0.4.2-4.1
68f3b8
- Rebuild again.
68f3b8
68f3b8
* Mon Jun  2 2003 Tim Waugh <twaugh@redhat.com> 0.4.2-4
68f3b8
- Rebuild.
68f3b8
68f3b8
* Mon May 12 2003 Tim Waugh <twaugh@redhat.com> 0.4.2-3
68f3b8
- Prevent crash when HOME is unset (bug #90663).
68f3b8
68f3b8
* Sun May 04 2003 Florian La Roche <Florian.LaRoche@redhat.de> 0.4.2-2
68f3b8
- use relative symlinks to elinks
68f3b8
68f3b8
* Wed Feb  5 2003 Tim Waugh <twaugh@redhat.com> 0.4.2-1
68f3b8
- 0.4.2 (bug #83273).
68f3b8
68f3b8
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 0.3.2-5
68f3b8
- rebuilt
68f3b8
68f3b8
* Thu Jan 16 2003 Tim Waugh <twaugh@redhat.com>
68f3b8
- Fix URL (bug #81987).
68f3b8
68f3b8
* Tue Jan  7 2003 Nalin Dahyabhai <nalin@redhat.com> 0.3.2-4
68f3b8
- rebuild
68f3b8
68f3b8
* Mon Dec 23 2002 Tim Waugh <twaugh@redhat.com> 0.3.2-3
68f3b8
- Fix bug #62368.
68f3b8
68f3b8
* Thu Dec 12 2002 Nalin Dahyabhai <nalin@redhat.com>
68f3b8
- use openssl's pkg-config data, if available
68f3b8
68f3b8
* Wed Nov 20 2002 Tim Powers <timp@redhat.com> 0.3.2-2
68f3b8
- rebuild on all arches
68f3b8
68f3b8
* Tue Aug 20 2002 Jakub Jelinek <jakub@redhat.com> 0.3.2-1
68f3b8
- update to 0.3.2 to fix the DNS Ctrl-C segfaults
68f3b8
- update URLs, the project moved
68f3b8
- include man page
68f3b8
68f3b8
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
68f3b8
- automated rebuild
68f3b8
68f3b8
* Thu May 23 2002 Tim Powers <timp@redhat.com>
68f3b8
- automated rebuild
68f3b8
68f3b8
* Thu Jan 24 2002 Tim Powers <timp@redhat.com>
68f3b8
- rebuilt against new openssl
68f3b8
68f3b8
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
68f3b8
- automated rebuild
68f3b8
68f3b8
* Wed Jan  2 2002 Preston Brown <pbrown@redhat.com> 0.96-4
68f3b8
- cookie fix
68f3b8
68f3b8
* Thu Sep 13 2001 Bernhard Rosenkraenzer <bero@redhat.com> 0.96-3
68f3b8
- Save some more space in rescue mode
68f3b8
68f3b8
* Wed Jul 18 2001 Bernhard Rosenkraenzer <bero@redhat.com> 0.96-2
68f3b8
- Add the links manual from links.sourceforge.net (RFE #49228)
68f3b8
68f3b8
* Tue Jul  3 2001 Bernhard Rosenkraenzer <bero@redhat.com> 0.96-1
68f3b8
- update to 0.96
68f3b8
68f3b8
* Fri Jun 22 2001 Nalin Dahyabhai <nalin@redhat.com>
68f3b8
- actually run make in build phase
68f3b8
68f3b8
* Tue Jun 12 2001 Nalin Dahyabhai <nalin@redhat.com>
68f3b8
- rebuild in new environment
68f3b8
68f3b8
* Fri Mar  2 2001 Nalin Dahyabhai <nalin@redhat.com>
68f3b8
- rebuild in new environment
68f3b8
68f3b8
* Tue Jan  9 2001 Bernhard Rosenkraenzer <bero@redhat.com>
68f3b8
- 0.95
68f3b8
68f3b8
* Mon Jan  1 2001 Bernhard Rosenkraenzer <bero@redhat.com>
68f3b8
- 0.94 final
68f3b8
68f3b8
* Sun Dec 24 2000 Bernhard Rosenkraenzer <bero@redhat.com>
68f3b8
- pre9
68f3b8
68f3b8
* Mon Dec 10 2000 Preston Brown <pbrown@redhat.com>
68f3b8
- Upgraded to pre8.
68f3b8
68f3b8
* Tue Dec  5 2000 Bernhard Rosenkraenzer <bero@redhat.com>
68f3b8
- 0.94pre7
68f3b8
- Minor fixes to the specfile (s/Copyright:/License:/)
68f3b8
- merge rescue stuff
68f3b8
68f3b8
* Fri Nov 24 2000 Bernhard Rosenkraenzer <bero@redhat.com>
68f3b8
- 0.94pre5
68f3b8
68f3b8
* Wed Nov 15 2000 Bernhard Rosenkraenzer <bero@redhat.com>
68f3b8
- 0.94pre4
68f3b8
68f3b8
* Tue Oct 24 2000 Bernhard Rosenkraenzer <bero@redhat.com>
68f3b8
- 0.94pre1
68f3b8
68f3b8
* Wed Aug  2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
68f3b8
- 0.92 (needed - prior versions won't display XHTML properly)
68f3b8
68f3b8
* Thu Jul 20 2000 Nalin Dahyabhai <nalin@redhat.com>
68f3b8
- rebuild in new environment to work around bugs
68f3b8
68f3b8
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
68f3b8
- automatic rebuild
68f3b8
68f3b8
* Thu Jun 15 2000 Bernhard Rosenkraenzer <bero@redhat.com>
68f3b8
- 0.84
68f3b8
68f3b8
* Sun Jun 11 2000 Preston Brown <pbrown@redhat.com>
68f3b8
- provides virtual package webclient.
68f3b8
68f3b8
* Thu Jan  6 2000 Bernhard Rosenkraenzer <bero@redhat.com>
68f3b8
- initial RPM