From owner-svn-ports-all@FreeBSD.ORG Mon Jan 28 02:45:15 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 26665CBA; Mon, 28 Jan 2013 02:45:15 +0000 (UTC) (envelope-from sahil@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 0A082293; Mon, 28 Jan 2013 02:45:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r0S2jECn088197; Mon, 28 Jan 2013 02:45:14 GMT (envelope-from sahil@svn.freebsd.org) Received: (from sahil@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r0S2jEFo088192; Mon, 28 Jan 2013 02:45:14 GMT (envelope-from sahil@svn.freebsd.org) Message-Id: <201301280245.r0S2jEFo088192@svn.freebsd.org> From: Sahil Tandon Date: Mon, 28 Jan 2013 02:45:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r311092 - in head/mail/postfix27: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 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: Mon, 28 Jan 2013 02:45:15 -0000 Author: sahil Date: Mon Jan 28 02:45:13 2013 New Revision: 311092 URL: http://svnweb.freebsd.org/changeset/ports/311092 Log: Update to 2.7.12 and revise the PKGINSTALL script to distinguish between upgrades and fresh installs. Also, backport an upstream patch that allows Postfix packages to build in a jail that has IPv6 enabled, but no addresses assigned on any interface. Added: head/mail/postfix27/files/patch-src-util-inet_proto.c (contents, props changed) Modified: head/mail/postfix27/Makefile head/mail/postfix27/distinfo head/mail/postfix27/files/patch-src::util::sys_defs.h head/mail/postfix27/files/pkg-install.in Modified: head/mail/postfix27/Makefile ============================================================================== --- head/mail/postfix27/Makefile Mon Jan 28 02:44:33 2013 (r311091) +++ head/mail/postfix27/Makefile Mon Jan 28 02:45:13 2013 (r311092) @@ -6,8 +6,7 @@ # PORTNAME= postfix -PORTVERSION= 2.7.11 -PORTREVISION= 2 +PORTVERSION= 2.7.12 PORTEPOCH= 1 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \ Modified: head/mail/postfix27/distinfo ============================================================================== --- head/mail/postfix27/distinfo Mon Jan 28 02:44:33 2013 (r311091) +++ head/mail/postfix27/distinfo Mon Jan 28 02:45:13 2013 (r311092) @@ -1,5 +1,5 @@ -SHA256 (postfix/postfix-2.7.11.tar.gz) = 4acdf4c1313fed9d1c64826607df4c1e9518281e33ded4a740ca5f3ccdc0e44a -SIZE (postfix/postfix-2.7.11.tar.gz) = 3418624 +SHA256 (postfix/postfix-2.7.12.tar.gz) = 529eb64c51bafae93ceea0e8d8cb210f74d5b13d89e877c9e79a496db35f41aa +SIZE (postfix/postfix-2.7.12.tar.gz) = 3419280 SHA256 (postfix/postfix-2.7.1-libspf2-1.2.x-4.patch.gz) = b67efb1ffbcae91f13bf3ed90a5181d4b5bc86ebe15753eaf9db8b2278f5bb16 SIZE (postfix/postfix-2.7.1-libspf2-1.2.x-4.patch.gz) = 8186 SHA256 (postfix/postfix-vda-v10-2.7.8.patch) = 10738a30f2cb00cd05c593caf5b4b9d4ca44927432c1995a9db5c3557d0528db Added: head/mail/postfix27/files/patch-src-util-inet_proto.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/postfix27/files/patch-src-util-inet_proto.c Mon Jan 28 02:45:13 2013 (r311092) @@ -0,0 +1,20 @@ +--- src/util/inet_proto.c.orig 2013-01-27 20:31:06.000000000 +0000 ++++ src/util/inet_proto.c 2013-01-27 20:31:41.000000000 +0000 +@@ -205,7 +205,7 @@ + pf->dns_atype_list = make_unsigned_vector(2, T_AAAA, 0); + pf->sa_family_list = make_uchar_vector(2, AF_INET6, 0); + break; +- } else if (errno == EAFNOSUPPORT) { ++ } else if (errno == EAFNOSUPPORT || errno == EPROTONOSUPPORT) { + msg_fatal("%s: IPv6 support is disabled: %m", context); + } else { + msg_fatal("socket: %m"); +@@ -219,7 +219,7 @@ + pf->dns_atype_list = make_unsigned_vector(3, T_A, T_AAAA, 0); + pf->sa_family_list = make_uchar_vector(3, AF_INET, AF_INET6, 0); + break; +- } else if (errno == EAFNOSUPPORT) { ++ } else if (errno == EAFNOSUPPORT || errno == EPROTONOSUPPORT) { + msg_warn("%s: IPv6 support is disabled: %m", context); + msg_warn("%s: configuring for IPv4 support only", context); + /* FALLTHROUGH */ Modified: head/mail/postfix27/files/patch-src::util::sys_defs.h ============================================================================== --- head/mail/postfix27/files/patch-src::util::sys_defs.h Mon Jan 28 02:44:33 2013 (r311091) +++ head/mail/postfix27/files/patch-src::util::sys_defs.h Mon Jan 28 02:45:13 2013 (r311092) @@ -1,10 +1,10 @@ ---- src/util/sys_defs.h.orig 2011-03-01 19:35:19.000000000 -0500 -+++ src/util/sys_defs.h 2011-03-01 19:36:54.000000000 -0500 +--- src/util/sys_defs.h.orig 2013-01-27 20:30:58.000000000 +0000 ++++ src/util/sys_defs.h 2013-01-27 20:32:04.000000000 +0000 @@ -25,7 +25,7 @@ */ #if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4) \ || defined(FREEBSD5) || defined(FREEBSD6) || defined(FREEBSD7) \ -- || defined(FREEBSD8) \ +- || defined(FREEBSD8) || defined(FREEBSD9) \ + || defined(FREEBSD8) || defined(FREEBSD9) || defined(FREEBSD10) \ || defined(BSDI2) || defined(BSDI3) || defined(BSDI4) \ || defined(OPENBSD2) || defined(OPENBSD3) || defined(OPENBSD4) \ Modified: head/mail/postfix27/files/pkg-install.in ============================================================================== --- head/mail/postfix27/files/pkg-install.in Mon Jan 28 02:44:33 2013 (r311091) +++ head/mail/postfix27/files/pkg-install.in Mon Jan 28 02:45:13 2013 (r311092) @@ -65,11 +65,15 @@ if [ "$2" = "POST-INSTALL" ]; then fi done - /bin/sh ${DAEMONDIR}/post-install tempdir=/tmp \ - daemon_directory=${DAEMONDIR} \ - html_directory=${READMEDIR} \ - readme_directory=${READMEDIR} \ - upgrade-package + cmp ${DAEMONDIR}/main.cf ${ETCDIR}/main.cf >/dev/null 2>&1 \ + && POSTARG="set-permissions" \ + || POSTARG="upgrade-package" + + /bin/sh ${DAEMONDIR}/post-install tempdir=/tmp \ + daemon_directory=${DAEMONDIR} \ + html_directory=${READMEDIR} \ + readme_directory=${READMEDIR} \ + ${POSTARG} fi if [ "$2" = "POST-INSTALL" -a -z "${PACKAGE_BUILDING}" -a -f "${MC}" ]; then