pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/chat/inspircd3 inspircd3: Update to 3.5.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/bdce07875a57
branches:  trunk
changeset: 422669:bdce07875a57
user:      nia <nia%pkgsrc.org@localhost>
date:      Fri Jan 31 20:03:14 2020 +0000

description:
inspircd3: Update to 3.5.0

Changes:

     * Added support for the IRCv3 Labeled Response specification.

     * Added support for help topics to the helpop module.

     * Added support for pagination to the index output of the HELPOP
       command.

     * Added support for passing module names to --{disable,enable} using
       their short names (e.g. --enable-extras ssl_gnutls).

     * Added support for passing space-delimited module names to
       --{disable,enable}-extras (e.g. --enable-extras "ssl_gnutls
       ssl_mbedtls").

     * Added support for the X-Real-IP and X-Forwarded-For headers to the
       websocket module.

     * Added the codepage module ? a better solution for custom 8-bit
       character set support than the incredibly broken and undocumented
       nationalchars module.

     * Changed the default for <waitpong:sendsnotice> to no.

     * Changed the user count in LUSERS so that it no longer includes
       services pseudoclients.

     * Developer: add Channel::WriteRemoteNotice which sends a notice to
       remote users as well as local users.

     * Developer: add a status char option to Channel::WriteNotice for
       sending status messages.

     * Developer: add the ClientProtocol::MessageTagEvent class to allow
       handling message tags easier.

     * Developer: added MessageTarget::GetName to allow easily getting the
       name of a message target.

     * Developer: added a status char option to the TagMessage constructor
       for sending status messages.

     * Developer: added an "oper only" parameter to
       Simple{Channel,User}ModeHandler.

     * Developer: added empty string checks to the
       Numerics::NoSuch{Channel,Nick} constructors.

     * Developer: added several variadic overloads of the
       IRCv3::Replies::Reply::Send method.

     * Developer: added the OnCommandBlocked event for when the execution of
       a command is blocked.

     * Developer: added the UserManager::ULineCount method for counting
       pseudoclients on ulined servers.

     * Developer: added the inspircd.org/poison capability which rejects any
       attempt to request it to avoid clients requesting all available
       capabilities rather than the ones they support.

     * Developer: added the stdalgo:delete_zero method for deleting and
       zeroing a pointer.

     * Developer: deprecated the ProtocolInterface::Send{Channel,User}Notice
       methods in favour of SendMessage.

     * Developer: disabled CULLLIST log messages unless the server has been
       built in debug mode.

     * Developer: switched from Travis CI to GitHub Actions.

     * Developer: the FailedPort type now contains the config tag that the
       listener was created from.

     * Fix connections to ports which have an invalid I/O hook configured not
       being rejected.

     * Fix various Perl tools not looking in the right directory for the
       make::* modules.

     * Fixed a bug in helpop.conf.example where the SWHOIS key was not using
       the correct value name.

     * Fixed allowing TAGMSG messages to be sent without any tags attached.

     * Fixed boolean configuration options not being matched in a case
       insensitive way.

     * Fixed not using case insensitive comparisons for the DCCALLOW
       subcommands.

     * Fixed not using case insensitive matching when checking if a SSL
       rehash has been requested.

     * Fixed not using the ERR_INVALIDMODEPARAM numeric when not enough
       parameters are given to the snomask mode.

     * Fixed not using the RPL_REHASHING numeric for remote rehashes.

     * Fixed parsing CTCPs in the dccallow module.

     * Fixed prioritisation of custom events provided by modules.

     * Fixed spamming the log with DNS cache clearing notices when nothing
       was actually cleared.

     * Fixed status messages not working with the TAGMSG command.

     * Fixed the chanhistory module not storing message tags.

     * Fixed the chanhistory module not storing notices.

     * Fixed the chanhistory module storing CTCPs.

     * Fixed the legacy PROTOCTL NAMESX command not using case insensitive
       matching.

     * Fixed the legacy PROTOCTL UHNAMES command not using case insensitive
       matching.

     * Fixed the nationalchars module allowing nicknames which begin with a
       number.

     * Fixed the nationalchars module not rebuilding the 005 numerics on
       unload.

     * Fixed the nationalchars module not restoring the previous casemapping
       name on unload.

     * Fixed the systemd unit file starting InspIRCd before the network is
       online.

     * Fixed unnecessarily making N*2-1 too many copies of the command
       arguments when processing a command with multiple targets.

     * Improve the warning process when starting InspIRCd as root.

     * Improved the ban message shown to users if they are banned by an
       extban.

     * Improved the output when a port can not be bound.

     * Removed the preceding - from the MOTD, server operator MOTD, and any
       custom MOTDs added with the showfile module.

     * Renamed <chanhistory:notice> to <chanhistory:prefixmsg> so the
       behaviour is less ambiguous.

     * Replace the Windows getopt_long shim with the ya_getopt library.

     * Updated the example MOTD and server operator MOTD to be a bit prettier
       and show off some of the escape codes.

diffstat:

 chat/inspircd3/Makefile |   5 ++---
 chat/inspircd3/PLIST    |   8 +++++++-
 chat/inspircd3/distinfo |  10 +++++-----
 3 files changed, 14 insertions(+), 9 deletions(-)

diffs (67 lines):

diff -r d27f4b450205 -r bdce07875a57 chat/inspircd3/Makefile
--- a/chat/inspircd3/Makefile   Fri Jan 31 19:13:47 2020 +0000
+++ b/chat/inspircd3/Makefile   Fri Jan 31 20:03:14 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.17 2020/01/18 21:48:49 jperkin Exp $
+# $NetBSD: Makefile,v 1.18 2020/01/31 20:03:14 nia Exp $
 
-DISTNAME=      inspircd-3.4.0
-PKGREVISION=   1
+DISTNAME=      inspircd-3.5.0
 CATEGORIES=    chat
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=inspircd/}
 GITHUB_TAG=    v${PKGVERSION_NOREV}
