From owner-svn-ports-head@freebsd.org Sun Feb 4 07:16:54 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 80ED7EEC3E0; Sun, 4 Feb 2018 07:16:54 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2E9D3711A1; Sun, 4 Feb 2018 07:16:54 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2551E16FB9; Sun, 4 Feb 2018 07:16:54 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w147Grht032560; Sun, 4 Feb 2018 07:16:53 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w147Gr9H032558; Sun, 4 Feb 2018 07:16:53 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201802040716.w147Gr9H032558@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Sun, 4 Feb 2018 07:16:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460870 - head/mail/postfix-current X-SVN-Group: ports-head X-SVN-Commit-Author: ohauer X-SVN-Commit-Paths: head/mail/postfix-current X-SVN-Commit-Revision: 460870 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Feb 2018 07:16:54 -0000 Author: ohauer Date: Sun Feb 4 07:16:53 2018 New Revision: 460870 URL: https://svnweb.freebsd.org/changeset/ports/460870 Log: - update to 3.4.20180203 - license is now dual (see Changelog 20180203) - make EAI optional but on by default [1] 20180128 Documentation: the tcp_table(5) manpage now documents the absence of substring lookups. File: proto/tcp_table. 20180203 Licence: in addition to the historical IBM Public License 1.0, this software is now also distributed with the more recent Eclipse Public License 2.0. Recipients can choose to take the software under the license of their choice. Those who are more comfortable with the IPL can continue with that license. File: LICENSE. PR: ports/221619 [1] Submitted by: Kubilay Kocak (koobs@) Modified: head/mail/postfix-current/Makefile head/mail/postfix-current/distinfo Modified: head/mail/postfix-current/Makefile ============================================================================== --- head/mail/postfix-current/Makefile Sun Feb 4 05:13:43 2018 (r460869) +++ head/mail/postfix-current/Makefile Sun Feb 4 07:16:53 2018 (r460870) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= postfix -DISTVERSION= 3.3-20180121 +DISTVERSION= 3.4-20180203 PORTREVISION?= 0 PORTEPOCH= 5 CATEGORIES= mail ipv6 @@ -20,13 +20,12 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= ohauer@FreeBSD.org COMMENT= Experimental Postfix version -LICENSE= IPL10 -LICENSE_NAME= IBM PUBLIC LICENSE VERSION 1.0 +LICENSE= IPL10 EPL +LICENSE_COMB= multi LICENSE_FILE= ${WRKSRC}/LICENSE -LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +LICENSE_NAME_IPL10= IBM PUBLIC LICENSE VERSION 1.0 +LICENSE_PERMS_IPL10= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -LIB_DEPENDS= libicuuc.so:devel/icu - CONFLICTS_INSTALL?= courier-0.* opensmtpd-[0-9]* \ sendmail-8.* sendmail+*-8.* smail-3.* zmailer-2.* postfix211-* \ postfix-[2|3].* postfix-base-[2|3].* postfix-sasl-[2|3].* @@ -41,15 +40,16 @@ USE_SUBMAKE= yes SCRIPTS_ENV+= POSTFIX_DEFAULT_MTA="${POSTFIX_DEFAULT_MTA}" OPTIONS_SUB= yes -OPTIONS_DEFINE= BDB CDB DOCS INST_BASE LDAP LDAP_SASL LMDB MYSQL \ +OPTIONS_DEFINE= BDB CDB DOCS EAI INST_BASE LDAP LDAP_SASL LMDB MYSQL \ NIS PCRE PGSQL SASL SQLITE TEST TLS OPTIONS_RADIO= RG1 OPTIONS_RADIO_RG1= SASLKRB5 SASLKMIT -OPTIONS_DEFAULT= PCRE TLS +OPTIONS_DEFAULT= EAI PCRE TLS BDB_USES= bdb CDB_LIB_DEPENDS= libcdb.so:databases/tinycdb +EAI_LIB_DEPENDS= libicuuc.so:devel/icu LDAP_USE= OPENLDAP=yes LMDB_LIB_DEPENDS= liblmdb.so:databases/lmdb MYSQL_USE= MYSQL=yes @@ -61,6 +61,7 @@ SQLITE_USES= sqlite TLS_USES= ssl CDB_DESC= CDB maps lookups +EAI_DESC= Email Address Internationalization (SMTPUTF8) support INST_BASE_DESC= Install into /usr and /etc/postfix LDAP_DESC= LDAP maps (uses WITH_OPENLDAP_VER) LDAP_SASL_DESC= LDAP client-to-server SASL auth @@ -151,9 +152,12 @@ _REQUIRE= LOGIN cleanvar dovecot POSTFIX_CCARGS+= -DUSE_SASL_AUTH # Email Address Internationalization (EAI, RFC 6531..6533) -# This is now mandantory! +.if ${PORT_OPTIONS:MEAI} POSTFIX_CCARGS+= -DHAS_EAI -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -licuuc +.else +POSTFIX_CCARGS+= -DNO_EAI +.endif .if ${PORT_OPTIONS:MPCRE} DYN_EXT+= pcre Modified: head/mail/postfix-current/distinfo ============================================================================== --- head/mail/postfix-current/distinfo Sun Feb 4 05:13:43 2018 (r460869) +++ head/mail/postfix-current/distinfo Sun Feb 4 07:16:53 2018 (r460870) @@ -1,3 +1,3 @@ -TIMESTAMP = 1516574591 -SHA256 (postfix/postfix-3.3-20180121.tar.gz) = 4ff28ebda935756df9ca259da8ee1cd0373371de289c10796091957abf33b8b5 -SIZE (postfix/postfix-3.3-20180121.tar.gz) = 4416991 +TIMESTAMP = 1517705400 +SHA256 (postfix/postfix-3.4-20180203.tar.gz) = b0610cf669982662d7dffa0bb591b54fea935fbc2c2eb2ca604e6e44922291a5 +SIZE (postfix/postfix-3.4-20180203.tar.gz) = 4420728