pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/chat/ircII pull over a patch from ircii-current to fix...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/bc0138eebf3a
branches:  trunk
changeset: 631654:bc0138eebf3a
user:      mrg <mrg%pkgsrc.org@localhost>
date:      Wed Mar 12 07:22:34 2014 +0000

description:
pull over a patch from ircii-current to fix input lines.

diffstat:

 chat/ircII/Makefile                     |   3 ++-
 chat/ircII/distinfo                     |   3 ++-
 chat/ircII/patches/patch-source_input.c |  23 +++++++++++++++++++++++
 3 files changed, 27 insertions(+), 2 deletions(-)

diffs (52 lines):

diff -r 0b941a379642 -r bc0138eebf3a chat/ircII/Makefile
--- a/chat/ircII/Makefile       Wed Mar 12 01:38:15 2014 +0000
+++ b/chat/ircII/Makefile       Wed Mar 12 07:22:34 2014 +0000
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.62 2014/01/02 07:57:49 mrg Exp $
+# $NetBSD: Makefile,v 1.63 2014/03/12 07:22:34 mrg Exp $
 
 DISTNAME=              ircii-${VERS}
 PKGNAME=               ircII-${VERS}
+PKGREVISION=           1
 CATEGORIES=            chat
 MASTER_SITES=          http://ircii.warped.com/
 EXTRACT_SUFX=          .tar.bz2
diff -r 0b941a379642 -r bc0138eebf3a chat/ircII/distinfo
--- a/chat/ircII/distinfo       Wed Mar 12 01:38:15 2014 +0000
+++ b/chat/ircII/distinfo       Wed Mar 12 07:22:34 2014 +0000
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.36 2014/01/02 07:57:49 mrg Exp $
+$NetBSD: distinfo,v 1.37 2014/03/12 07:22:34 mrg Exp $
 
 SHA1 (ircii-20131230.tar.bz2) = b59f8fcd344c09b8820f6efbcc74ba9af7e587ce
 RMD160 (ircii-20131230.tar.bz2) = ae2696afc9b6efec3e866ae217d5f5bd258d4493
 Size (ircii-20131230.tar.bz2) = 552149 bytes
 SHA1 (patch-ac) = 9f6f3b27670b63ff00b55c5431ec1da5219369ff
+SHA1 (patch-source_input.c) = 4ddd92d6209624db964f08f0d7b0375781344138
diff -r 0b941a379642 -r bc0138eebf3a chat/ircII/patches/patch-source_input.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/chat/ircII/patches/patch-source_input.c   Wed Mar 12 07:22:34 2014 +0000
@@ -0,0 +1,23 @@
+$NetBSD: patch-source_input.c,v 1.1 2014/03/12 07:22:34 mrg Exp $
+
+fix a problem with the input line when it goes beyond the screen size
+
+Index: source/input.c
+===================================================================
+RCS file: /home/cvs/ircii/source/input.c,v
+retrieving revision 1.55
+retrieving revision 1.56
+diff -p -r1.55 -r1.56
+*** source/input.c     30 Dec 2013 16:42:38 -0000      1.55
+--- source/input.c     30 Jan 2014 10:13:06 -0000      1.56
+*************** update_input(update)
+*** 488,493 ****
+--- 484,491 ----
+                       }
+               }
+               VisBuf[optr] = '\0';
++              if (old_cursor_pos > inputdata->cursor_x)
++                      old_cursor_pos = 0;
+               term_move_cursor(old_cursor_pos, inputdata->cursor_y);
+               written = output_line(VisBuf + old_cursor_pos, 0);
+               if (term_clear_to_eol() && written < current_screen->co)



Home | Main Index | Thread Index | Old Index