From owner-svn-ports-all@freebsd.org Tue Feb 18 10:43:18 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 F1FD025B8B0; Tue, 18 Feb 2020 10:43:18 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (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 "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48MHWV6DNsz49Mh; Tue, 18 Feb 2020 10:43:18 +0000 (UTC) (envelope-from antoine@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 D0E481EC11; Tue, 18 Feb 2020 10:43:18 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 01IAhI6N091906; Tue, 18 Feb 2020 10:43:18 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 01IAhHHY091900; Tue, 18 Feb 2020 10:43:17 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <202002181043.01IAhHHY091900@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 18 Feb 2020 10:43:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r526450 - in head: devel/py-Acquisition devel/py-Products.LDAPUserFolder devel/py-Products.contentmigration devel/py-Products.validation devel/py-zLOG textproc/py-zope.app.locales X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in head: devel/py-Acquisition devel/py-Products.LDAPUserFolder devel/py-Products.contentmigration devel/py-Products.validation devel/py-zLOG textproc/py-zope.app.locales X-SVN-Commit-Revision: 526450 X-SVN-Commit-Repository: ports 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.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: Tue, 18 Feb 2020 10:43:19 -0000 Author: antoine Date: Tue Feb 18 10:43:17 2020 New Revision: 526450 URL: https://svnweb.freebsd.org/changeset/ports/526450 Log: Deprecate a few zope 2 or 3 components With hat: portmgr Modified: head/devel/py-Acquisition/Makefile head/devel/py-Products.LDAPUserFolder/Makefile head/devel/py-Products.contentmigration/Makefile head/devel/py-Products.validation/Makefile head/devel/py-zLOG/Makefile head/textproc/py-zope.app.locales/Makefile Modified: head/devel/py-Acquisition/Makefile ============================================================================== --- head/devel/py-Acquisition/Makefile Tue Feb 18 10:04:19 2020 (r526449) +++ head/devel/py-Acquisition/Makefile Tue Feb 18 10:43:17 2020 (r526450) @@ -13,6 +13,9 @@ COMMENT= Allows to obtain attributes from the containm LICENSE= ZPL21 LICENSE_FILE= ${WRKSRC}/LICENSE.txt +DEPRECATED= Old, uses EOLed python27 +EXPIRATION_DATE= 2020-03-18 + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ExtensionClass>=4.1.1:devel/py-ExtensionClass@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}zope.interface>=0:devel/py-zope.interface@${PY_FLAVOR} Modified: head/devel/py-Products.LDAPUserFolder/Makefile ============================================================================== --- head/devel/py-Products.LDAPUserFolder/Makefile Tue Feb 18 10:04:19 2020 (r526449) +++ head/devel/py-Products.LDAPUserFolder/Makefile Tue Feb 18 10:43:17 2020 (r526450) @@ -13,6 +13,9 @@ COMMENT= LDAP-enabled Zope 2 user folder LICENSE= ZPL21 +DEPRECATED= Old, uses EOLed python27 +EXPIRATION_DATE= 2020-03-18 + BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools-git>=0.4.2:devel/py-setuptools-git@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ldap>=2.0.6:net/py-ldap@${PY_FLAVOR} Modified: head/devel/py-Products.contentmigration/Makefile ============================================================================== --- head/devel/py-Products.contentmigration/Makefile Tue Feb 18 10:04:19 2020 (r526449) +++ head/devel/py-Products.contentmigration/Makefile Tue Feb 18 10:43:17 2020 (r526450) @@ -12,6 +12,9 @@ COMMENT= Generic content migration framework for Plone LICENSE= LGPL20 +DEPRECATED= Old, uses EOLed python27 +EXPIRATION_DATE= 2020-03-18 + NO_ARCH= yes USES= python:2.7 USE_PYTHON= autoplist distutils Modified: head/devel/py-Products.validation/Makefile ============================================================================== --- head/devel/py-Products.validation/Makefile Tue Feb 18 10:04:19 2020 (r526449) +++ head/devel/py-Products.validation/Makefile Tue Feb 18 10:43:17 2020 (r526450) @@ -12,6 +12,9 @@ COMMENT= Data validation package for Archetypes LICENSE= ZPL21 +DEPRECATED= Old, uses EOLed python27 +EXPIRATION_DATE= 2020-03-18 + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zope.i18n>=0:devel/py-zope.i18n@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}zope.i18nmessageid>=0:textproc/py-zope.i18nmessageid@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}zope.interface>=0:devel/py-zope.interface@${PY_FLAVOR} \ Modified: head/devel/py-zLOG/Makefile ============================================================================== --- head/devel/py-zLOG/Makefile Tue Feb 18 10:04:19 2020 (r526449) +++ head/devel/py-zLOG/Makefile Tue Feb 18 10:43:17 2020 (r526450) @@ -14,6 +14,9 @@ COMMENT= General logging facility LICENSE= ZPL21 LICENSE_FILE= ${WRKSRC}/LICENSE.txt +DEPRECATED= Old, uses EOLed python27 +EXPIRATION_DATE= 2020-03-18 + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zconfig>=0:devel/py-zconfig@${PY_FLAVOR} NO_ARCH= yes Modified: head/textproc/py-zope.app.locales/Makefile ============================================================================== --- head/textproc/py-zope.app.locales/Makefile Tue Feb 18 10:04:19 2020 (r526449) +++ head/textproc/py-zope.app.locales/Makefile Tue Feb 18 10:43:17 2020 (r526450) @@ -13,6 +13,9 @@ COMMENT= Zope locale extraction and management utiliti LICENSE= ZPL21 LICENSE_FILE= ${WRKSRC}/LICENSE.txt +DEPRECATED= Old, uses EOLed python27 +EXPIRATION_DATE= 2020-03-18 + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zope.interface>0:devel/py-zope.interface@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}zope.i18nmessageid>0:textproc/py-zope.i18nmessageid@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}zope.i18n>=0:devel/py-zope.i18n@${PY_FLAVOR} \