Update to ii-1.7.

Changes since last release (http://lists.suckless.org/dev/1301/13945.html):

1.7 (2013-01-05)
    - -k now specifies an environment variable that contains the
      server key. This behaviour has been changed in order to not
      expose the password in the process list.
    - Fix parsing of JOIN messages for certain servers.
      Thanks Ivan Kanakarakis!
    - Use , rather than _ for slash characters in channel names.
      As per RFC , is not allowed in a channel name, while _ is.
      Thanks plomplomplom and Nils Dagsson Moskopp!

ok gsoares@ (maintainer)
This commit is contained in:
bentley 2013-01-07 14:15:15 +00:00
parent 4f97413237
commit 05a260cf32
4 changed files with 12 additions and 15 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.8 2011/03/11 09:00:14 jasper Exp $
# $OpenBSD: Makefile,v 1.9 2013/01/07 14:15:15 bentley Exp $
COMMENT= minimalist IRC client
DISTNAME= ii-1.6
DISTNAME= ii-1.7
CATEGORIES= net
HOMEPAGE= http://tools.suckless.org/ii

View File

@ -1,5 +1,2 @@
MD5 (ii-1.6.tar.gz) = yhg6mTaQy+O3jt0byMi+1Q==
RMD160 (ii-1.6.tar.gz) = IjYZLXmgiD7DiyCZjscW3t2pPC4=
SHA1 (ii-1.6.tar.gz) = zWwqbJfR5NRgGHCbsl/5b720fTM=
SHA256 (ii-1.6.tar.gz) = eU+mObJTtLMy+oDnbN54LZ2uAh3681ogczTFU9lizCk=
SIZE (ii-1.6.tar.gz) = 9970
SHA256 (ii-1.7.tar.gz) = OnKsZgbVVgtiXAYscfE1gg4iFP7QmObWJPxAYy3HzJw=
SIZE (ii-1.7.tar.gz) = 10174

View File

@ -1,8 +1,8 @@
$OpenBSD: patch-config_mk,v 1.2 2011/03/02 15:06:04 jasper Exp $
--- config.mk.orig Mon Jan 31 21:47:08 2011
+++ config.mk Wed Mar 2 16:04:30 2011
$OpenBSD: patch-config_mk,v 1.3 2013/01/07 14:15:16 bentley Exp $
--- config.mk.orig Sat Jan 5 06:15:12 2013
+++ config.mk Sun Jan 6 18:07:51 2013
@@ -15,13 +15,13 @@ LIBDIR = ${PREFIX}/lib
VERSION = 1.6
VERSION = 1.7
# includes and libs
-INCLUDES = -I. -I${INCDIR} -I/usr/include

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-ii_c,v 1.2 2011/03/02 15:06:04 jasper Exp $
--- ii.c.orig Mon Jan 31 21:47:08 2011
+++ ii.c Wed Mar 2 16:04:30 2011
@@ -395,8 +395,9 @@ static int read_line(int fd, size_t res_len, char *buf
$OpenBSD: patch-ii_c,v 1.3 2013/01/07 14:15:16 bentley Exp $
--- ii.c.orig Sat Jan 5 06:15:13 2013
+++ ii.c Sun Jan 6 18:07:51 2013
@@ -389,8 +389,9 @@ static int read_line(int fd, size_t res_len, char *buf
static void handle_channels_input(Channel *c) {
static char buf[PIPE_BUF];
if(read_line(c->fd, PIPE_BUF, buf) == -1) {