summaryrefslogtreecommitdiff
path: root/www/links
diff options
context:
space:
mode:
authorbjs <bjs@pkgsrc.org>2008-07-24 01:38:13 +0000
committerbjs <bjs@pkgsrc.org>2008-07-24 01:38:13 +0000
commitb9ec78a644482433b9f4d8a684e3cfba1f879d50 (patch)
treee818d5c503f5cec83cf17e8c947d8ea6525648b9 /www/links
parent1b4b270b37fb0c20008ad9072a9cac8994a95a42 (diff)
downloadpkgsrc-b9ec78a644482433b9f4d8a684e3cfba1f879d50.tar.gz
update to 2.1pre37. Changes:
Sun Jun 22 17:07:20 cet 2008 mikulas: -dump and -source don't lockup on authentication failure Sat Jun 21 19:58:53 MET 2008 mikulas Accept broken numbers in HTTP code Sat Jun 21 18:00:54 cet 2008 mikulas: Allow '+' in command-line URLs Thu Jun 12 03:34:53 cet 2008 mikulas: Erase clipboard on OS/2 before copying to it - this prevents bugs when copying to/from Mozilla Mon Jun 9 02:34:24 MET 2008 mikulas: Process &#10; and &#9; in form entry "value" attribute Tue Jun 3 00:22:49 CEST 2008 mikulas: Fixed various display glitches with 64-bit big endian systems Sun May 18 21:47:46 CEST 2008 mikulas: Fixed display quirks on Sparc framebuffer console Fixed some quirks on 64-bit big endian systems
Diffstat (limited to 'www/links')
-rw-r--r--www/links/Makefile4
-rw-r--r--www/links/Makefile.common4
-rw-r--r--www/links/distinfo10
-rw-r--r--www/links/patches/patch-aa24
4 files changed, 12 insertions, 30 deletions
diff --git a/www/links/Makefile b/www/links/Makefile
index e99dfa7b0f6..6784e224769 100644
--- a/www/links/Makefile
+++ b/www/links/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.53 2008/05/21 14:00:40 wiz Exp $
+# $NetBSD: Makefile,v 1.54 2008/07/24 01:38:13 bjs Exp $
#
-PKGNAME= links-2.1.0.36
+PKGNAME= ${DISTNAME:S/pre/.0./}
COMMENT= Lynx-like text WWW browser
CONFLICTS+= links-gui-[0-9]* elinks-0.3*
diff --git a/www/links/Makefile.common b/www/links/Makefile.common
index 202ddb89fca..95ecd728b46 100644
--- a/www/links/Makefile.common
+++ b/www/links/Makefile.common
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile.common,v 1.44 2008/05/21 14:00:40 wiz Exp $
+# $NetBSD: Makefile.common,v 1.45 2008/07/24 01:38:13 bjs Exp $
-DISTNAME= links-2.1pre36
+DISTNAME= links-2.1pre37
CATEGORIES= www
MASTER_SITES= http://links.twibright.com/download/
EXTRACT_SUFX= .tar.bz2
diff --git a/www/links/distinfo b/www/links/distinfo
index ac47379b4c3..d2d89844085 100644
--- a/www/links/distinfo
+++ b/www/links/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.47 2008/05/21 14:00:40 wiz Exp $
+$NetBSD: distinfo,v 1.48 2008/07/24 01:38:13 bjs Exp $
-SHA1 (links-2.1pre36.tar.bz2) = 79ff4ff2d663de99ba590e11f42a52435a6e1809
-RMD160 (links-2.1pre36.tar.bz2) = e34d61aa6db196d897afd4f07c1eb6f3a87dd4eb
-Size (links-2.1pre36.tar.bz2) = 3824394 bytes
-SHA1 (patch-aa) = 374bd3262b4f50712cd42898d67e90ebcba72577
+SHA1 (links-2.1pre37.tar.bz2) = b7afe9c5d6b6555477c25d0598b6fe2324bcdb26
+RMD160 (links-2.1pre37.tar.bz2) = 7ef7dd47c03edd0ccdea31bef349ca4247326fa3
+Size (links-2.1pre37.tar.bz2) = 3823570 bytes
+SHA1 (patch-aa) = 0ef14390247d67b6d36f33a2fe916321110aad57
SHA1 (patch-ab) = a2d461c9d8b6300469ab6195886830fdd63be837
diff --git a/www/links/patches/patch-aa b/www/links/patches/patch-aa
index 576157807f7..2c7bf4a1a00 100644
--- a/www/links/patches/patch-aa
+++ b/www/links/patches/patch-aa
@@ -1,26 +1,8 @@
-$NetBSD: patch-aa,v 1.2 2006/04/20 18:34:07 is Exp $
+$NetBSD: patch-aa,v 1.3 2008/07/24 01:38:13 bjs Exp $
---- session.c.orig Sat Jun 29 21:27:04 2002
+--- session.c.orig 2008-06-21 12:12:07.000000000 -0400
+++ session.c
-@@ -185,7 +185,7 @@ unsigned char *encode_url(unsigned char
- int l = 0;
- for (; *url; url++) {
- if (is_safe_in_shell(*url) && *url != '+') add_chr_to_str(&u, &l, *url);
-- else add_chr_to_str(&u, &l, '+'), add_chr_to_str(&u, &l, hx(*url >> 4)), add_chr_to_str(&u, &l, hx(*url & 0xf));
-+ else add_chr_to_str(&u, &l, '%'), add_chr_to_str(&u, &l, hx(*url >> 4)), add_chr_to_str(&u, &l, hx(*url & 0xf));
- }
- return u;
- }
-@@ -195,7 +195,7 @@ unsigned char *decode_url(unsigned char
- unsigned char *u = init_str();
- int l = 0;
- for (; *url; url++) {
-- if (*url != '+' || unhx(url[1]) == -1 || unhx(url[2]) == -1) add_chr_to_str(&u, &l, *url);
-+ if (*url != '%' || unhx(url[1]) == -1 || unhx(url[2]) == -1) add_chr_to_str(&u, &l, *url);
- else add_chr_to_str(&u, &l, (unhx(url[1]) << 4) + unhx(url[2])), url += 2;
- }
- return u;
-@@ -2047,6 +2047,13 @@ void goto_url_f(struct session *ses, voi
+@@ -2631,6 +2631,13 @@ void goto_url_f(struct session *ses, voi
/* this doesn't send referer */
void goto_url(struct session *ses, unsigned char *url)
{