From owner-svn-ports-all@freebsd.org Tue Dec 29 12:35:48 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 707944BC8C8; Tue, 29 Dec 2020 12:35:48 +0000 (UTC) (envelope-from rene@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 4D4v5w2l40z4TKJ; Tue, 29 Dec 2020 12:35:48 +0000 (UTC) (envelope-from rene@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 50CB8400C; Tue, 29 Dec 2020 12:35:48 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BTCZmiJ084615; Tue, 29 Dec 2020 12:35:48 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BTCZmMI084614; Tue, 29 Dec 2020 12:35:48 GMT (envelope-from rene@FreeBSD.org) Message-Id: <202012291235.0BTCZmMI084614@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Tue, 29 Dec 2020 12:35:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r559574 - head/devel/viewvc X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: head/devel/viewvc X-SVN-Commit-Revision: 559574 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.34 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, 29 Dec 2020 12:35:48 -0000 Author: rene Date: Tue Dec 29 12:35:47 2020 New Revision: 559574 URL: https://svnweb.freebsd.org/changeset/ports/559574 Log: devel/viewvc: remove optional dependency on expired databases/py-MySQLdb Modified: head/devel/viewvc/Makefile Modified: head/devel/viewvc/Makefile ============================================================================== --- head/devel/viewvc/Makefile Tue Dec 29 12:33:50 2020 (r559573) +++ head/devel/viewvc/Makefile Tue Dec 29 12:35:47 2020 (r559574) @@ -19,7 +19,7 @@ USE_RC_SUBR= viewvc NO_BUILD= yes NO_OPTIONS_SORT= yes -OPTIONS_DEFINE= WEBSRV APMOD SVN MYSQL +OPTIONS_DEFINE= WEBSRV APMOD SVN OPTIONS_DEFAULT= WEBSRV APACHE SVN OPTIONS_SINGLE= WEBSRV APMOD @@ -30,12 +30,10 @@ WEBSRV_DESC= Enable web server support APMOD_DESC= depend on Apache module MODWSGI_DESC= Add mod_wsgi to the list of package dependencies -MYSQL_DESC= Bonsai-like repository query facilities APACHE_USE= APACHE_RUN=24+ LIGHTTPD_RUN_DEPENDS= lighttpd:www/lighttpd 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} SVN_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}subversion-lts>=0:devel/py-subversion@${PY_FLAVOR}