From owner-svn-ports-all@freebsd.org Sun Jun 19 15:51:51 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5E400A79D33; Sun, 19 Jun 2016 15:51:51 +0000 (UTC) (envelope-from fluffy@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 mx1.freebsd.org (Postfix) with ESMTPS id 2077A1239; Sun, 19 Jun 2016 15:51:51 +0000 (UTC) (envelope-from fluffy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5JFpo53048436; Sun, 19 Jun 2016 15:51:50 GMT (envelope-from fluffy@FreeBSD.org) Received: (from fluffy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5JFpoq9048432; Sun, 19 Jun 2016 15:51:50 GMT (envelope-from fluffy@FreeBSD.org) Message-Id: <201606191551.u5JFpoq9048432@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fluffy set sender to fluffy@FreeBSD.org using -f From: Dima Panov Date: Sun, 19 Jun 2016 15:51:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417124 - in head/mail: opensmtpd-extras-filter-python opensmtpd-extras-queue-python opensmtpd-extras-scheduler-python opensmtpd-extras-table-python 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.22 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: Sun, 19 Jun 2016 15:51:51 -0000 Author: fluffy Date: Sun Jun 19 15:51:49 2016 New Revision: 417124 URL: https://svnweb.freebsd.org/changeset/ports/417124 Log: - While Python2 is default, force it as explicit dependency. Current OpenSMTPD-extras support only Python v2 API, no v3 yet Approved by: miwi (mentor, implicit) Modified: head/mail/opensmtpd-extras-filter-python/Makefile head/mail/opensmtpd-extras-queue-python/Makefile head/mail/opensmtpd-extras-scheduler-python/Makefile head/mail/opensmtpd-extras-table-python/Makefile Modified: head/mail/opensmtpd-extras-filter-python/Makefile ============================================================================== --- head/mail/opensmtpd-extras-filter-python/Makefile Sun Jun 19 14:43:22 2016 (r417123) +++ head/mail/opensmtpd-extras-filter-python/Makefile Sun Jun 19 15:51:49 2016 (r417124) @@ -11,7 +11,7 @@ PLIST_FILES= libexec/opensmtpd/filter-p CONFIGURE_ARGS+= --with-filter-python --with-python-type=${PYTHON_VERSION} -USES= python pkgconfig +USES= python:2 pkgconfig MASTERDIR= ${.CURDIR}/../opensmtpd-extras SLAVE_PORT= yes Modified: head/mail/opensmtpd-extras-queue-python/Makefile ============================================================================== --- head/mail/opensmtpd-extras-queue-python/Makefile Sun Jun 19 14:43:22 2016 (r417123) +++ head/mail/opensmtpd-extras-queue-python/Makefile Sun Jun 19 15:51:49 2016 (r417124) @@ -11,7 +11,7 @@ PLIST_FILES= libexec/opensmtpd/queue-py CONFIGURE_ARGS+= --with-queue-python --with-python-type=${PYTHON_VERSION} -USES= python pkgconfig +USES= python:2 pkgconfig MASTERDIR= ${.CURDIR}/../opensmtpd-extras SLAVE_PORT= yes Modified: head/mail/opensmtpd-extras-scheduler-python/Makefile ============================================================================== --- head/mail/opensmtpd-extras-scheduler-python/Makefile Sun Jun 19 14:43:22 2016 (r417123) +++ head/mail/opensmtpd-extras-scheduler-python/Makefile Sun Jun 19 15:51:49 2016 (r417124) @@ -11,7 +11,7 @@ PLIST_FILES= libexec/opensmtpd/schedule CONFIGURE_ARGS+= --with-scheduler-python --with-python-type=${PYTHON_VERSION} -USES= python pkgconfig +USES= python:2 pkgconfig MASTERDIR= ${.CURDIR}/../opensmtpd-extras SLAVE_PORT= yes Modified: head/mail/opensmtpd-extras-table-python/Makefile ============================================================================== --- head/mail/opensmtpd-extras-table-python/Makefile Sun Jun 19 14:43:22 2016 (r417123) +++ head/mail/opensmtpd-extras-table-python/Makefile Sun Jun 19 15:51:49 2016 (r417124) @@ -10,7 +10,7 @@ PLIST_FILES= libexec/opensmtpd/table-pyt CONFIGURE_ARGS+= --with-table-python --with-python-type=${PYTHON_VERSION} -USES= python pkgconfig +USES= python:2 pkgconfig MASTERDIR= ${.CURDIR}/../opensmtpd-extras SLAVE_PORT= yes