aboutsummaryrefslogtreecommitdiffstats
path: root/irc
diff options
context:
space:
mode:
authordb <db@FreeBSD.org>2018-01-11 03:28:04 +0800
committerdb <db@FreeBSD.org>2018-01-11 03:28:04 +0800
commita3effd463ace43fdf1d25e4f9d7ad4f036d73261 (patch)
tree49db0e4ca65e673bb393b01c234ab3a9f318838f /irc
parenta4249159cb5ba7a90d24bd756157c3f29dcb1569 (diff)
downloadfreebsd-ports-gnome-a3effd463ace43fdf1d25e4f9d7ad4f036d73261.tar.gz
freebsd-ports-gnome-a3effd463ace43fdf1d25e4f9d7ad4f036d73261.tar.zst
freebsd-ports-gnome-a3effd463ace43fdf1d25e4f9d7ad4f036d73261.zip
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
Diffstat (limited to 'irc')
-rw-r--r--irc/ircd-hybrid/Makefile2
-rw-r--r--irc/ircd-hybrid/distinfo6
-rw-r--r--irc/ircd-hybrid/files/ircd-hybrid.in2
3 files changed, 5 insertions, 5 deletions
diff --git a/irc/ircd-hybrid/Makefile b/irc/ircd-hybrid/Makefile
index f88392be68c1..c8107c8bc0e9 100644
--- a/irc/ircd-hybrid/Makefile
+++ b/irc/ircd-hybrid/Makefile
@@ -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}
diff --git a/irc/ircd-hybrid/distinfo b/irc/ircd-hybrid/distinfo
index 3b029246d5cf..89bded9c42b6 100644
--- a/irc/ircd-hybrid/distinfo
+++ b/irc/ircd-hybrid/distinfo
@@ -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
diff --git a/irc/ircd-hybrid/files/ircd-hybrid.in b/irc/ircd-hybrid/files/ircd-hybrid.in
index 69caf1f4fe7b..690a58121c3b 100644
--- a/irc/ircd-hybrid/files/ircd-hybrid.in
+++ b/irc/ircd-hybrid/files/ircd-hybrid.in
@@ -38,7 +38,7 @@ pid_touch ()
pid_rm ()
{
- rm $pidfile
+ rm -f $pidfile
}
run_rc_command "$1"