Date: Wed, 10 Jan 2018 19:28:05 +0000 (UTC) From: Diane Bruce <db@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458681 - in head/irc/ircd-hybrid: . files Message-ID: <201801101928.w0AJS5GY073240@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: db Date: Wed Jan 10 19:28:04 2018 New Revision: 458681 URL: https://svnweb.freebsd.org/changeset/ports/458681 Log: Update to 8.2.13 and fix as per robertames@hotmail.com PR ####################################################################### Reminder for package maintainers of ircd-hybrid: ircd-hybrid now has GnuTLS support as of version 8.2.13 ####################################################################### Bug report from robertames@hotmail.com When shutting down ircd-hybrid, a confusing error is displayed stating the pid file does not exist: # /usr/local/etc/rc.d/ircd-hybrid stop Stopping ircd_hybrid. Waiting for PIDS: 14504. rm: /var/run/ircd/ircd.pid: No such file or directory This is because after ircd correctly cleans up it's pid file, the rc script tries to delete the non existing file. In the rc script, stop_postcmd is not needed. PR: ports/224977 Submitted by: robertames@hotmail.com Modified: head/irc/ircd-hybrid/Makefile head/irc/ircd-hybrid/distinfo head/irc/ircd-hybrid/files/ircd-hybrid.in Modified: head/irc/ircd-hybrid/Makefile ============================================================================== --- head/irc/ircd-hybrid/Makefile Wed Jan 10 19:21:50 2018 (r458680) +++ head/irc/ircd-hybrid/Makefile Wed Jan 10 19:28:04 2018 (r458681) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ircd-hybrid -PORTVERSION= 8.2.21 +PORTVERSION= 8.2.22 CATEGORIES= irc ipv6 MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} Modified: head/irc/ircd-hybrid/distinfo ============================================================================== --- head/irc/ircd-hybrid/distinfo Wed Jan 10 19:21:50 2018 (r458680) +++ head/irc/ircd-hybrid/distinfo Wed Jan 10 19:28:04 2018 (r458681) @@ -1,3 +1,3 @@ -TIMESTAMP = 1482502869 -SHA256 (ircd-hybrid-8.2.21.tgz) = c37f67ff087bb471e6a4fbdd172e4b92d4c9924ba3ddfe481787855febcb8fa5 -SIZE (ircd-hybrid-8.2.21.tgz) = 1219746 +TIMESTAMP = 1515612001 +SHA256 (ircd-hybrid-8.2.22.tgz) = d7d8df4524d088132e928d3685f2f65bb7b1bf6c1f855fc9e16a3dc460d9b1c4 +SIZE (ircd-hybrid-8.2.22.tgz) = 1223395 Modified: head/irc/ircd-hybrid/files/ircd-hybrid.in ============================================================================== --- head/irc/ircd-hybrid/files/ircd-hybrid.in Wed Jan 10 19:21:50 2018 (r458680) +++ head/irc/ircd-hybrid/files/ircd-hybrid.in Wed Jan 10 19:28:04 2018 (r458681) @@ -38,7 +38,7 @@ pid_touch () pid_rm () { - rm $pidfile + rm -f $pidfile } run_rc_command "$1"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801101928.w0AJS5GY073240>