svn commit: r373157 - in head/irc/ircII: . files

Adam Weinberger adamw at FreeBSD.org
Sun Nov 23 15:29:41 UTC 2014


Author: adamw
Date: Sun Nov 23 15:29:39 2014
New Revision: 373157
URL: https://svnweb.freebsd.org/changeset/ports/373157
QAT: https://qat.redports.org/buildarchive/r373157/

Log:
  Update to 20141122.
  
  Add a patch from naddy that prevents items from being written
  twice with logging enabled.

Added:
  head/irc/ircII/files/patch-source_window.c   (contents, props changed)
Modified:
  head/irc/ircII/Makefile
  head/irc/ircII/distinfo

Modified: head/irc/ircII/Makefile
==============================================================================
--- head/irc/ircII/Makefile	Sun Nov 23 14:44:25 2014	(r373156)
+++ head/irc/ircII/Makefile	Sun Nov 23 15:29:39 2014	(r373157)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	ircii
-PORTVERSION=	20141028
+PORTVERSION=	20141122
 CATEGORIES=	irc ipv6
 MASTER_SITES=	http://ircii.warped.com/
 

Modified: head/irc/ircII/distinfo
==============================================================================
--- head/irc/ircII/distinfo	Sun Nov 23 14:44:25 2014	(r373156)
+++ head/irc/ircII/distinfo	Sun Nov 23 15:29:39 2014	(r373157)
@@ -1,2 +1,2 @@
-SHA256 (ircii-20141028.tar.bz2) = fc439005954c0ba488174942f327ff2a0f59eb4bdeb952daae5e0ee0bbdc63ea
-SIZE (ircii-20141028.tar.bz2) = 613642
+SHA256 (ircii-20141122.tar.bz2) = 74c20bbc59d960038b4629c88df2d3f93a7d81a343bc0eaf51ca418ace52d622
+SIZE (ircii-20141122.tar.bz2) = 593290

Added: head/irc/ircII/files/patch-source_window.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/irc/ircII/files/patch-source_window.c	Sun Nov 23 15:29:39 2014	(r373157)
@@ -0,0 +1,12 @@
+--- source/window.c.orig	2014-11-23 15:23:37 UTC
++++ source/window.c
+@@ -4509,7 +4509,8 @@ window_get_query_nick(Window *window)
+ void
+ add_to_window_log(Window *window, u_char *str)
+ {
+-	add_to_log(window->log_fp, str);
++	if (window->log)
++		add_to_log(window->log_fp, str);
+ }
+ 
+ LastlogInfo *


More information about the svn-ports-all mailing list