Received: by mail.netbsd.org (Postfix, from userid 605) id 0292C85434; Fri, 23 Aug 2019 10:52:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7DA55853E3 for ; Fri, 23 Aug 2019 10:52:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 7LQNDSuRbP6I for ; Fri, 23 Aug 2019 10:52:02 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AAB2E84D75 for ; Fri, 23 Aug 2019 10:52:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1ADADFBF4; Fri, 23 Aug 2019 10:51:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1566557509248000" MIME-Version: 1.0 Date: Fri, 23 Aug 2019 10:51:49 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/chat/inspircd To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20190823105149.1ADADFBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1566557509248000 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Fri Aug 23 10:51:48 UTC 2019 Modified Files: pkgsrc/chat/inspircd: DESCR Makefile distinfo pkgsrc/chat/inspircd/files: inspircd.conf inspircd.sh Log Message: inspircd: Update to 2.0.28 This release fixes a crash bug in the mysql module as well as fixing several minor issues: * Fixed BanCache entries existing after X-line expiry. * Replaced all references to the dead InspIRCd wiki with the new InspIRCd docs site. * Updated all documentation links to use https. * Updated the Module Manager source list for the new inspircd-contrib repository. InspIRCd v2 is now deprecated and will no longer receive security updates after 2020-06-01. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/chat/inspircd/DESCR cvs rdiff -u -r1.66 -r1.67 pkgsrc/chat/inspircd/Makefile cvs rdiff -u -r1.20 -r1.21 pkgsrc/chat/inspircd/distinfo cvs rdiff -u -r1.1 -r1.2 pkgsrc/chat/inspircd/files/inspircd.conf cvs rdiff -u -r1.3 -r1.4 pkgsrc/chat/inspircd/files/inspircd.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1566557509248000 Content-Disposition: inline Content-Length: 7220 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/chat/inspircd/DESCR diff -u pkgsrc/chat/inspircd/DESCR:1.3 pkgsrc/chat/inspircd/DESCR:1.4 --- pkgsrc/chat/inspircd/DESCR:1.3 Wed Jan 30 10:16:47 2019 +++ pkgsrc/chat/inspircd/DESCR Fri Aug 23 10:51:48 2019 @@ -4,3 +4,8 @@ It was created from scratch to be stable It avoids a number of design flaws and performance issues that plague other more established projects, such as UnrealIRCd, while providing the same level of feature parity. + +This is the legacy 2.0.x branch, kept for config compatibility. + +It is still maintained, but please use chat/inspircd3 if you don't +need configuration compatibility. Index: pkgsrc/chat/inspircd/Makefile diff -u pkgsrc/chat/inspircd/Makefile:1.66 pkgsrc/chat/inspircd/Makefile:1.67 --- pkgsrc/chat/inspircd/Makefile:1.66 Sun Aug 11 13:18:03 2019 +++ pkgsrc/chat/inspircd/Makefile Fri Aug 23 10:51:48 2019 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.66 2019/08/11 13:18:03 wiz Exp $ +# $NetBSD: Makefile,v 1.67 2019/08/23 10:51:48 nia Exp $ -DISTNAME= inspircd-2.0.27 -PKGREVISION= 4 +DISTNAME= inspircd-2.0.28 CATEGORIES= chat MASTER_SITES= ${MASTER_SITE_GITHUB:=inspircd/} GITHUB_TAG= v${PKGVERSION_NOREV} @@ -19,10 +18,12 @@ MAKE_FILE= BSDmakefile BUILD_DEFS+= PKG_SYSCONFDIR +PKG_SYSCONFSUBDIR= inspircd + CONFIGURE_ARGS+= --with-cc="${CXX} ${CXXFLAGS} ${LDFLAGS}" CONFIGURE_ARGS+= --prefix=${PREFIX} CONFIGURE_ARGS+= --module-dir=${PREFIX}/lib/inspircd/modules -CONFIGURE_ARGS+= --config-dir=${PKG_SYSCONFDIR}/inspircd +CONFIGURE_ARGS+= --config-dir=${PKG_SYSCONFDIR} CONFIGURE_ARGS+= --data-dir=${PREFIX}/inspircd/data CONFIGURE_ARGS+= --log-dir=${PREFIX}/inspircd/logs CONFIG_SHELL= ${PERL5} @@ -47,14 +48,14 @@ RCD_SCRIPTS= inspircd EGDIR= ${PREFIX}/share/examples/inspircd -CONF_FILES+= ${EGDIR}/motd.txt ${PKG_SYSCONFDIR}/inspircd/motd.txt -CONF_FILES+= ${EGDIR}/rules.txt ${PKG_SYSCONFDIR}/inspircd/rules.txt -CONF_FILES+= ${EGDIR}/inspircd.conf ${PKG_SYSCONFDIR}/inspircd/inspircd.conf -CONF_FILES+= ${EGDIR}/links.conf ${PKG_SYSCONFDIR}/inspircd/links.conf -CONF_FILES+= ${EGDIR}/modules.conf ${PKG_SYSCONFDIR}/inspircd/modules.conf -CONF_FILES+= ${EGDIR}/opers.conf ${PKG_SYSCONFDIR}/inspircd/opers.conf -CONF_FILES+= ${EGDIR}/motd.txt ${PKG_SYSCONFDIR}/inspircd/motd.txt -CONF_FILES+= ${EGDIR}/rules.txt ${PKG_SYSCONFDIR}/inspircd/rules.txt +CONF_FILES+= ${EGDIR}/motd.txt ${PKG_SYSCONFDIR}/motd.txt +CONF_FILES+= ${EGDIR}/rules.txt ${PKG_SYSCONFDIR}/rules.txt +CONF_FILES+= ${EGDIR}/inspircd.conf ${PKG_SYSCONFDIR}/inspircd.conf +CONF_FILES+= ${EGDIR}/links.conf ${PKG_SYSCONFDIR}/links.conf +CONF_FILES+= ${EGDIR}/modules.conf ${PKG_SYSCONFDIR}/modules.conf +CONF_FILES+= ${EGDIR}/opers.conf ${PKG_SYSCONFDIR}/opers.conf +CONF_FILES+= ${EGDIR}/motd.txt ${PKG_SYSCONFDIR}/motd.txt +CONF_FILES+= ${EGDIR}/rules.txt ${PKG_SYSCONFDIR}/rules.txt SUBST_CLASSES+= conf SUBST_STAGE.conf= pre-configure @@ -78,9 +79,9 @@ post-extract: post-install: ${RM} -f ${DESTDIR}${PREFIX}/.gdbargs - ${INSTALL_DATA} ${DESTDIR}${PKG_SYSCONFDIR}/inspircd/examples/motd.txt.example ${DESTDIR}${EGDIR}/motd.txt - ${INSTALL_DATA} ${DESTDIR}${PKG_SYSCONFDIR}/inspircd/examples/rules.txt.example ${DESTDIR}${EGDIR}/rules.txt - ${RM} -rf ${DESTDIR}${PKG_SYSCONFDIR}/inspircd/examples + ${INSTALL_DATA} ${DESTDIR}${PKG_SYSCONFDIR}/examples/motd.txt.example ${DESTDIR}${EGDIR}/motd.txt + ${INSTALL_DATA} ${DESTDIR}${PKG_SYSCONFDIR}/examples/rules.txt.example ${DESTDIR}${EGDIR}/rules.txt + ${RM} -rf ${DESTDIR}${PKG_SYSCONFDIR}/examples ${INSTALL_DATA} ${WRKSRC}/conf/*.conf ${DESTDIR}${EGDIR} .include "../../mk/pthread.buildlink3.mk" Index: pkgsrc/chat/inspircd/distinfo diff -u pkgsrc/chat/inspircd/distinfo:1.20 pkgsrc/chat/inspircd/distinfo:1.21 --- pkgsrc/chat/inspircd/distinfo:1.20 Wed Jan 30 10:16:47 2019 +++ pkgsrc/chat/inspircd/distinfo Fri Aug 23 10:51:48 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.20 2019/01/30 10:16:47 nia Exp $ +$NetBSD: distinfo,v 1.21 2019/08/23 10:51:48 nia Exp $ -SHA1 (inspircd-2.0.27.tar.gz) = e6db8a29e9270ceed51bd2fa9c45bb8a0d03aba5 -RMD160 (inspircd-2.0.27.tar.gz) = f911770fed2145086cddc91ebf0ed6d5c1bad578 -SHA512 (inspircd-2.0.27.tar.gz) = 56f03c3259fad54365e97fd82f4e309edc60b641ccadd7916d04156fd157858f79930c8b9df99aa98c5505f76ab19e6bcd150ae5ed04d2bddfff572e18226cdd -Size (inspircd-2.0.27.tar.gz) = 735970 bytes +SHA1 (inspircd-2.0.28.tar.gz) = e82d043c6645be854946b79bad086d591e111f07 +RMD160 (inspircd-2.0.28.tar.gz) = e20c8193dff1b7d54eeca6e0baefc85baf7decf7 +SHA512 (inspircd-2.0.28.tar.gz) = 0e8082a03e65f350ac423cc0781506c0eb40151d6e8d250067288b2a1d42087f10c159472ad76028aa986f6764180fdc493893984cadc0064715853472fa3e2a +Size (inspircd-2.0.28.tar.gz) = 735981 bytes Index: pkgsrc/chat/inspircd/files/inspircd.conf diff -u pkgsrc/chat/inspircd/files/inspircd.conf:1.1 pkgsrc/chat/inspircd/files/inspircd.conf:1.2 --- pkgsrc/chat/inspircd/files/inspircd.conf:1.1 Wed Jan 30 10:16:47 2019 +++ pkgsrc/chat/inspircd/files/inspircd.conf Fri Aug 23 10:51:48 2019 @@ -153,11 +153,11 @@ # This file has all the information about oper classes, types and o:lines. # You *MUST* edit it. - + # This file has all the information about server links and ulined servers. # You *MUST* edit it if you intend to link servers. - + #-#-#-#-#-#-#-#-#-#- MISCELLANEOUS CONFIGURATION -#-#-#-#-#-#-#-#-#-# # # @@ -167,7 +167,7 @@ # motd - displayed on connect and when a user executes /MOTD # rules - displayed when the user executes /RULES # Modules can also define their own files - + #-#-#-#-#-#-#-#-#-#-#-#-#- SERVER OPTIONS -#-#-#-#-#-#-#-#-#-#-#-#-# # # @@ -531,7 +531,7 @@ - + ######################################################################### # # Index: pkgsrc/chat/inspircd/files/inspircd.sh diff -u pkgsrc/chat/inspircd/files/inspircd.sh:1.3 pkgsrc/chat/inspircd/files/inspircd.sh:1.4 --- pkgsrc/chat/inspircd/files/inspircd.sh:1.3 Wed Jan 30 10:16:47 2019 +++ pkgsrc/chat/inspircd/files/inspircd.sh Fri Aug 23 10:51:48 2019 @@ -1,6 +1,6 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: inspircd.sh,v 1.3 2019/01/30 10:16:47 nia Exp $ +# $NetBSD: inspircd.sh,v 1.4 2019/08/23 10:51:48 nia Exp $ # # PROVIDE: inspircd # REQUIRE: DAEMON @@ -10,7 +10,7 @@ name="inspircd" rcvar=${name} command="@PREFIX@/bin/inspircd" -required_files="@PKG_SYSCONFDIR@/inspircd/inspircd.conf" +required_files="@PKG_SYSCONFDIR@/inspircd.conf" pidfile="@PREFIX@/inspircd/${name}.pid" inspircd_user="@INSPIRCD_USER@" --_----------=_1566557509248000--