debian/ 0000775 0000000 0000000 00000000000 12251772002 007166 5 ustar debian/rules 0000775 0000000 0000000 00000013207 12251771536 010264 0 ustar #!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# This has to be exported to make some magic below work.
export DH_OPTIONS
export DH_ALWAYS_EXCLUDE=.gitignore
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
version=`dpkg-parsechangelog -ldebian/changelog | grep 'Version: ' | sed 's/Version: //g'`
# These are used for cross-compiling and for saving the configure script
# from having to guess our platform (since we know it already)
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
CFLAGS_COMMON=-g
CFLAGS_COMMON += `dpkg-buildflags --get CFLAGS`
LDFLAGS_COMMON="-Wl,-z,defs"
LDFLAGS_COMMON += `dpkg-buildflags --get LDFLAGS`
CPPFLAGS_COMMON = `dpkg-buildflags --get CPPFLAGS`
confopts = --prefix=/usr \
--mandir=\$${prefix}/share/man \
--infodir=\$${prefix}/share/info \
--sysconfdir=/etc/elinks \
--without-lzma \
--without-openssl \
--without-x \
--enable-finger \
--with-gnutls=/usr \
--disable-nntp \
--enable-88-colors \
--enable-256-colors \
--enable-leds \
--enable-html-highlight \
--enable-fsp \
--disable-smb \
--with-perl \
--without-guile \
--without-python \
--without-ruby \
--with-gssapi \
--enable-cgi \
--disable-exmode \
--disable-bittorrent \
--disable-debug \
--without-spidermonkey
save-upstream: save-stamp
save-stamp:
dh_testdir
rm -f debian/elinks.conf
cat debian/elinks.config | sed "s/%v/$(version)/g" > debian/elinks.conf
# Add here commands to configure the package.
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
[ ! -f config/config.sub ] || mv -f config/config.sub config/config.sub.ups
cp -f /usr/share/misc/config.sub config/config.sub
endif
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
[ ! -f config/config.guess ] || mv -f config/config.guess config/config.guess.ups
cp -f /usr/share/misc/config.guess config/config.guess
endif
[ ! -f config.h ] || mv -f config.h config.h.ups
[ ! -f Makefile.config ] || mv -f Makefile.config Makefile.config.ups
[ ! -f doc/man/man1/elinks.1.in ] || cp -af doc/man/man1/elinks.1.in doc/man/man1/elinks.1.in.ups
[ ! -f doc/man/man5/elinks.conf.5 ] || cp -af doc/man/man5/elinks.conf.5 doc/man/man5/elinks.conf.5.ups
[ ! -f doc/man/man5/elinkskeys.5 ] || cp -af doc/man/man5/elinkskeys.5 doc/man/man5/elinkskeys.5.ups
touch $@
#Architecture
build: build-arch build-indep
build-arch: build-arch-stamp
build-arch-stamp: save-stamp
mkdir $(CURDIR)/build-main && cd $(CURDIR)/build-main && \
$(CURDIR)/configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
$(confopts) CPPFLAGS="$(CPPFLAGS_COMMON)" CFLAGS="$(CFLAGS_COMMON)" LDFLAGS="$(LDFLAGS_COMMON)"
$(MAKE) -C $(CURDIR)/build-main V=1
touch $@
build-indep: build-indep-stamp
build-indep-stamp: save-stamp
$(MAKE) -C $(CURDIR)/build-main/doc all-docs
touch $@
clean: clean-patched
clean-patched:
dh_testdir
dh_testroot
rm -f build-arch-stamp build-indep-stamp save-stamp
rm -rf build-main
[ ! -f doc/man/man5/elinkskeys.5.ups ] || mv -f doc/man/man5/elinkskeys.5.ups doc/man/man5/elinkskeys.5
[ ! -f doc/man/man5/elinks.conf.5.ups ] || mv -f doc/man/man5/elinks.conf.5.ups doc/man/man5/elinks.conf.5
[ ! -f doc/man/man1/elinks.1.in.ups ] || mv -f doc/man/man1/elinks.1.in.ups doc/man/man1/elinks.1.in
[ ! -f Makefile.config.ups ] || mv -f Makefile.config.ups Makefile.config
[ ! -f config.h.ups ] || mv -f config.h.ups config.h
[ ! -f config/config.guess.ups ] || mv -f config/config.guess.ups config/config.guess
[ ! -f config/config.sub.ups ] || mv -f config/config.sub.ups config/config.sub
rm -f debian/elinks.conf
rm -rf debian/tmp.elinks-data
rm -rf docbook2html-dir
dh_clean
install: install-indep install-arch
install-indep:
dh_testdir
dh_testroot
dh_clean -k -i
dh_installdirs -i
# Move elinks arch-indep from temp location to elinks-data
mv -f $(CURDIR)/debian/tmp.elinks-data/usr $(CURDIR)/debian/elinks-data/
# Install elinks documentation, remove manpages (already installed in
# elinks-data)
$(MAKE) -C build-main/doc DESTDIR=$(CURDIR)/debian/elinks-doc install-doc
mv -f $(CURDIR)/debian/elinks-doc/usr/share/doc/elinks $(CURDIR)/debian/elinks-doc/usr/share/doc/elinks-doc
rm -rf $(CURDIR)/debian/elinks-doc/usr/share/man
dh_install -i
install-arch:
dh_testdir
dh_testroot
dh_clean -k -s
# Install elinks binaries and elinks.conf
$(MAKE) -C build-main DESTDIR=$(CURDIR)/debian/elinks install
install -o root -g root -p -D -m 0644 $(CURDIR)/debian/elinks.conf \
$(CURDIR)/debian/elinks/etc/elinks/elinks.conf
# Move elinks arch-indep parts to temp location for elinks-data
mkdir -p $(CURDIR)/debian/tmp.elinks-data/usr/
mv -f $(CURDIR)/debian/elinks/usr/share $(CURDIR)/debian/tmp.elinks-data/usr/
rm -f $(CURDIR)/debian/tmp.elinks-data/usr/share/locale/locale.alias
dh_link -pelinks usr/share/doc/elinks-data usr/share/doc/elinks
dh_install -s
dh_lintian -s
# Must not depend on anything. This is to be called by
# binary-arch/binary-indep
# in another 'make' thread.
binary-common:
dh_testdir
dh_testroot
dh_installchangelogs -Nelinks NEWS
dh_installdocs
dh_installexamples
dh_installmenu
dh_installmime
dh_strip
dh_compress
dh_fixperms
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
# Build architecture independant packages using the common target.
binary-indep: build-indep install-indep
$(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
# Build architecture dependant packages using the common target.
binary-arch: build-arch install-arch
$(MAKE) -f debian/rules DH_OPTIONS=-s binary-common
binary: binary-arch binary-indep
.PHONY: build clean binary-indep binary-arch binary install install-indep install-arch save-upstream
debian/watch 0000664 0000000 0000000 00000000173 12251771427 010232 0 ustar version=3
opts=dversionmangle=s/[~](pre\d+|rc\d+)\.dfsg\d+$/$1/ \
http://elinks.or.cz/download/elinks-([\d]+.*)\.tar\.gz
debian/changelog 0000664 0000000 0000000 00000126552 12251771744 011067 0 ustar elinks (0.12~pre6-4ubuntu1) trusty; urgency=low
* Merge from Debian unstable. Remaining changes:
- debian/elinks.config: Change Debian to Ubuntu for user agent.
-- Logan Rosen Wed, 11 Dec 2013 00:10:17 -0500
elinks (0.12~pre6-4) unstable; urgency=low
* Switch to source format 3 (quilt) and drop previously used custom
patch system
* Remove 01_setup-bugs-FSSTND.diff (don't hide upstream bugzilla, users
are smart enough to choose the appropriate BTS)
* Cleanup www-browser alternative upon removal, thanks Andreas Beckmann!
(Closes: #730056)
* Copy full license for the BSD-licensed code and stop referring to
/usr/share/common-licenses/BSD, spotted by Lintian
* Add Replaces/Breaks for old elinks-lite packages, thanks Andreas Beckmann!
(Closes: #730265)
-- Moritz Muehlenhoff Thu, 21 Nov 2013 00:20:46 +0100
elinks (0.12~pre6-3ubuntu1) trusty; urgency=low
* Merge from Debian unstable. Remaining changes:
- debian/elinks.config: Change Debian to Ubuntu for useragent
* Dropped change as its incorported in debian:
- debian/patches/08_524696_fix_imdb_urls.diff: Patch modified to
add DEP-3 headers and sent to Debian.
-- Bhavani Shankar Sun, 24 Nov 2013 19:43:42 +0530
elinks (0.12~pre6-3) unstable; urgency=low
* Flip Maintainers/Uploaders, Giridhar has been inactive for a while
* Drop the elinks-lite package. It was introduced nearly ten years ago
and the potential saving in disk space is negligable these days.
Also, many of the previously used external libs/bindings (Guile,
Ruby, Spidermonkey and Python) are no longer used in the current
elinks package. elinks-lite is now a transition package to elinks.
* Fix smart url for current IMDB site, thanks to Matthew Fischer for
the patch (Closes: #728143)
-- Moritz Muehlenhoff Wed, 13 Nov 2013 22:55:35 +0100
elinks (0.12~pre6-2ubuntu1) trusty; urgency=low
* Merge from Debian unstable. Remaining changes:
- debian/patches/08_524696_fix_imdb_urls.diff: Patch modified to
add DEP-3 headers and sent to Debian.
- debian/elinks.config: Change Debian to Ubuntu for useragent
-- Matthew Fischer Mon, 28 Oct 2013 13:59:09 -0700
elinks (0.12~pre6-2) unstable; urgency=low
* Remove 05_skip-xmlto-validation.diff, no longer needed. Thanks to
Ahmed El-Mahmoudy for the report.
* Pass --disable-silent-rules to configure to avoid silent build
logs. Tools like blhc and toolchain maintainers need full logs.
-- Moritz Muehlenhoff Wed, 18 Sep 2013 16:43:12 +0200
elinks (0.12~pre6-1ubuntu2) trusty; urgency=low
* Rebuild for Perl 5.18.
-- Colin Watson Mon, 21 Oct 2013 14:53:53 +0100
elinks (0.12~pre6-1ubuntu1) saucy; urgency=low
* Merge from Debian unstable. Remaining changes:
- debian/patches/08_524696_fix_imdb_urls.diff: imdb.com/Find no longer
works, fixing imdb url.
- debian/elinks.config: Change Debian to Ubuntu.
-- Logan Rosen Mon, 13 May 2013 18:51:16 -0400
elinks (0.12~pre6-1) unstable; urgency=low
* New upstream release
- Dropped 10-CVE-2012-4545.diff (included upstream)
- Dropped 07-big-endian-64-bit.diff
* Standards-Version 3.9.4 (no changes needed)
-- Moritz Muehlenhoff Thu, 09 May 2013 01:18:18 +0200
elinks (0.12~pre5-9ubuntu1) raring; urgency=low
* Merge from Debian unstable (LP: #1074357). Remaining changes:
- imdb.com/Find no longer works, fixing imdb url (LP: #524696)
* renamed 07_524696_fix_imdb_urls.diff to 08_524696_fix_imdb_urls.diff
- debian/elinks.config: Change Debian to Ubuntu, thanks to Y
Giridhar Appaji Nag (LP: #241022)
-- Vibhav Pant Mon, 05 Nov 2012 22:39:37 +0100
elinks (0.12~pre5-9) unstable; urgency=medium
* Fix CVE-2012-4545
-- Moritz Mühlenhoff Thu, 01 Nov 2012 10:53:19 +0100
elinks (0.12~pre5-8ubuntu1) quantal; urgency=low
* Merge from Debian unstable (fixing build failure). Remaining changes:
- imdb.com/Find no longer works, fixing imdb url (LP: #524696)
* renamed 07_524696_fix_imdb_urls.diff to 08_524696_fix_imdb_urls.diff
- debian/elinks.config: Change Debian to Ubuntu, thanks to Y
Giridhar Appaji Nag (LP: #241022)
-- Matthias Klose Wed, 26 Sep 2012 15:25:19 +0200
elinks (0.12~pre5-8) unstable; urgency=low
* Apply patch from Guillem Jover to switch to Lua 5.1, thanks!
(Closes: #674617)
* Enable pie and znow
* Disable support for Ruby scripting, which is not yet compatible
with Ruby 1.9. This has always been an esoteric feature anyway
(Closes: #676119)
-- Moritz Muehlenhoff Sun, 27 May 2012 12:17:42 +0200
elinks (0.12~pre5-7ubuntu1) precise; urgency=low
* Merge from Debian testing. Remaining changes:
- imdb.com/Find no longer works, fixing imdb url (LP: #524696)
* renamed 07_524696_fix_imdb_urls.diff to 08_524696_fix_imdb_urls.diff
- debian/elinks.config: Change Debian to Ubuntu, thanks to Y
Giridhar Appaji Nag (LP: #241022)
-- Chuck Short Mon, 23 Jan 2012 09:33:06 -0500
elinks (0.12~pre5-7) unstable; urgency=low
* Fix handling of CPPFLAGS, thanks to Simon Ruderich (Closes: #652449)
I won't enable pie and znow for now, they'll be activated in the
default flags at some point.
-- Moritz Muehlenhoff Mon, 19 Dec 2011 23:47:27 +0100
elinks (0.12~pre5-6) unstable; urgency=low
* Remove now obsolete 06_551238_SMJS-FTBFS.diff patch
* Stop using a hardcoded list of non-Linux architectures
for the GPM dependency (Closes: #634376)
* Stop using deprecated GNU TLS functions. Backport upstream
commits by Kalle Olavi Niemitalo. Thanks to Andreas Metzler
for the report (Closes: #624064, Closes: #624084)
* Enable hardened build flags through dpkg-buildflags
* Add a Build-Conflicts on libgc-dev (Closes: #650704)
-- Moritz Muehlenhoff Sun, 06 Nov 2011 11:12:55 +0100
elinks (0.12~pre5-5ubuntu2) precise; urgency=low
* Rebuild for Perl 5.14.
-- Colin Watson Wed, 16 Nov 2011 10:43:33 +0000
elinks (0.12~pre5-5ubuntu1) precise; urgency=low
* Merge from Debian testing. Remaining changes:
- imdb.com/Find no longer works, fixing imdb url (LP: #524696)
* renamed 07_524696_fix_imdb_urls.diff to 08_524696_fix_imdb_urls.diff
- debian/elinks.config: Change Debian to Ubuntu, thanks to Y
Giridhar Appaji Nag (LP: #241022)
* Dropped changes: package is now in universe so these packages are available
again:
- drop libfsplib-dev, libtre-dev, libmozjs-dev from build-depends
(all universe)
- debian/rules: remove --enable-fsp
-- Chuck Short Thu, 10 Nov 2011 12:19:52 +0000
elinks (0.12~pre5-5) unstable; urgency=low
* Fix sparc64 compat. Thanks to Aurelien Jarno (Closes: #596139)
-- Moritz Muehlenhoff Sat, 29 Oct 2011 17:03:02 +0200
elinks (0.12~pre5-4ubuntu1) precise; urgency=low
* Merge from debian testing.
* Remaining changes:
- imdb.com/Find no longer works, fixing imdb url (LP: #524696)
* renamed 07_524696_fix_imdb_urls.diff to 08_524696_fix_imdb_urls.diff
- debian/elinks.config: Change Debian to Ubuntu, thanks to Y
Giridhar Appaji Nag (LP: #241022)
* Dropped changes: package is now in universe so these packages are available
again:
- drop libfsplib-dev, libtre-dev, libmozjs-dev from build-depends
(all universe)
- debian/rules: remove --enable-fsp
-- Robie Basak Wed, 12 Oct 2011 14:14:16 +0100
elinks (0.12~pre5-4) unstable; urgency=low
* Acknowledge NMUs, thanks Kumar! (Closes: #617713, Closes: #613475)
* Disable support for Spidermonkey. Javascript support has always been
an experimental feature and of limited use (since most websites
which make extensive use of Javascript usually involve further
features not available). Mozilla seems to focus on a standalone
Firefox these days and the libs are treated as second class
citizens.
* Update to standards version 3.9.2 (no changes necessary)
-- Moritz Muehlenhoff Sat, 11 Jun 2011 17:08:17 +0200
elinks (0.12~pre5-3.2ubuntu1) oneiric; urgency=low
* Merge from debian testing. Remaining changes:
- imdb.com/Find no longer works, fixing imdb url (LP: #524696)
* renamed 07_524696_fix_imdb_urls.diff to 08_524696_fix_imdb_urls.diff
- drop libfsplib-dev, libtre-dev, libmozjs-dev from build-depends
(all universe)
- debian/rules: remove --enable-fsp
- debian/elinks.config: Change Debian to Ubuntu, thanks to Y
Giridhar Appaji Nag (LP: #241022)
-- Serge Hallyn Mon, 06 Jun 2011 11:42:27 -0500
elinks (0.12~pre5-3.2) unstable; urgency=medium
* Non-maintainer upload.
* Add Ben Hutchings' patch to fix default cache control problem
(Closes: #617713)
-- Kumar Appaiah Mon, 25 Apr 2011 08:54:09 -0500
elinks (0.12~pre5-3.1) unstable; urgency=low
* Non-maintainer upload.
* Fix offset in debian/patches/06_551238_SMJS-FTBFS.diff
(Closes: #613475)
-- Kumar Appaiah Fri, 15 Apr 2011 18:00:17 -0500
elinks (0.12~pre5-3) unstable; urgency=low
* First jab at fixing the spidermonkey heartbeat patch (Closes: #592466)
-- Y Giridhar Appaji Nag Fri, 10 Sep 2010 14:03:00 +0530
elinks (0.12~pre5-2ubuntu3) oneiric; urgency=low
* Rebuild for Perl 5.12.
-- Colin Watson Sun, 08 May 2011 07:39:11 +0100
elinks (0.12~pre5-2ubuntu2) maverick; urgency=low
* imdb.com/Find no longer works, fixing imdb url (LP: #524696)
-- Clint Byrum Mon, 07 Jun 2010 17:07:46 -0700
elinks (0.12~pre5-2ubuntu1) lucid; urgency=low
* Merge from debian testing. Remaining changes: LP: #510427
- drop libfsplib-dev, libtre-dev, libmozjs-dev from build-depends
(all universe)
- debian/rules: remove --enable-fsp
- debian/elinks.config: Change Debian to Ubuntu, thanks to Y
Giridhar Appaji Nag (LP: #241022)
-- Bhavani Shankar Wed, 20 Jan 2010 22:44:12 +0530
elinks (0.12~pre5-2) unstable; urgency=low
* New patch 06_550868_SMJS-FTBFS.diff to fix FTBFS caused by removing
JS_SetBranchCallback. Patch thanks to Miciah Dashiel Butler Masters
(Closes: #551238)
* Update Standards-Version to 3.8.3 (No changes required)
* Modified 01_setup-bugs-FSSTND.diff to fix a typo error.
* Add ${misc:Depends} to all binary packages, fixes lintian warning
debhelper-but-no-misc-depends
-- Y Giridhar Appaji Nag Sun, 10 Jan 2010 12:31:12 +0530
elinks (0.12~pre5-1ubuntu2) karmic; urgency=low
* debian/elinks.config: Change Debian to Ubuntu, thanks to Y Giridhar Appaji
Nag (LP: #241022)
-- Chuck Short Mon, 19 Oct 2009 15:32:47 -0400
elinks (0.12~pre5-1ubuntu1) karmic; urgency=low
* Merge from debian unstable, remaining changes: LP: #399399
- drop libfsplib-dev, libtre-dev, libmozjs-dev from build-depends
(all universe)
- debian/rules: remove --enable-fsp
-- Bhavani Shankar Tue, 14 Jul 2009 23:04:34 +0530
elinks (0.12~pre5-1) unstable; urgency=low
* New upstream release 0.12pre5
+ Fixes crash in case of OOM w/ SpiderMonkey enabled (Closes: #534835)
+ Fixes crash - get regfree from libtre instead of libc (Closes: #532502)
* Update Standards-Version to 3.8.2 (no changes required)
* Enable finger support in elinks and elinks-lite (Closes: #535750)
* Remove dh_desktop, now deprecated and is a no-op.
-- Y Giridhar Appaji Nag Sat, 11 Jul 2009 20:49:34 +0530
elinks (0.12~pre4-1ubuntu1) karmic; urgency=low
* Merge from debian unstable, remaining changes:
- drop libfsplib-dev, libtre-dev, libmozjs-dev from build-depends
(all universe)
- debian/rules: remove --enable-fsp
-- Michael Vogt Thu, 25 Jun 2009 15:58:44 +0200
elinks (0.12~pre4-1) unstable; urgency=low
* New upstream release 0.12pre4
+ Refresh patches for new upstream release
+ Includes asciidoc.py from AsciiDoc 7.1.2 (Closes: #526349)
+ With GNUTLS 2.1.7 or later disable few TLS extensions -- helps
handshaking with SSLv3-only bugzilla.novell.com (Closes: #528661)
+ Fixes crash while viewing RSS files (Closes: #514544)
+ Prevents FTBFS with gnutls26 >= 2.7.x: Build-Depends: pkg-config to
use 'pkg-config gnutls' instead of 'libgnutls-config' (Closes: #529821)
* Compile elinks-lite with --without-tre
-- Y Giridhar Appaji Nag Mon, 01 Jun 2009 16:38:57 +0530
elinks (0.12~pre3-2) unstable; urgency=low
* Add libtre-dev to Build-Depends: to support wide chars regex search
(Closes: #522052)
-- Y Giridhar Appaji Nag Tue, 31 Mar 2009 19:32:43 +0530
elinks (0.12~pre3-1) unstable; urgency=low
* Update Maintainer to official Debian ID
* Remove DM-Upload-Allowed: yes
* Update Standards-Version to 3.8.1 (no changes required)
* New upstream release
+ Fixes crash in RSS renderer (Closes: #514544)
+ Refresh patches for 0.12~pre3
* Update to debian/compat 6 and use dh_lintian instead of dh_installing
the override file.
* Use krb5-dev instead of heimdal-dev for GSSAPI (Closes: #488633)
-- Y Giridhar Appaji Nag Tue, 31 Mar 2009 00:21:30 +0530
elinks (0.12~pre2.dfsg0-1ubuntu1) jaunty; urgency=low
* Merge from Debian unstable.
* Remaining Ubuntu changes:
- Disable FSP for now, libfsplib-dev is in universe.
* Ubuntu changes dropped:
- debian/patches/13_fix_strings.diff: contrib/elinks.conf is no longer
shipped.
* Remove <> from the Build-Depends, they're in universe.
-- Steve Kowalik Tue, 04 Nov 2008 17:29:30 +1100
elinks (0.12~pre2.dfsg0-1) unstable; urgency=low
* New upstream release 0.12pre2
+ Renders UTF-8 properly (Closes: #331638)
+ Fixes decompression bug with gzip + chunked (Closes: #486917)
+ Can bind BS (8) and DEL (127) to different actions (Closes: #139984)
+ ECMAScript support is largely considered stable (Closes: #428549)
* Refresh patches for 0.12pre2
* Disable incomplete Guile and Python support in unstable
* Remove patch 14_debug_disable_Werror and disable debugging support
intended for development versions
* Disable features marked experimental (NNTP, EX mode and Bittorrent)
* Disable SMB support (libsmbclient is GPLv3+)
* Correct lots of licensing information in debian/copyright
* Adjust debian/watch file to handle dfsg and pre|rc releases
-- Y Giridhar Appaji Nag Thu, 02 Oct 2008 23:54:53 +0530
elinks (0.12~pre1-1) experimental; urgency=low
* New upstream release 0.12pre1
+ Refresh 14_debug_disable_Werror for 0.12pre1
* Rename patches to be inline with those in unstable
-- Y Giridhar Appaji Nag Sun, 21 Sep 2008 18:54:18 +0530
elinks (0.11.4-3) unstable; urgency=low
* Remove /usr/share/doc/elinks from previous install during upgrade
and link to /usr/share/doc/elinks-data (Closes: #499347)
* Refresh patches (to use git diff instead of diff -Nur) and add
comments to patches.
* Refresh 04_436817_nostrip.diff for 0.11.4 (it leaves a .orig file
otherwise)
* Build-Depend on libgpm-dev instead of transitional libgpmg1-dev
* Update Standards-Version to 3.8.0, added a README.source file
-- Y Giridhar Appaji Nag Sat, 20 Sep 2008 21:01:59 +0530
elinks (0.11.4-2) unstable; urgency=low
* Don't let xmlto validate the XML files, just produce the manpage.
(Closes: #491820)
-- Moritz Muehlenhoff Tue, 29 Jul 2008 22:39:55 +0200
elinks (0.11.4-1) unstable; urgency=low
* New upstream release:
- Drop 01_asciidoc7compatible.diff, merged upstream
- Drop 03_417789-CVE-2007-2027.diff, merged upstream
- Drop 04_380347-entity_cache-overflow.diff, merged upstream
- Drop 07_local-CGI-query-fix.diff, merged upstream
- Drop 12_338402_cfmakeraw_exotic_term.diff, merged upstream
- Drop 13_fsp-display-dir.diff, merged upstream
- Update and renumber the remaining patches
-- Moritz Muehlenhoff Sat, 21 Jun 2008 17:01:47 +0200
elinks (0.12~20080527-2) experimental; urgency=low
* Re-enable --enable-debug (it is recommended for development versions of
ELinks and adds extra checks etc.)
* Patch 14_debug_disable_Werror.diff to remove -Werror explicitly because we
now use --enable-debug.
* Enable GSSAPI (Closes: #483403)
* Disable LMZA via --without-lzma (lzma-dev in Debian from 7-zip.org doesn't
work with ELinks).
-- Y Giridhar Appaji Nag Thu, 29 May 2008 14:24:42 +0530
elinks (0.12~20080527-1) experimental; urgency=low
* Update orig to new upstream snapshot as of 20080527 (Closes: #478156)
* Delete patches not necessary for 12~20080527
+ 09_464384_alignof_off_t_FBTFS.diff
+ 10_bt_msg_id_FTBFS.diff
+ 12_338402_cfmakeraw_exotic_term.diff
* Refresh patches for 12~20080527
+ 02_setup-bugs-FSSTND.diff
+ 06_459467_ui.leds.enable_0.diff
+ 08_436817_nostrip.diff
* Disable --enable-debug as it uses -Werror and causes too many FTBFSs.
Will look at the build logs manually and file bugs upstream for the
warnings that are serious.
-- Y Giridhar Appaji Nag Tue, 27 May 2008 21:03:09 +0530
elinks (0.11.3-8ubuntu3) intrepid; urgency=low
* Rebuild for libgpmg1 -> libgpm2 transistion.
-- Steve Kowalik Tue, 22 Jul 2008 10:37:27 +1000
elinks (0.11.3-8ubuntu2) intrepid; urgency=low
* debian/patches/13_fix_strings.diff:
- Fix spelling mistakes in contib/elinks.conf. Thanks to
Andy Matteson (LP: #64590)
-- Chuck Short Fri, 20 Jun 2008 15:52:03 +0000
elinks (0.11.3-8ubuntu1) intrepid; urgency=low
* Disable FSP for now, libfsplib-dev is in universe.
-- Martin Pitt Wed, 04 Jun 2008 10:14:11 +0000
elinks (0.11.3-8) unstable; urgency=low
* Fix bash-ism in debian/rules get-orig-source target. Thanks Raphael
Geissert (Closes: #477976)
* Update 13_fsp-display-dir.diff to workaround fsplib ABI dependency on
_FILE_OFFSET_BITS. Thanks Kalle Olavi Niemitalo
* Remove perl from Build-Depends, it is build-essential
-- Y Giridhar Appaji Nag Wed, 21 May 2008 17:27:46 +0530
elinks (0.12~20080127-3) experimental; urgency=low
* Rename 09_464384_AMD64_FBTFS.diff as 09_464384_alignof_off_t_FBTFS.diff
* Refresh 12_338402_cfmakeraw_exotic_term.diff for 0.12~20080127
* Remove patch 13_fsp-display-dir.diff (not necessary for 0.12)
-- Y Giridhar Appaji Nag Sun, 27 Apr 2008 02:00:57 +0530
elinks (0.11.3-7) unstable; urgency=low
* Use '<<' versioning rather than '<=' for Conflicts/Replaces. Thanks Colin
Watson (Closes: #475520)
* Enable the FSP file transfer protocol (Closes: #478007)
+ Patch 13_fsp-display-dir.diff to fix bug in directory listing
-- Y Giridhar Appaji Nag Sun, 27 Apr 2008 01:36:11 +0530
elinks (0.11.3-6) unstable; urgency=low
* Remove 11_303164_css_display_none.diff as it is useless without the fix
for upstream bug 722.
* Change ELinks category in desktop file from Categories=Utility;Network; to
Categories=Network;WebBrowser; Thanks Franklin PIAT
(Closes: #474393)
* Steal a few .desktop file improvements and translations from Ubuntu [from
Siegfried-Angel Gevatter Pujals (RainCT) ]
* Much improved packages descriptions
-- Y Giridhar Appaji Nag Thu, 10 Apr 2008 13:34:13 +0530
elinks (0.11.3-5) unstable; urgency=low
* Pass --enable-88-colors to configure for main build (Closes: #466483)
* Patch 11_303164_css_display_none.diff to handle display:none in CSS
(Closes: #303164)
* Patch 12_338402_cfmakeraw_exotic_term.diff to fix cfmakeraw() to not
disable XON/XOFF flow control (Closes: #338402)
* Remove linda overrides files
-- Y Giridhar Appaji Nag Thu, 06 Mar 2008 12:11:51 +0530
elinks (0.12~20080127-2) experimental; urgency=low
* Remove patch 07_local-CGI-query-fix.diff (Closes: #464073)
* Patch 09_464384_AMD64_FBTFS.diff to prevent FTBFS on AMD64 because of
-Werror. Thanks Kalle Olavi Niemitalo (Closes: #464384)
* Patch 10_bt_msg_id_FTBFS.diff to prevent FTBFS because of limited range
warning and -Werror (Closes: #465719).
-- Y Giridhar Appaji Nag Thu, 28 Feb 2008 20:22:34 +0530
elinks (0.11.3-4) unstable; urgency=low
* Add a DM-Upload-Allowed: yes field
* Update 02_setup-bugs-FSSTND.diff to prevent changing contrib/elinks.conf
(it is not used anymore).
* Update 06_459467_ui.leds.enable_0.diff to set leds.enable to default: 0 in
elinks.conf(5).
* Enable Ruby scripting support and install contrib/ruby as examples.
* Enable local CGI support. That was what 07_local-CGI-query-fix.diff about
anyway :)
* Use dh_install for installing lintian/linda overrides and desktop file.
This is cleaner than doing it in debian/rules via the 'install' program.
* Add libidn11-dev do Build-Depends, IDN isn't enabled otherwise even if it
not disabled by default
-- Y Giridhar Appaji Nag Wed, 13 Feb 2008 23:09:08 +0530
elinks (0.12~20080127-1) experimental; urgency=low
* Enable support for new protocols SMB and Bittorrent
* Enable Guile, Python, Ruby and Javascript scripting functionality
* Enable extra debugging support for this experimental release
* Enable local CGI and ex mode
* Add a warning in README.Debian about experimental features
* Remove patches (fixes already present in 0.12)
+ 01_asciidoc7compatible.diff
+ 04_380347-entity_cache-overflow.diff
+ 05_257762-transparency-off.diff
* Refresh and update rest of the patches for 0.12
* Modify save-stamp and clean-patched to save/restore files that are
modified during build
* Remove the get-orig-source target because it doesn't make sense for
packages based on snapshots.
* Thanks to Ø£ØÙ…د المØÙ…ودي (Ahmed El-Mahmoudy) for the push
to create experimental packages and the patches at #408610.
-- Y Giridhar Appaji Nag Sun, 03 Feb 2008 08:17:52 +0530
elinks (0.11.3-3) unstable; urgency=low
* Remove 06_elinks.conf-parse-error.diff and use a minimal elinks.conf file
with only the user_agent setting. Thanks giggz for
the bug report and Kalle Olavi Niemitalo for suggestion (Closes: #460912)
* Rename patch 01_asciidoc-escape-FTBFS as 01_asciidoc7compatible to add a
"-a asciidoc7compatible" to ASCIIDOC_FLAGS. Thanks Kalle Olavi Niemitalo
for the suggestion.
* debian/copyright: Add 2008 to Debian packaging Copyright 'years'.
* debian/control: Remove superfluous ;a=summary suffix from gitweb URL in
Vcs-Browser:
* Really install elinks.desktop desktop file for elinks and elinks-lite
(remove elinks-lite.desktop, it is identical to elinks.desktop).
* Changed all patches from "diff -urNad" to "git diff". This will make it
easier to maintain the patches. Just modify the code in place and do a
"git diff > debian/patches/0X_foo.diff"
* Pass --enable-leds to configure. Set ui.leds.enable to 0 by default via
06_459467_ui.leds.enable_0.diff, this solves #459467 better. Thanks to
Ø£ØÙ…د المØÙ…ودي (Ahmed El-Mahmoudy) for the suggestion.
-- Y Giridhar Appaji Nag Thu, 24 Jan 2008 17:38:29 +0530
elinks (0.11.3-2) unstable; urgency=low
* Change Moritz's email ID in Uploaders to jmm@debian.org to be in sync with
his other packages
* Correction: Change Vcs-Svn in debian/control to Vcs-Git and VCS-Browser to
the gitweb URL
* Pass --disable-leds to configure, it causes a lot of wakeups on laptops.
Update 06_elinks.conf-parse-error.diff to comment ui.leds.enable option
(Closes: #459467)
* elinks-lite is Priority: extra (Policy Section 2.5: Priorities -- because
it conflicts with elinks, elinks-data and elinks-doc)
* elinks and elinks-lite Don't Provides: links and don't install a links
alternative (Closes: #154859)
* Patch debian/patches/08_436817_nostrip.diff to prevent the binaries from
being stipped unless dh_strip would want to (Closes: #436817)
-- Y Giridhar Appaji Nag Mon, 14 Jan 2008 17:06:19 +0530
elinks (0.11.3-1) unstable; urgency=low
* Adopted by Y Giridhar Appaji Nag (Closes: #451088)
+ Add Co-maintainer Moritz Muehlenhoff to Uploaders
* Documentation is now built using sources, depends on the features
configured while building elinks.
* Remove superfluous m4 and bison Build-Depends.
* Arch indep part of elinks is large, moved it to elinks-data package
+ Add lintian/linda overrides for elinks.1 man-page (installed by the
elinks-data package).
* New upstream release 0.11.3 (Closes: #429311)
+ Don't crash while sorting thru bookmarks (Closes: #315886)
+ German PO file corrections (Closes: #313696)
+ Use off_t for file size in FTP listing (Closes: #403139)
* Add get-orig-source target that gets orig source and removes debian
directory, translation files and config.{log,status} etc.
* Change from DH_COMPAT 4 to debian/compat (5)
* Move debian/watch file to version 3
* Bump up Standards-Version to 3.7.3
+ Updated menu files for the latest menu policy.
+ debian/copyright: include all the major authors and copyright holders
listed in source files. ELinks is GPL2 only (Closes: #431211)
* Add Homepage: and Vcs-*: fields to debian/control
* maint-scripts: Remove debconf dependency and moving of elinks.conf. Old
transition code, not necessary anymore.
* DH_ALWAYS_EXCLUDE=.gitignore in debian/rules (Closes: #413911)
* Add debian/patches, but not using dpatch
+ Patch 01_asciidoc-escape-FTBFS.diff: Escape characters for asciidoc
conversion (prevents FTBFS in make all-docs)
+ Patch 02_setup-bugs-FSSTND.diff: Point bugs URL to debian.org and
remove FSSTND dir in setup.h etc.
+ Patch 03_417789-CVE-2007-2027.diff: Patch for #417789 from Julien
Cristau made a diff.
+ Patch 04_380347-entity_cache-overflow.diff: Prevent a buffer overflow
in entity_cache. Thanks Kalle Olavi Niemitalo for the fix
(Closes: #380347)
+ Patch 05_257762-transparency-off.diff: Turn terminal transparency off
by default. Thanks Petr Baudis for the fix and Kalle Olavi Niemitalo
for a pointer to the fix (Closes: #257762)
+ Patch 06_elinks.conf-parse-error.diff: create elinks-lite.conf, set
config.saving_style=3 and comment options that are not valid.
+ Patch 07_local-CGI-query-fix.diff: Fix broken query parsing of file:
URIs for local CGI.
-- Y Giridhar Appaji Nag Mon, 07 Jan 2008 00:10:17 +0530
elinks (0.11.1-1.5) unstable; urgency=high
* Non-maintainer upload by testing security team.
* Fixed bug in http.c which could lead to secret information disclosure
via POST requests for https URLs (CVE-2007-5034) (Closes: #443914, #443891).
-- Nico Golde Tue, 25 Sep 2007 13:31:18 +0200
elinks (0.11.1-1.4) unstable; urgency=high
* Non-maintainer security upload.
* Don't look for gettext message catalogs in ../po/ (closes: #417789).
Thanks, Arnaud Giersch! Reference: CVE-2007-2027.
-- Julien Cristau Sun, 29 Apr 2007 00:18:54 +0200
elinks (0.11.1-1.3) unstable; urgency=low
* Non-maintainer upload.
* Fix FTBFS on GNU/kFreeBSD, patch by Petr Salinger (closes: #400872).
* Don't regenerate control at build-time, this is now forbidden by the
policy.
-- Aurelien Jarno Sun, 4 Mar 2007 12:36:59 +0100
elinks (0.11.1-1.2) unstable; urgency=high
* Non-maintainer upload.
* High-urgency upload for security bug fix.
* Configure with --disable-smb to fix security issue (CVE-2006-5925),
closes: #399188.
-- Julien Cristau Mon, 27 Nov 2006 02:32:47 +0100
elinks (0.11.1-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Clean up properly in the clean target; patch from Bart Martens.
(Closes: #397859)
-- Steinar H. Gunderson Fri, 17 Nov 2006 02:18:38 +0100
elinks (0.11.1-1) unstable; urgency=low
* New upstream version
-- Peter Gervai Wed, 24 May 2006 18:50:52 +0200
elinks (0.10.6-2) unstable; urgency=low
* Depends on debconf | debconf-2.0
-- Peter Gervai Wed, 28 Sep 2005 20:41:49 +0200
elinks (0.10.6-1) unstable; urgency=low
* New upstream release
* Really fix endless refreshing of documents (closes: #293298)
-- Peter Gervai Sat, 17 Sep 2005 17:49:52 +0200
elinks (0.10.4-7) unstable; urgency=low
* Enabled gnutls in elinks-lite per 3rd party psychological
pressure (Closes: #326855)
-- Peter Gervai Wed, 7 Sep 2005 10:41:32 +0200
elinks (0.10.4-6) unstable; urgency=high
* Recompile w/libc6 in sid (closes: #308869)
* Added autotools-dev in build-deps and try to update
basic autoconf files to support other archs
-- Peter Gervai Fri, 13 May 2005 01:12:46 +0200
elinks (0.10.4-5) unstable; urgency=low
* Removed smb config option from sample config file, not
necessary anyway (Closes: #307455)
* Added build-dep on smbclient, suggests smbclient
* Normal and lite both conflicts each other
* Enable html-highlighting
* Drop lite's big config (not strictly required)
* More elinks-lite optimalisation - less size
* Change user-agent string to debian specific
* Mess up debian/rules (almost called it "cleaning up")
(Closes: #308179)
-- Peter Gervai Thu, 12 May 2005 00:46:26 +0200
elinks (0.10.4-4) unstable; urgency=low
* Added elinks-lite: no extra dependencies (Closes: #178038, #218453)
-- Peter Gervai Thu, 28 Apr 2005 17:50:23 +0200
elinks (0.10.4-3) unstable; urgency=low
* _Really_ add the missing build-dep (Closes: #304803, #306246)
-- Peter Gervai Wed, 27 Apr 2005 02:38:31 +0200
elinks (0.10.4-2) unstable; urgency=low
* Disabled check to refuse run when root on the request of
the upstream. (Closes: #305739, #304876)
* Added missing build-dep (Closes: #304803, #306246)
* Fixed default config (Closes: #305017, #305628, #305004)
-- Peter Gervai Sun, 24 Apr 2005 19:14:16 +0200
elinks (0.10.4-1) unstable; urgency=low
* New Upstream release
* Disable SpiderMonkey because it is not useful right now (closes: #302505)
* Only read from /dev/stdin if no URL was given on the command line and
automatically allow special files to be read (closes: #296976, #297510)
* Fix repeatedly and endless refreshing of documents that triggers a
download (like sourceforge's download pages) (closes: #293298)
* Add watch file, thanks Hugo Haas
* Scrolling was heavily reworked during the 0.10 development phase and now
uses the correct width / height when scrolling (closes: #256533)
* Fix warning on 64-bit architectures (closes: #285684)
* Change verbose level to show warnings (closes: #303083)
* Include FAQ from http://elinks.or.cz/ (closes: #301861)
* Change FTP directory listing parser to Wget-based one due to licensing
issues (closes: #300889)
* Be more tolerant when handling values from the no_proxy environment
variable (closes: #218451)
* Explicitly define keyboard accelerators for buttons so that they
do not clash (closes: #270205)
-- Peter Gervai Tue, 12 Apr 2005 23:46:12 +0200
elinks (0.10.2-3) unstable; urgency=low
* Enable ECMAScript/JS engine SpiderMonkey
* Enable experimental Perl scripting
* Enable experimental NNTP handling
* Enable 256 color terminal handling
* Enable status blinkenlights ("leds")
* Refuse to run under root uid
-- Peter Gervai Fri, 25 Feb 2005 12:47:10 +0100
elinks (0.10.2-2) unstable; urgency=low
* Fixed bookmark problem (Closes: #296679)
-- Peter Gervai Fri, 25 Feb 2005 11:48:03 +0100
elinks (0.10.2-1) unstable; urgency=low
* New upstream version v0.10.2
* Cleanups by Jonas Fonseca , debian dir
installed into upstream CVS:
* Only remove CVS files from packaging directory so the package can
be built from checked out sources
* Install elinks.conf from contrib/
* Install documentation files about using ELinks from doc/
* Remove more unrelevant files from contrib/
* List docs in elinks.docs file
* Support for DEB_BUILD_OPTIONS
* Update and cleanup debian/rules
* Pass -force-html in the debian/mime mailcap entries so problems with
viewing files without an extension are fixed
* Enhance desktop file and install it in /usr/share/applications/ which
seems to be the new standard
* Many problems related to mangleme tools fixed (closes: #277283)
* Documentation updates (closes: #215619)
* Fix IPv6 URI parsing (closes: #173378)
* Send the previous URL as referer by default (closes: #198684)
* Bump up the dependency on dephelper (closes: #247280)
* Force dumping to stdout when ELinks connects to a pipe instead of a
terminal, even if the boolean argument to -dump is zero (closes: #231663)
* Suggest filename based on Content-Disposition (closes: #171571)
* Update the manpage and add -stdin command line option for compatibility
even though reads from stdin are autodetected (closes: #281010)
* Add support for recognizing mixed-case URI schemes (closes: #242140)
* Fix xterm detection code, thanks Adam Borowski (closes: #228977)
* Fix handling of id names in preformatted content (closes: #219331)
* Fix assertion failure when searching in empty documents (closes: #238281)
* Remove www-browser alternative, thanks Andreas Metzler (closes: #247495)
* Fix uncompressing of .gz files on download (closes: #221207)
-- Peter Gervai Mon, 21 Feb 2005 15:21:55 +0100
elinks (0.9.3-1) unstable; urgency=low
* New upstream release
-- Peter Gervai Sun, 21 Nov 2004 14:08:25 +0100
elinks (0.9.1+0.9.2rc4-2) unstable; urgency=low
* Fix naming (it's rc [release candidate] and not pre[release])
* Fix rules to use /etc/elinks for configure (closes: #267962)
-- Peter Gervai Wed, 11 Aug 2004 15:57:53 +0200
elinks (0.9.1+0.9.2pre4-1) unstable; urgency=low
* New upstream version 0.9.2pre4
* Remove kderemove from menu (closes: #264402)
* Recompiled with gnutls11 (closes: #263633)
* FTBFS on GNU/Hurd (and GNU/k*BSD) (closes: #262350)
-- Peter Gervai Sun, 8 Aug 2004 23:48:47 +0200
elinks (0.9.1+0.9.2pre3-1) unstable; urgency=low
* New upstream pre-release 0.9.2pre3. (closes: #262306)
* Don't read nonexistant hooks.lua (closes: #231760)
* README.Debian updated by "I forgot to read the docs"
questions (closes: #209046, #234589)
* Fix accept-charset problem (closes: #242524)
* Updated build-deps based on buildd's hints, removed xlib-dev
(closes: #231646)
* Changed 'make prefix=' to 'make DESTDIR=' in rules (closes: #234991)
* Removed outdated example dir (now included upstream)
* Removed debconf warning about cookies (closes: #235816)
-- Peter Gervai Fri, 30 Jul 2004 23:38:42 +0200
elinks (0.9.1-1) unstable; urgency=low
* New upstream release. (Closes: #226941)
* Features: Standard, IPv6, gzip, bzip2, SSL (GnuTLS), MIME (Option
system, Mailcap, Mimetypes files), Bookmarks, Cookies, Forms History,
Global History, URI rewrite, Scripting (Lua)
* Droppend dep on xlibs (no xterm title restore) (Partially fixing
#218453)
* Depends on newer gnutls10 and liblua50
-- Peter Gervai Wed, 21 Jan 2004 22:13:45 +0100
elinks (0.4.2.99-1) unstable; urgency=low
* New upstream release 0.4.3rc2
* Manpage fixed (Closes: #210305, #212491)
* No segfault when deleting bookmarks (Closes: #193119)
* Install www-browser alternative (Closes: #184981)
* ~user handled better (Closes: #181731)
* Overwrite truncates file first (Closes: #186052)
* Links/elinks selection now handled automagically (Closes: #168692)
* Elinks starts with the "goto URL" dialog, not a blank
screen (Closes: #206932)
* Remove CVS entries from package
* Numerous upstream bugfixes.
-- Peter Gervai Thu, 9 Oct 2003 00:24:41 +0200
elinks (0.4.2-1) unstable; urgency=low
* New upstream release 0.4.2.
* New style config UI (Closes: #167928, #169908)
* Includes spanish debconf template (Closes: #158576)
* Fixes linking problem with some renegade lib (Closes: #176401)
* Fixes 'bad url syntax' problem (Closes: #177335)
* Defines as /usr/bin/links alternative (Closes: #164058, #168692)
-- Peter Gervai Thu, 30 Jan 2003 01:09:34 +0100
elinks (0.3.20021004-1) unstable; urgency=low
* New upstream release 0.4pre17
* Config moved into /etc/elinks/ (closes: #158666)
-- Peter Gervai Fri, 4 Oct 2002 15:58:19 +0200
elinks (0.3.20020825-2) unstable; urgency=low
* Spanish debconf translation (closes: #158576)
-- Peter Gervai Wed, 28 Aug 2002 12:04:19 +0200
elinks (0.3.20020825-1) unstable; urgency=low
* New upstream version 0.4pre14
* Fixed a bug when elinks falls into infinite waiting loops
* Compiled against new gnutls package (patched upstream to
use gnutls/*.h... it used to work...)
-- Peter Gervai Sun, 25 Aug 2002 12:07:21 +0200
elinks (0.3.20020808-1) unstable; urgency=low
* New upstream version 0.4pre12
* Fixed lots of bugs, including stopping in the middle of a long
transfer ("slashdot problem", closes: #154938), cookie expiration
(closes: #154664), self referer problem (closes: #154778).
* Removed duplicate contrib/ dirs (bug in upstream's cvs, Closes: #154860)
-- Peter Gervai Thu, 8 Aug 2002 12:24:39 +0200
elinks (0.3.20020711-2) unstable; urgency=low
* Disabled default cookie saving to disk due Bug#154664, because
ELinks does not expire cookies all the time, and it causes
problems with remembered logins which should have been forgotten.
You have to change ~/.elinks/elinks.conf though.
-- Peter Gervai Mon, 29 Jul 2002 22:21:02 +0200
elinks (0.3.20020711-1) unstable; urgency=low
* Version 0.4pre12 upstream.
* Package separated from links. This package is _preferred_ to
the package 'links', because this contains plenty of useful
features, including cookies (save too), referer handling,
advanced configuration, LUA script language, and so on.
* Before reporting bugs please check against the bugs of
'links' and 'links-ssl'. Thank you.
-- Peter Gervai Thu, 11 Jul 2002 17:38:09 +0200
links-ssl (0.96.20020711-1) unstable; urgency=low
* New upstream release (v0.7pre12)
* Fixes DNS bug (closes: ...)
* Fix some crashes
-- Peter Gervai Thu, 11 Jul 2002 12:28:17 +0200
links-ssl (0.96.20020607-1) unstable; urgency=low
* New upstream release (v0.4pre7)
-- Peter Gervai Fri, 7 Jun 2002 17:28:18 +0000
links-ssl (0.96.20020409-2) unstable; urgency=low
* Using new lua libraries (liblua40 / liblualib40) (closes: #141327)
* Updated Readme (closes: #141542)
-- Peter Gervai Mon, 15 Apr 2002 18:42:32 +0200
links-ssl (0.96.20020409-1) unstable; urgency=low
* New upstream version (eLinks 04.pre5)
* Again, plenty of bugs fixed and some features added (including,
but not limited to history search and selection).
* Now handles spaces in filenames (closes: #92079)
* Fixes stacked FTP commands (closes: #100861), but please reopen
bug if it doesn't work correctly (I can't test it)!
-- Peter Gervai Tue, 9 Apr 2002 20:17:02 +0200
links-ssl (0.96.20020319-2) unstable; urgency=low
* I try to catch up with Lua packages, fixed build-deps (twice)
(Now Lua should work on non i386 too)
-- Peter Gervai Wed, 20 Mar 2002 02:08:55 +0100
links-ssl (0.96.20020319-1) unstable; urgency=low
* New upstream version (eLinks 0.4pre2)
* Plenty of patches included now in eLinks, most of them
provide new features, some fixes bugs (some creates them :-))
(many features hidden unless you check the docs)
* HTTP authentication (password) support (closes: #107480)
* Nonexistant frame segfault fix (closes: #128877)
* Included Links-lua docs
* Fixed rules (closes: #127206), description (closes: #127203)
-- Peter Gervai Tue, 19 Mar 2002 00:29:44 +0100
links-ssl (0.96.20011222-1.1) unstable; urgency=low
* Non-maintainer upload
* Fixes Build-Dependancy for lua-dev -> liblua4-dev (closes: #126290)
-- Joel Baker Sun, 17 Feb 2002 13:46:36 -0700
links-ssl (0.96.20011225-1) unstable; urgency=low
* New upstream version (eLinks 0.2).
* Minor bugfixes, mostly cosmetics.
-- Peter Gervai Tue, 25 Dec 2001 02:29:05 +0100
links-ssl (0.96.20011222-1) unstable; urgency=low
* Changed to packaging the actively developed branch of Links,
which includes Lua patches and other goodies. Unless it breaks
or behaves unacceptable I try to keep this packaged, as the original
release does not get its bugs fixed no matter what....
* Lots of bugfixes, see Changelog
* Fixed config file example of gif to use mime-type (closes: #125661)
-- Peter Gervai Sat, 22 Dec 2001 01:22:51 +0100
links-ssl (0.96-1) unstable; urgency=low
* New upstream release
-- Peter Gervai Wed, 4 Jul 2001 00:49:37 +0200
links-ssl (0.95.1-3) unstable; urgency=low
* Changed links.desktop to links-ssl.desktop
* links-ssl now provides links (closes: #102600)
-- Peter Gervai Wed, 27 Jun 2001 21:10:41 +0200
links-ssl (0.95.1-2) unstable; urgency=high
* Now everyone see I never tried KDE :) desktop file fixed
(closes: #101964)
-- Peter Gervai Sat, 23 Jun 2001 12:17:50 +0200
links-ssl (0.95.1-1) unstable; urgency=low
* New upstream version 0.96pre7
* Build depends libgpmg1-dev [!hurd-i386] (closes: #99961, #95977)
* Install KDE menu (closes: #96494)
-- Peter Gervai Fri, 8 Jun 2001 00:25:45 +0200
links-ssl (0.95-3) unstable; urgency=low
* fixes SIGSEGV due ssl libs
-- Peter Gervai Mon, 5 Mar 2001 14:28:17 +0100
links-ssl (0.95-2) unstable; urgency=low
* Rebuilt using libssl096 (closes: #82079)
* Fixed build dependency on libssl096-dev and
libgpmg1-dev (closes: #82080)
* Hopefully not killing the Bugfree(tm) katie install
mechanism by using consistent maintaner address. ;-)
-- Peter Gervai Tue, 16 Jan 2001 19:58:19 +0100
links-ssl (0.95-1) unstable; urgency=low
* New upstream version.
* build depends on debhelper (closes: #81231)
-- Peter Gervai Thu, 4 Jan 2001 03:15:52 +0100
links-ssl (0.94-0pre9) unstable; urgency=low
* New upstream version.
* Changelog split from links (-plain)
* Removed "unofficial" patches to match upstream version, as
the author seems to be working again and including submitted
patches to mainstream. (closes: #80005, #79853)
* Enter key now submits again (closes: #75225)
* Pathless URL's aren't cut (closes: #75546)
* Different xterm detection (closes: #79687)
* Updated manpage
-- Peter Gervai Wed, 3 Jan 2001 19:00:58 +0100
debian/compat 0000664 0000000 0000000 00000000002 12251771427 010376 0 ustar 6
debian/README.source 0000664 0000000 0000000 00000001231 12251771427 011354 0 ustar To add a patch, modify the files appropriately in the git repository and
redirect "git diff" to XY_your_patch_name.diff and drop the diff file in
the debian/patches directory. XY should be the next number in series of
diff-file prefixes already in debian/patches.
To apply patches, use debian/rules patch
To de-apply patches, use debian/rules unpatch or debian/rules clean
To remove a patch, just delete it from the debian/patches directory.
To modify an existing patch, apply it to the source tree, do the extra
modifications to the source and over-write the existing patch file with
the new "git diff"
Patches are applies in the sorted order of their names.
debian/elinks.install 0000664 0000000 0000000 00000000055 12251771427 012055 0 ustar debian/elinks.desktop usr/share/applications
debian/elinks-doc.docs 0000664 0000000 0000000 00000000012 12251771427 012073 0 ustar doc/*.txt
debian/copyright 0000664 0000000 0000000 00000014156 12251771536 011143 0 ustar This package was debianized by Peter Gervai on
Mon, 29 Nov 1999 12:16:46 +0100.
It was downloaded from http://elinks.or.cz/
Upstream Authors:
Jonas Fonseca
José Luis González González
Peter Wang
Petr Baudis
Mikulas Patocka
Miciah Dashiel Butler Masters
Witold Filipczyk
Sergei Borushevsky
Laurent Monin
Karsten Schölzel
Kalle Olavi Niemitalo
Fabio Bonelli
Cliff Cunnington
And may others (See AUTHORS file for complete list)
Copyright:
Copyright (C) 2003-2004, The ELinks Project
Copyright (C) 2002-2003, Laurent Monin
Copyright (C) 2001-2004, Petr Baudis
Copyright (C) 2000-2001, Kungliga Tekniska Högskolan
Copyright (C) 1999-2002, Mikulas Patocka
Copyright (C) 1996-2000, Michael R. Elkins
Copyright (C) 1995-2002, Jean-loup Gailly
Copyright (C) 1995-1997, 2000-2001, Free Software Foundation, Inc.
Copyright (C) 1995-1999, Cryptography Research, Inc.
Copyright (C) 1995, Patrick Powell
Copyright (C) 1991-2001, Unicode, Inc.
Copyright (C) 1991-1999, Microsoft, Inc.
License:
ELinks is licensed under the GNU GPLv2 (exceptions follow)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; unless explicitly stated otherwise
elsewhere (in the AUTHORS file), only version 2 of the License (not
version 3.x etc.) is the valid version of the GNU General Public
License for ELinks.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
with the Debian GNU/Linux distribution in the file
/usr/share/common-licenses/GPL-2; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
src/osdep/getifaddrs.c and src/osdep/getifaddrs.h are licensed under
the following license:
/*
* Copyright (c) 2000 - 2001 Kungliga Tekniska Högskolan
* (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the Institute nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
The following files are under Public domain: src/util/md5.c
contrib/LinksOS2Icon.zip Unicode/entities.txt
src/util/sha1.c and src/util/sha1.h are also available under the
Mozilla Public License v1.1
doc/tools/help2xml po/perl/msgaccel-check and po/perl/msgaccel-prepare
are under the ISC licence
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Unicode/*.cp are licensed under The Unicode Consortium license
This file is provided as-is by Unicode, Inc. (The Unicode Consortium).
No claims are made as to fitness for any particular purpose. No
warranties of any kind are expressed or implied. The recipient
agrees to determine applicability of information provided. If this
file has been provided on optical media by Unicode, Inc., the sole
remedy for any claim will be exchange of defective media within 90
days of receipt.
Unicode, Inc. hereby grants the right to freely use the information
supplied in this file in the creation of products supporting the
Unicode Standard, and to make copies of this file in any form for
internal or external distribution as long as this notice remains
attached.
The Debian packaging is
Copyright (C) 1999-2007, Peter Gervai
Copyright (C) 2007-2009, Y Giridhar Appaji Nag and
is licensed under the GNU GPL, either version 2 of the License, or (at
your option) any later version; see `/usr/share/common-licenses/GPL-2'.
debian/elinks.mime 0000664 0000000 0000000 00000000352 12251771427 011336 0 ustar text/html; /usr/bin/elinks -force-html %s; needsterminal; description=HTML Text; nametemplate=%s.html; priority=4
text/html; /usr/bin/elinks -force-html -dump %s; copiousoutput; description=HTML Text; nametemplate=%s.html; priority=3
debian/source/ 0000775 0000000 0000000 00000000000 12251772002 010466 5 ustar debian/source/format 0000664 0000000 0000000 00000000014 12251771536 011707 0 ustar 3.0 (quilt)
debian/elinks.postinst 0000664 0000000 0000000 00000001206 12251771427 012271 0 ustar #!/bin/sh
set -e
case "$1" in
configure)
update-alternatives --quiet \
--install /usr/bin/www-browser www-browser /usr/bin/elinks 35 \
--slave /usr/share/man/man1/www-browser.1.gz www-browser.1.gz /usr/share/man/man1/elinks.1.gz
if [ -d /usr/share/doc/elinks -a ! -L /usr/share/doc/elinks ] ; then
rmdir /usr/share/doc/elinks
ln -s /usr/share/doc/elinks-data /usr/share/doc/elinks
fi
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 0
;;
esac
#DEBHELPER#
exit 0
debian/elinks.prerm 0000664 0000000 0000000 00000000243 12251771536 011534 0 ustar #!/bin/sh
set -e
case "$1" in
remove|deconfigure)
update-alternatives --quiet --remove www-browser /usr/bin/elinks
;;
*)
esac
#DEBHELPER# debian/elinks-data.README.Debian 0000664 0000000 0000000 00000003605 12251771427 013440 0 ustar elinks for Debian
-----------------
ELinks is a code fork of Links, the original character mode browser of
Mikulas Patocka. ELinks provides lots of new features over the original
Links codebase, and changes are more rapid. Some believes that Links is
more stable because of the few feature change. YMMW.
* * *
-- Y Giridhar Appaji Nag Thu, 03 Jan 2008 17:01:37 +0530
Do not forget to setup after the first install: press F9, go to the Setup
menu, and set Linux console, default display character set and others. (An
example default config is provided in /etc/elinks/elinks.conf)
To be able to cut&paste with gpm, use SHIFT+MOUSE together and it'll
behave as without gpm.
With the examples/mailcap.pl you can convert the /etc/mailcap file to
elinks.conf format, and append to your config, until it gets supported.
-- Peter Gervai , Thu, 9 Oct 2003 01:17:26 +0200
Some questions from bugreports:
===============================
Q: Where did the download manager/proxy settings/whatever disappear?
A: Please check the menus. Download manager is under Tools>Download, proxy
settings is at Setup>Options>Protocols>HTTP>Proxy>Host and port.
Familiarize yourself with the options manager. :-)
(with contribution by Jonas Fonseca)
Q: The "move" doesn't work in the bookmark manager.
A: Install the elinks-doc package and read the bookmarks section of the
manual to learn how to use this unintuitive feature.
(contributed by Miciah Dashiel Butler Masters)
-- Peter Gervai , Wed, 7 Apr 2004 13:40:56 +0200
Q: What happened to the links alternative?
A: Beginning 0.11.3-2, ELinks no longer installs the links alternative
and doesn't provide links. ELinks should be invoked as "elinks" and
the links package can be installed alongside elinks.
-- Y Giridhar Appaji Nag Wed, 23 Jan 2008 17:23:08 +0530
debian/elinks.desktop 0000664 0000000 0000000 00000000752 12251771427 012064 0 ustar [Desktop Entry]
Version=1.0
Type=Application
Name=ELinks Web Browser
Name[ca]=Navegador web ELinks
Name[de]=ELinks Webbrowser
Name[es]=Navegador web ELinks
Categories=Network;WebBrowser;
GenericName=Web Browser
GenericName[ca]=Navegador web
GenericName[de]=Webbrowser
GenericName[es]=Navegador web
Comment=Browse the web in text mode
Comment[ca]=Navegeu per el web en mode text
Comment[es]=Navega por el web en modo texto
Exec=/usr/bin/elinks %u
Terminal=true
Icon=html
MimeType=text/html;
debian/elinks-data.docs 0000664 0000000 0000000 00000000033 12251771427 012242 0 ustar AUTHORS
README
THANKS
TODO
debian/elinks.config 0000664 0000000 0000000 00000001745 12251771427 011663 0 ustar ## ELinks configuration file
## See elinks.conf(5) and the output of "elinks -config-dump" for a list
## of all the supported options, their possible values and the defaults.
## protocol.http.user_agent
# Change the User Agent ID. That means identification string, which
# is sent to HTTP server when a document is requested. The 'textmode'
# token in the first field is our silent attempt to establish this as
# a standard for new textmode user agents, so that the webmasters can
# have just a single uniform test for these if they are ie. pushing
# some lite version to them automagically.
# %v in the string means ELinks version
# %s in the string means system identification
# %t in the string means size of the terminal
# %b in the string means number of bars displayed by ELinks
# Use " " if you don't want any User-Agent header to be sent at all.
set protocol.http.user_agent = "ELinks/%v (textmode; Ubuntu; %s; %t-%b)"
debian/control 0000664 0000000 0000000 00000007706 12251771536 010616 0 ustar Source: elinks
Section: web
Priority: optional
Maintainer: Ubuntu Developers
XSBC-Original-Maintainer: Moritz Muehlenhoff
Uploaders: Y Giridhar Appaji Nag
Build-Depends: debhelper, libtre-dev, libgnutls-dev, libidn11-dev,
libfsplib-dev, libgpm-dev [linux-any],
liblua5.1-dev, libbz2-dev, libexpat1-dev (>= 1.95.6),
libperl-dev, libkrb5-dev, gettext,
autotools-dev, python, xmlto, docbook-utils, pkg-config
Build-Conflicts: libgc-dev
Standards-Version: 3.9.4
Homepage: http://elinks.cz/
Package: elinks
Architecture: any
Depends: ${shlibs:Depends}, elinks-data (= ${source:Version}), ${misc:Depends}
Suggests: elinks-doc
Provides: www-browser
Description: advanced text-mode WWW browser
ELinks is a feature-rich program for browsing the web in text mode. It is
like enhanced Lynx and Links. The most noteworthy features of ELinks are:
.
* Lots of protocols (local files, finger, HTTP(S), FTP, IPv4/6 etc.)
* Internationalized domain names
* Persistent cookies, HTTP authentication and proxy authentication
* Tabbed browsing, good looking menus and dialogs, and key-binding manager
* History browsing and typeahead searches
* Forms history and completion, and history in commonly used input dialogs
* CSS support and support for browser scripting (Perl, Lua, Guile etc.)
* Tables and frames rendering, and configurable color support
* Compressed and background (non-blocking) downloads, and download resuming
Package: elinks-data
Architecture: all
Depends: ${misc:Depends}
Recommends: elinks (= ${source:Version})
Conflicts: elinks (<< 0.11.3-1)
Replaces: elinks (<< 0.11.3-1), elinks-lite (<< 0.12~pre6-3)
Breaks: elinks-lite (<< 0.12~pre6-3)
Description: advanced text-mode WWW browser - data files
ELinks is a feature-rich program for browsing the web in text mode. It is
like enhanced Lynx and Links. The most noteworthy features of ELinks are:
.
* Lots of protocols (local files, finger, HTTP(S), FTP, IPv4/6 etc.)
* Internationalized domain names
* Persistent cookies, HTTP authentication and proxy authentication
* Tabbed browsing, good looking menus and dialogs, and key-binding manager
* History browsing and typeahead searches
* Forms history and completion, and history in commonly used input dialogs
* CSS support and support for browser scripting (Perl, Lua, Guile etc.)
* Tables and frames rendering, and configurable color support
* Compressed and background (non-blocking) downloads, and download resuming
.
This package contains the data files that are necessary to use ELinks.
Package: elinks-doc
Section: doc
Architecture: all
Depends: ${misc:Depends}
Suggests: elinks
Conflicts: elinks (<< 0.11.3-1), elinks-lite (<< 0.11.3-1)
Description: advanced text-mode WWW browser - documentation
ELinks is a feature-rich program for browsing the web in text mode. It is
like enhanced Lynx and Links. The most noteworthy features of ELinks are:
.
* Lots of protocols (local files, finger, HTTP(S), FTP, IPv4/6 etc.)
* Internationalized domain names
* Persistent cookies, HTTP authentication and proxy authentication
* Tabbed browsing, good looking menus and dialogs, and key-binding manager
* History browsing and typeahead searches
* Forms history and completion, and history in commonly used input dialogs
* CSS support and support for browser scripting (Perl, Lua, Guile etc.)
* Tables and frames rendering, and configurable color support
* Compressed and background (non-blocking) downloads, and download resuming
.
This package contains the documentation and manuals for ELinks.
Package: elinks-lite
Priority: extra
Architecture: any
Depends: elinks
Description: advanced text-mode WWW browser (transition package)
ELinks is a feature-rich program for browsing the web in text mode. It is
like enhanced Lynx and Links. The most noteworthy features of ELinks are:
.
This is a transition package for the move from elinks-lite to elinks.
It can be safely removed. debian/elinks.lintian-overrides 0000664 0000000 0000000 00000000126 12251771427 014044 0 ustar # elinks(1) is installed by elinks-data
elinks: binary-without-manpage usr/bin/elinks
debian/elinks-data.examples 0000664 0000000 0000000 00000000437 12251771427 013140 0 ustar contrib/conv/conf-links2elinks.pl
contrib/conv/mailcap.pl
contrib/conv/old_to_new_bookmarks.sh
contrib/conv/w3m2links.awk.in
contrib/elinks.vim
contrib/keybind.conf
contrib/keybind-full.conf
contrib/lua/
contrib/perl/
contrib/ruby/
contrib/TIPS-AND-TRICKS
contrib/user.css
contrib/smjs/
debian/elinks.menu 0000664 0000000 0000000 00000000524 12251771427 011354 0 ustar ?package(elinks): \
needs="text" \
section="Applications/Network/Web Browsing" \
title="ELinks WWW browser" \
command="/usr/bin/elinks" \
hints="Web browsers" \
description="ELinks is a character mode browser with support for \
rendering tables and frames, background downloads, color display, \
IPV6 among other features."
debian/patches/ 0000775 0000000 0000000 00000000000 12251772002 010615 5 ustar debian/patches/08_524696_fix_imdb_urls.diff 0000664 0000000 0000000 00000001746 12251771536 015466 0 ustar Fixing IMDB links
Index: elinks-0.12~pre6/src/protocol/rewrite/rewrite.c
===================================================================
--- elinks-0.12~pre6.orig/src/protocol/rewrite/rewrite.c 2012-10-28 13:57:15.000000000 +0100
+++ elinks-0.12~pre6/src/protocol/rewrite/rewrite.c 2013-11-20 11:35:54.286213456 +0100
@@ -198,7 +198,7 @@
INIT_OPT_SMART_PREFIX("dict", "http://dictionary.reference.com/search?q=%s"),
INIT_OPT_SMART_PREFIX("thes", "http://thesaurus.reference.com/search?q=%s"),
INIT_OPT_SMART_PREFIX("a", "http://acronymfinder.com/af-query.asp?String=exact&Acronym=%s"),
- INIT_OPT_SMART_PREFIX("imdb", "http://imdb.com/Find?%s"),
+ INIT_OPT_SMART_PREFIX("imdb", "http://www.imdb.com/find?s=all&q=%s"),
INIT_OPT_SMART_PREFIX("mw", "http://www.m-w.com/cgi-bin/dictionary?book=Dictionary&va=%s"),
INIT_OPT_SMART_PREFIX("mwt", "http://www.m-w.com/cgi-bin/thesaurus?book=Thesaurus&va=%s"),
INIT_OPT_SMART_PREFIX("whatis", "http://uptime.netcraft.com/up/graph/?host=%s"),
debian/patches/09-Switch-to-use-lua-5.1.diff 0000664 0000000 0000000 00000005110 12251771536 015440 0 ustar >From 90ec58a744a970419bd2737558d0364640a95230 Mon Sep 17 00:00:00 2001
From: Guillem Jover
Date: Sat, 26 May 2012 01:46:40 +0200
Subject: [PATCH] Switch to use lua 5.1
---
configure.in | 10 ++++++++++
debian/control | 2 +-
src/scripting/lua/core.c | 10 +++-------
src/scripting/lua/hooks.c | 2 +-
4 files changed, 15 insertions(+), 9 deletions(-)
Index: elinks-0.12~pre6/configure.in
===================================================================
--- elinks-0.12~pre6.orig/configure.in 2012-10-28 13:57:15.000000000 +0100
+++ elinks-0.12~pre6/configure.in 2013-11-20 11:35:54.750218506 +0100
@@ -833,6 +833,16 @@
if test ! -d "$withval"; then
withval="";
fi
+ if pkg-config lua5.1; then
+ LUA_CFLAGS=`pkg-config --cflags lua5.1`
+ LUA_LIBS=`pkg-config --libs lua5.1`
+
+ LIBS="$LUA_LIBS $LIBS_X"
+ CFLAGS="$CFLAGS_X $LUA_CFLAGS"
+ CPPFLAGS="$CPPFLAGS_X $LUA_CFLAGS"
+
+ cf_result=yes
+ fi
for luadir in "$withval" "" /usr /usr/local; do
for suffix in "" 50; do
if test "$cf_result" = no && ( test -f "$luadir/include/lua.h" || \
Index: elinks-0.12~pre6/src/scripting/lua/core.c
===================================================================
--- elinks-0.12~pre6.orig/src/scripting/lua/core.c 2012-10-28 13:57:15.000000000 +0100
+++ elinks-0.12~pre6/src/scripting/lua/core.c 2013-11-20 11:35:54.750218506 +0100
@@ -658,7 +658,7 @@
if (file_can_read(file)) {
int oldtop = lua_gettop(S);
- if (lua_dofile(S, file) != 0)
+ if (luaL_dofile(S, file) != 0)
sleep(3); /* Let some time to see error messages. */
lua_settop(S, oldtop);
}
@@ -671,11 +671,7 @@
{
L = lua_open();
- luaopen_base(L);
- luaopen_table(L);
- luaopen_io(L);
- luaopen_string(L);
- luaopen_math(L);
+ luaL_openlibs(L);
lua_register(L, LUA_ALERT, l_alert);
lua_register(L, "current_url", l_current_url);
@@ -780,7 +776,7 @@
int oldtop = lua_gettop(L);
if (prepare_lua(ses) == 0) {
- lua_dostring(L, expr);
+ (void) luaL_dostring(L, expr);
lua_settop(L, oldtop);
finish_lua();
}
Index: elinks-0.12~pre6/src/scripting/lua/hooks.c
===================================================================
--- elinks-0.12~pre6.orig/src/scripting/lua/hooks.c 2012-10-28 13:57:15.000000000 +0100
+++ elinks-0.12~pre6/src/scripting/lua/hooks.c 2013-11-20 11:35:54.750218506 +0100
@@ -200,7 +200,7 @@
script_hook_quit(va_list ap, void *data)
{
if (!prepare_lua(NULL)) {
- lua_dostring(lua_state, "if quit_hook then quit_hook() end");
+ (void) luaL_dostring(lua_state, "if quit_hook then quit_hook() end");
finish_lua();
}
debian/patches/07_617713_cache_control.diff 0000664 0000000 0000000 00000001342 12251771536 015423 0 ustar Patch by Ben Hutchings to fix document caching in violation
of HTTP (see http://bugs.debian.org/617713).
Index: elinks-0.12~pre6/src/config/options.inc
===================================================================
--- elinks-0.12~pre6.orig/src/config/options.inc 2012-10-28 13:57:15.000000000 +0100
+++ elinks-0.12~pre6/src/config/options.inc 2013-11-20 11:35:54.066211068 +0100
@@ -506,7 +506,7 @@
"cache instead of asking the server.")),
INIT_OPT_BOOL("document.cache", N_("Ignore cache-control info from server"),
- "ignore_cache_control", 0, 1,
+ "ignore_cache_control", 0, 0,
N_("Ignore Cache-Control and Pragma server headers. "
"When set, the document is cached even with 'Cache-Control: "
"no-cache'.")),
debian/patches/series 0000664 0000000 0000000 00000000270 12251771603 012037 0 ustar 03_459467_ui.leds.enable_0.diff
04_436817_nostrip.diff
07_617713_cache_control.diff
08_524696_fix_imdb_urls.diff
08-drop-deprecated-gnutls-functions.diff
09-Switch-to-use-lua-5.1.diff
debian/patches/08-drop-deprecated-gnutls-functions.diff 0000664 0000000 0000000 00000005206 12251771536 020274 0 ustar Backport of upstream commits b228fe82ab7c8bf79f7ab67b957e4fe72708ff58 and
2d8fd9cecfc7c71ade541f9a0593a62244e0bdc8.
Index: elinks-0.12~pre6/src/network/ssl/socket.c
===================================================================
--- elinks-0.12~pre6.orig/src/network/ssl/socket.c 2012-10-28 13:57:15.000000000 +0100
+++ elinks-0.12~pre6/src/network/ssl/socket.c 2013-11-20 11:35:54.514215938 +0100
@@ -70,14 +70,9 @@
((ssl_t *) socket->ssl)->options |= SSL_OP_NO_TLSv1;
#elif defined(CONFIG_GNUTLS)
{
- /* GnuTLS does not support SSLv2 because it is "insecure".
- * That leaves only SSLv3. */
- static const int protocol_priority[] = {
- GNUTLS_SSL3,
- 0
- };
+ const char *error;
- gnutls_protocol_set_priority(*(ssl_t *) socket->ssl, protocol_priority);
+ gnutls_priority_set_direct(*(ssl_t *) socket->ssl, "SECURE", &error);
}
#endif
}
@@ -85,6 +80,10 @@
static void
ssl_want_read(struct socket *socket)
{
+#ifdef CONFIG_GNUTLS
+ unsigned int status;
+#endif
+
if (socket->no_tls)
ssl_set_no_tls(socket);
@@ -92,7 +91,8 @@
case SSL_ERROR_NONE:
#ifdef CONFIG_GNUTLS
if (get_opt_bool("connection.ssl.cert_verify")
- && gnutls_certificate_verify_peers(*((ssl_t *) socket->ssl))) {
+ && (gnutls_certificate_verify_peers2(*((ssl_t *) socket->ssl), &status)
+ || status)) {
socket->ops->retry(socket, connection_state(S_SSL_ERROR));
return;
}
@@ -117,6 +117,9 @@
ssl_connect(struct socket *socket)
{
int ret;
+#ifdef CONFIG_GNUTLS
+ unsigned int status;
+#endif
if (init_ssl_connection(socket) == S_SSL_ERROR) {
socket->ops->done(socket, connection_state(S_SSL_ERROR));
@@ -182,7 +185,8 @@
if (!get_opt_bool("connection.ssl.cert_verify"))
break;
- if (!gnutls_certificate_verify_peers(*((ssl_t *) socket->ssl)))
+ if (!gnutls_certificate_verify_peers2(*((ssl_t *) socket->ssl), &status)
+ && !status)
#endif
break;
Index: elinks-0.12~pre6/src/network/ssl/ssl.c
===================================================================
--- elinks-0.12~pre6.orig/src/network/ssl/ssl.c 2012-10-28 13:57:15.000000000 +0100
+++ elinks-0.12~pre6/src/network/ssl/ssl.c 2013-11-20 11:35:54.514215938 +0100
@@ -264,12 +264,15 @@
#else
gnutls_set_default_priority(*state);
#endif
+#if 0
+ /* Deprecated functions */
/* gnutls_handshake_set_private_extensions(*state, 1); */
gnutls_cipher_set_priority(*state, cipher_priority);
gnutls_kx_set_priority(*state, kx_priority);
/* gnutls_certificate_type_set_priority(*state, cert_type_priority);
gnutls_server_name_set(*state, GNUTLS_NAME_DNS, server_name,
sizeof(server_name) - 1); */
+#endif
socket->ssl = state;
#endif
debian/patches/04_436817_nostrip.diff 0000664 0000000 0000000 00000001446 12251771536 014324 0 ustar Remove CFLAGS from the linker command for dh_strip - comply with Debian
policy (section 10.1 "Binaries") for #436817
Index: elinks-0.12~pre6/Makefile.lib
===================================================================
--- elinks-0.12~pre6.orig/Makefile.lib 2012-10-28 13:57:15.000000000 +0100
+++ elinks-0.12~pre6/Makefile.lib 2013-11-20 11:35:53.846208670 +0100
@@ -62,7 +62,7 @@
`test -e $(subdir)/$(LIB_O_NAME) && echo $(subdir)/$(LIB_O_NAME)`)
quiet_cmd_link = ' [$(LINK_COLOR)LINK$(END_COLOR)] $(RELPATH)$@'
- cmd_link = $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS)
+ cmd_link = $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
quiet_cmd_sparse = ' [SPARSE] $(RELPATH)$(2)'
cmd_sparse = $(SPARSE) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(SPARSE_FLAGS) $(2)
debian/patches/03_459467_ui.leds.enable_0.diff 0000664 0000000 0000000 00000004063 12251771536 015640 0 ustar Set ui.leds.enable to 0 by default for #459467. No frequent wakeups on
laptops and desktop folks can enable this if they like it. Patch based
on suggestion from Ø£ØÙ…د المØÙ…ودي (Ahmed El-Mahmoudy).
Index: elinks-0.12~pre6/doc/html/elinks.conf.5.html
===================================================================
--- elinks-0.12~pre6.orig/doc/html/elinks.conf.5.html 2012-10-28 14:01:58.000000000 +0100
+++ elinks-0.12~pre6/doc/html/elinks.conf.5.html 2013-11-20 11:35:53.586205845 +0100
@@ -1445,7 +1445,7 @@
Requires that underlining is enabled for the terminal.
ui.leds (LEDs)
LEDs (visual indicators) options.
-
- ui.leds.enable [0|1] (default: 1)
- Enable LEDs. These visual indicators will inform you about various
+
- ui.leds.enable [0|1] (default: 0)
- Enable LEDs. These visual indicators will inform you about various
states.
ui.sessions (Sessions)
Sessions settings.
Index: elinks-0.12~pre6/doc/man/man5/elinks.conf.5
===================================================================
--- elinks-0.12~pre6.orig/doc/man/man5/elinks.conf.5 2012-10-28 13:57:15.000000000 +0100
+++ elinks-0.12~pre6/doc/man/man5/elinks.conf.5 2013-11-20 11:35:53.586205845 +0100
@@ -3712,7 +3712,7 @@
.sp
LEDs (visual indicators) options\&.
.PP
-ui\&.leds\&.enable \fB[0|1]\fR (default: 1)
+ui\&.leds\&.enable \fB[0|1]\fR (default: 0)
.RS 4
Enable LEDs\&. These visual indicators will inform you about various states\&.
.RE
Index: elinks-0.12~pre6/src/bfu/leds.c
===================================================================
--- elinks-0.12~pre6.orig/src/bfu/leds.c 2012-10-28 13:57:15.000000000 +0100
+++ elinks-0.12~pre6/src/bfu/leds.c 2013-11-20 11:35:53.586205845 +0100
@@ -92,7 +92,7 @@
N_("LEDs (visual indicators) options.")),
INIT_OPT_BOOL("ui.leds", N_("Enable"),
- "enable", 0, 1,
+ "enable", 0, 0,
N_("Enable LEDs. These visual indicators will inform you "
"about various states.")),