diff -r d27f4b450205 -r bdce07875a57 chat/inspircd3/PLIST
--- a/chat/inspircd3/PLIST      Fri Jan 31 19:13:47 2020 +0000
+++ b/chat/inspircd3/PLIST      Fri Jan 31 20:03:14 2020 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2019/10/25 11:01:55 nia Exp $
+@comment $NetBSD: PLIST,v 1.5 2020/01/31 20:03:14 nia Exp $
 bin/inspircd
 bin/inspircd-genssl
 lib/inspircd/modules/core_channel.so
@@ -54,6 +54,7 @@
 lib/inspircd/modules/m_clearchan.so
 lib/inspircd/modules/m_cloaking.so
 lib/inspircd/modules/m_clones.so
+lib/inspircd/modules/m_codepage.so
 lib/inspircd/modules/m_commonchans.so
 lib/inspircd/modules/m_conn_join.so
 lib/inspircd/modules/m_conn_umodes.so
@@ -101,6 +102,7 @@
 lib/inspircd/modules/m_ircv3_ctctags.so
 lib/inspircd/modules/m_ircv3_echomessage.so
 lib/inspircd/modules/m_ircv3_invitenotify.so
+lib/inspircd/modules/m_ircv3_labeledresponse.so
 lib/inspircd/modules/m_ircv3_msgid.so
 lib/inspircd/modules/m_ircv3_servertime.so
 lib/inspircd/modules/m_ircv3_sts.so
@@ -203,6 +205,10 @@
 lib/inspircd/modules/m_xline_db.so
 man/man1/inspircd-genssl.1
 man/man1/inspircd.1
+share/examples/inspircd/codepages/ascii.conf.example
+share/examples/inspircd/codepages/latin1.conf.example
+share/examples/inspircd/codepages/rfc1459.conf.example
+share/examples/inspircd/codepages/strict-rfc1459.conf.example
 share/examples/inspircd/filter.conf.example
 share/examples/inspircd/helpop.conf.example
 share/examples/inspircd/inspircd.conf.example
diff -r d27f4b450205 -r bdce07875a57 chat/inspircd3/distinfo
--- a/chat/inspircd3/distinfo   Fri Jan 31 19:13:47 2020 +0000
+++ b/chat/inspircd3/distinfo   Fri Jan 31 20:03:14 2020 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.10 2019/12/12 00:13:52 nia Exp $
+$NetBSD: distinfo,v 1.11 2020/01/31 20:03:14 nia Exp $
 
-SHA1 (inspircd-3.4.0.tar.gz) = 62229ac2827c0377cf0f3f52cc016b2a14600b46
-RMD160 (inspircd-3.4.0.tar.gz) = 3b2e28f8f1825b6d2de3b2ebbf98a6756f44f6f9
-SHA512 (inspircd-3.4.0.tar.gz) = 871fefff5e337dc6228fae223ff7ac534e159b5bfb838419247b1d16339c860b0b939a28dd4610cf3b8c37328b5e6ccba2ddd80adbd27638f4f3fa28e4f99066
-Size (inspircd-3.4.0.tar.gz) = 809845 bytes
+SHA1 (inspircd-3.5.0.tar.gz) = 1ddfae4bf44b9328463ed09c6adcf4b89f046df5
+RMD160 (inspircd-3.5.0.tar.gz) = 6a3111c417d7882f41f2611ad8c3f129557f869f
+SHA512 (inspircd-3.5.0.tar.gz) = 64e7be4b013c418577362b33be73b8f7045f1071ccb2c4e83fdf1a96b98656a3541e20c005bc32532007da21d9ba963f534cd14d16c2e1cf8afcf34b22ffad8c
+Size (inspircd-3.5.0.tar.gz) = 835283 bytes
 SHA1 (patch-configure) = cd3a8459c60539fd505b36523129cebc3804e3a8
 SHA1 (patch-docs_conf_inspircd.conf.example) = 077c5b474c7ce70096b25b48b66817422b134ce0
 SHA1 (patch-docs_conf_modules.conf.example) = 4a4ef063ae1c908268a34f0407a00c1df70a6a18



Home | Main Index | Thread Index | Old Index