From owner-svn-ports-head@freebsd.org Tue Jun 2 18:36:37 2020 Return-Path: Delivered-To: svn-ports-head@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 0D8882F68FA; Tue, 2 Jun 2020 18:36:37 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 49c1385bb8z4TBb; Tue, 2 Jun 2020 18:36:36 +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 B6E2021222; Tue, 2 Jun 2020 18:36:36 +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 052IaaMP071056; Tue, 2 Jun 2020 18:36:36 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 052IaZPC071048; Tue, 2 Jun 2020 18:36:35 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <202006021836.052IaZPC071048@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 2 Jun 2020 18:36:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r537567 - in head: devel/cvs2svn devel/py-subversion devel/viewvc www/trac www/trac-devel X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in head: devel/cvs2svn devel/py-subversion devel/viewvc www/trac www/trac-devel X-SVN-Commit-Revision: 537567 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.33 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: Tue, 02 Jun 2020 18:36:37 -0000 Author: antoine Date: Tue Jun 2 18:36:35 2020 New Revision: 537567 URL: https://svnweb.freebsd.org/changeset/ports/537567 Log: Fix devel/py-subversion and ports depending on it With hat: portmgr Modified: head/devel/cvs2svn/Makefile head/devel/py-subversion/Makefile head/devel/viewvc/Makefile head/www/trac-devel/Makefile head/www/trac/Makefile Modified: head/devel/cvs2svn/Makefile ============================================================================== --- head/devel/cvs2svn/Makefile Tue Jun 2 18:13:37 2020 (r537566) +++ head/devel/cvs2svn/Makefile Tue Jun 2 18:36:35 2020 (r537567) @@ -35,14 +35,7 @@ SUBVERSION_DESC= Build with subversion support GIT_DESC= Build with git support BAZAAR_DESC= Build with Bazaar support -.if defined(WITH_SUBVERSION_VER) && ${WITH_SUBVERSION_VER} == LTS SUBVERSION_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}subversion-lts>=0:devel/py-subversion@${PY_FLAVOR} -.elif defined(WITH_SUBVERSION_VER) && ${WITH_SUBVERSION_VER} == 19 -SUBVERSION_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}subversion19>=0:devel/py-subversion@${PY_FLAVOR} -.else -# default version -SUBVERSION_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}subversion>=0:devel/py-subversion@${PY_FLAVOR} -.endif GIT_RUN_DEPENDS= ${LOCALBASE}/bin/git:devel/git BAZAAR_RUN_DEPENDS= ${LOCALBASE}/bin/bzr:devel/bzr Modified: head/devel/py-subversion/Makefile ============================================================================== --- head/devel/py-subversion/Makefile Tue Jun 2 18:13:37 2020 (r537566) +++ head/devel/py-subversion/Makefile Tue Jun 2 18:36:35 2020 (r537567) @@ -9,7 +9,7 @@ COMMENT= Python bindings for version control system BUILD_DEPENDS= ${LOCALBASE}/include/py3c.h:devel/py3c -USES= python:${BINDINGS_PYTHON_VERSION} +USES= python USE_PYTHON= flavors py3kplist PORTREVISION_114= 0 @@ -17,17 +17,15 @@ PORTREVISION_LTS= 0 SVN_BUILD_BINDINGS= yes +.if ${FLAVOR:Upy37:Mpy3*} +WITH_SUBVERSION_VER= 114 +.else +WITH_SUBVERSION_VER= LTS +.endif + .include "${.CURDIR}/../../devel/subversion/Makefile.addons" CATEGORIES+= python - -.if ${WITH_SUBVERSION_VER} == 114 -BINDINGS_PYTHON_VERSION= 3.5+ -.elif ${WITH_SUBVERSION_VER} == LTS -BINDINGS_PYTHON_VERSION= 2.7 -.else -BROKEN= Wrong WITH_SUBVERSION_VER=${WITH_SUBVERSION_VER}, only 114 (default) and LTS are supported -.endif CONFIGURE_ARGS+= --without-gnome-keyring \ --without-kwallet \ Modified: head/devel/viewvc/Makefile ============================================================================== --- head/devel/viewvc/Makefile Tue Jun 2 18:13:37 2020 (r537566) +++ head/devel/viewvc/Makefile Tue Jun 2 18:36:35 2020 (r537567) @@ -37,14 +37,7 @@ MODPYTHON35_RUN_DEPENDS=${APACHE_PKGNAMEPREFIX}mod_pyt MODWSGI_RUN_DEPENDS= ${APACHE_PKGNAMEPREFIX}${PYTHON_PKGNAMEPREFIX}mod_wsgi>=4.4.13:www/mod_wsgi4@${PY_FLAVOR} MYSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MySQLdb>=0:databases/py-MySQLdb@${PY_FLAVOR} -.if defined(WITH_SUBVERSION_VER) && ${WITH_SUBVERSION_VER} == LTS SVN_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}subversion-lts>=0:devel/py-subversion@${PY_FLAVOR} -.elif defined(WITH_SUBVERSION_VER) && ${WITH_SUBVERSION_VER} == 19 -SVN_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}subversion19>=0:devel/py-subversion@${PY_FLAVOR} -.else -# default version -SVN_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}subversion>=0:devel/py-subversion@${PY_FLAVOR} -.endif RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pygments>=1.6:textproc/py-pygments@${PY_FLAVOR} Modified: head/www/trac-devel/Makefile ============================================================================== --- head/www/trac-devel/Makefile Tue Jun 2 18:13:37 2020 (r537566) +++ head/www/trac-devel/Makefile Tue Jun 2 18:36:35 2020 (r537567) @@ -50,7 +50,7 @@ PYGMENTS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pygments> TZ_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz@${PY_FLAVOR} PGSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psycopg2>0:databases/py-psycopg2@${PY_FLAVOR} SQLITE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} -SVN_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}subversion>0:devel/py-subversion@${PY_FLAVOR} +SVN_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}subversion-lts>0:devel/py-subversion@${PY_FLAVOR} post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/sample-plugins Modified: head/www/trac/Makefile ============================================================================== --- head/www/trac/Makefile Tue Jun 2 18:13:37 2020 (r537566) +++ head/www/trac/Makefile Tue Jun 2 18:36:35 2020 (r537567) @@ -50,7 +50,7 @@ PYGMENTS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pygments> TZ_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz@${PY_FLAVOR} PGSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psycopg2>0:databases/py-psycopg2@${PY_FLAVOR} SQLITE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} -SVN_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}subversion>0:devel/py-subversion@${PY_FLAVOR} +SVN_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}subversion-lts>0:devel/py-subversion@${PY_FLAVOR} post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/sample-plugins