From owner-svn-ports-all@freebsd.org Thu Jan 23 09:42:41 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 011D3233CD0; Thu, 23 Jan 2020 09:42:41 +0000 (UTC) (envelope-from fox@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 483HPX6HQQz4Nyc; Thu, 23 Jan 2020 09:42:40 +0000 (UTC) (envelope-from fox@freebsd.org) Received: from mail-ot1-f41.google.com (mail-ot1-f41.google.com [209.85.210.41]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) (Authenticated sender: fox/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id BD643404B; Thu, 23 Jan 2020 09:42:40 +0000 (UTC) (envelope-from fox@freebsd.org) Received: by mail-ot1-f41.google.com with SMTP id i15so2176087oto.2; Thu, 23 Jan 2020 01:42:40 -0800 (PST) X-Gm-Message-State: APjAAAUSMPSsJrqLSi7XXC0kq5M1+laTXqkPUH5phNBHkAMAbkQFCLiI 6brMXMtKANUuPbwaCaMPMkGOcv/SkTmuatMlvMA= X-Google-Smtp-Source: APXvYqypWgdhhuZOaZGdLeq4HTFpUkC4wZqQOFWt++iVYgFHYtypIw+SPFCdyLIClBYYoypM0/K4azSboM2V5lSZShI= X-Received: by 2002:a9d:4d8d:: with SMTP id u13mr10415292otk.299.1579772559789; Thu, 23 Jan 2020 01:42:39 -0800 (PST) MIME-Version: 1.0 References: <202001230919.00N9JcJ8016541@repo.freebsd.org> In-Reply-To: <202001230919.00N9JcJ8016541@repo.freebsd.org> From: Santhosh Raju Date: Thu, 23 Jan 2020 04:42:28 -0500 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r523914 - in head/irc/ircd-hybrid: . files To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Jan 2020 09:42:41 -0000 On Thu, Jan 23, 2020 at 4:19 AM Santhosh Raju wrote: > > Author: fox > Date: Thu Jan 23 09:19:38 2020 > New Revision: 523914 > URL: https://svnweb.freebsd.org/changeset/ports/523914 > > Log: > irc/ircd-hybrid: Updates to 8.2.27 > > Renames mkpasswd to ircd-hybrid-mkpasswd to avoid conflicts with other packages. > > Changes since 8.2.26: > > -- Noteworthy changes in version 8.2.27 (2020-01-22) > o) Experimental support for wolfSSL has been implemented. Minimum supported version is 4.3.0 > o) The --enable-openssl, --enable-gnutls switches, and their disabling counterparts > --disable-openssl and --disable-gnutls, have been replaced with the --with-tls switch > which takes one of the following options: 'openssl', 'wolfssl', 'gnutls', and 'none'. > If nothing has been specified, configure tries to autodetect in the following order: > openssl/libressl -> gnutls -> wolfssl. > o) Fixed segfault with GnuTLS/libgmp in case there's no DH parameters file > defined in 'serverinfo::ssl_dh_param_file' or if that file is missing > o) The connection timeout for connect{} blocks can now be configured via > the 'connect::timeout' configuration directive > o) Minimum supported OpenSSL version is 1.1.1 now > o) Minimum supported GnuTLS version is 3.6.5 now > o) Supported TLSv1.3 cipher suites can now be configured explicitely via the > new 'serverinfo::tls_cipher_suites' configuration directive > o) In the serverinfo {} block, the following configuration directives have been renamed: > ssl_certificate_file -> tls_certificate_file > ssl_dh_param_file -> tls_dh_param_file > ssl_dh_elliptic_curve -> tls_supported_groups > ssl_cipher_list -> tls_cipher_list > ssl_message_digest_algorithm -> tls_message_digest_algorithm > o) In the operator {} block, the following configuration directives have been renamed: > ssl_certificate_fingerprint -> tls_certificate_fingerprint > ssl_connection_required -> tls_connection_required > o) In the connect {} block, the following configuration directives have been renamed: > ssl_cipher_list -> tls_cipher_list > ssl_certificate_fingerprint -> tls_certificate_fingerprint > > PR: 243204 > > Modified: > head/irc/ircd-hybrid/Makefile > head/irc/ircd-hybrid/distinfo > head/irc/ircd-hybrid/files/pkg-message.in > head/irc/ircd-hybrid/pkg-plist > > Modified: head/irc/ircd-hybrid/Makefile > ============================================================================== > --- head/irc/ircd-hybrid/Makefile Thu Jan 23 09:08:34 2020 (r523913) > +++ head/irc/ircd-hybrid/Makefile Thu Jan 23 09:19:38 2020 (r523914) > @@ -2,7 +2,7 @@ > # $FreeBSD$ > > PORTNAME= ircd-hybrid > -PORTVERSION= 8.2.26 > +PORTVERSION= 8.2.27 > CATEGORIES= irc > MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} > > @@ -32,6 +32,8 @@ ASSERT_DESC= Enable parts of the debugging code > > OPENSSL_DESC= Enable openssl - allows use of CHALLENGE and encrypted links > > +INSTALL_TARGET= install-strip > + > .include > > .if ${PORT_OPTIONS:MOPENSSL} > @@ -43,5 +45,8 @@ CONFIGURE_ARGS+= \ > --sysconfdir=${PREFIX}/etc/ircd-hybrid \ > --datarootdir=${PREFIX}/share/${PORTNAME}-${PORTVERSION} \ > --localstatedir=/var > + > +post-install: > + @${MV} ${STAGEDIR}${PREFIX}/bin/mkpasswd ${STAGEDIR}${PREFIX}/bin/ircd-hybrid-mkpasswd > > .include > > Modified: head/irc/ircd-hybrid/distinfo > ============================================================================== > --- head/irc/ircd-hybrid/distinfo Thu Jan 23 09:08:34 2020 (r523913) > +++ head/irc/ircd-hybrid/distinfo Thu Jan 23 09:19:38 2020 (r523914) > @@ -1,3 +1,3 @@ > -TIMESTAMP = 1569865641 > -SHA256 (ircd-hybrid-8.2.26.tgz) = 3948de7046d275e4125992f8a8716d831bf8d6544300c48d24c3a61744a78183 > -SIZE (ircd-hybrid-8.2.26.tgz) = 1226486 > +TIMESTAMP = 1579769543 > +SHA256 (ircd-hybrid-8.2.27.tgz) = 1838a67b288e6f510b2127d45ad421dab0599a49d7a965dd71c51a8001272ec2 > +SIZE (ircd-hybrid-8.2.27.tgz) = 1231965 > > Modified: head/irc/ircd-hybrid/files/pkg-message.in > ============================================================================== > --- head/irc/ircd-hybrid/files/pkg-message.in Thu Jan 23 09:08:34 2020 (r523913) > +++ head/irc/ircd-hybrid/files/pkg-message.in Thu Jan 23 09:19:38 2020 (r523914) > @@ -4,6 +4,11 @@ > ircd-hybrid has now been installed. > > *** IMPORTANT: *** > +mkpasswd has been renamed to ircd-hybrid-mkpasswd to avoid conflicts with > +other packages. > + > + mkpasswd -> ircd-hybrid-mkpasswd > + > Please read the INSTALL file for more information. > > You should now copy %%PREFIX%%/etc/ircd-hybrid/reference.conf to > > Modified: head/irc/ircd-hybrid/pkg-plist > ============================================================================== > --- head/irc/ircd-hybrid/pkg-plist Thu Jan 23 09:08:34 2020 (r523913) > +++ head/irc/ircd-hybrid/pkg-plist Thu Jan 23 09:19:38 2020 (r523914) > @@ -1,5 +1,5 @@ > bin/ircd > -bin/mkpasswd > +bin/ircd-hybrid-mkpasswd > %%ETCDIR%%/reference.conf > lib/ircd-hybrid/modules/autoload/m_accept.la > lib/ircd-hybrid/modules/autoload/m_accept.so Forgot to mention, submitter of PR 243204 Submitted by: Bunny Evans Apologies for missing out that detail in the commit log. Regards Santhosh