Date: Sun, 3 Dec 2017 17:35:29 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455413 - in head: mail/thunderbird www/firefox www/firefox-esr www/libxul www/palemoon www/seamonkey www/waterfox Message-ID: <201712031735.vB3HZTUq078037@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Sun Dec 3 17:35:29 2017 New Revision: 455413 URL: https://svnweb.freebsd.org/changeset/ports/455413 Log: gecko: unbreak with non-default python version after r455210 $ make [...] Installing py36-sqlite3-3.6.3_7... ===> firefox-57.0.1,1 depends on package: py27-sqlite3>0 - not found *** Error code 1 PR: 224055 Submitted by: Peter Wullinger Modified: head/mail/thunderbird/Makefile (contents, props changed) head/www/firefox-esr/Makefile (contents, props changed) head/www/firefox/Makefile (contents, props changed) head/www/libxul/Makefile (contents, props changed) head/www/palemoon/Makefile (contents, props changed) head/www/seamonkey/Makefile (contents, props changed) head/www/waterfox/Makefile (contents, props changed) Modified: head/mail/thunderbird/Makefile ============================================================================== --- head/mail/thunderbird/Makefile Sun Dec 3 17:32:51 2017 (r455412) +++ head/mail/thunderbird/Makefile Sun Dec 3 17:35:29 2017 (r455413) @@ -20,7 +20,7 @@ BUILD_DEPENDS= nspr>=4.13.1:devel/nspr \ libvorbis>=1.3.5,3:audio/libvorbis \ libvpx>=1.5.0:multimedia/libvpx \ sqlite3>=3.17.0:databases/sqlite3 \ - ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 \ + ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ autoconf-2.13:devel/autoconf213 \ yasm:devel/yasm \ Modified: head/www/firefox-esr/Makefile ============================================================================== --- head/www/firefox-esr/Makefile Sun Dec 3 17:32:51 2017 (r455412) +++ head/www/firefox-esr/Makefile Sun Dec 3 17:35:29 2017 (r455413) @@ -23,7 +23,7 @@ BUILD_DEPENDS= nspr>=4.13.1:devel/nspr \ libvorbis>=1.3.5,3:audio/libvorbis \ libvpx>=1.5.0:multimedia/libvpx \ sqlite3>=3.17.0:databases/sqlite3 \ - ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 \ + ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ autoconf-2.13:devel/autoconf213 \ yasm:devel/yasm \ Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Sun Dec 3 17:32:51 2017 (r455412) +++ head/www/firefox/Makefile Sun Dec 3 17:35:29 2017 (r455413) @@ -22,7 +22,7 @@ BUILD_DEPENDS= nspr>=4.17:devel/nspr \ libvorbis>=1.3.5,3:audio/libvorbis \ libvpx>=1.5.0:multimedia/libvpx \ sqlite3>=3.20.1:databases/sqlite3 \ - ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 \ + ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ autoconf-2.13:devel/autoconf213 \ yasm:devel/yasm \ Modified: head/www/libxul/Makefile ============================================================================== --- head/www/libxul/Makefile Sun Dec 3 17:32:51 2017 (r455412) +++ head/www/libxul/Makefile Sun Dec 3 17:35:29 2017 (r455413) @@ -30,7 +30,7 @@ BUILD_DEPENDS= nspr>=4.12:devel/nspr \ libvorbis>=1.3.5,3:audio/libvorbis \ libvpx>=1.5.0:multimedia/libvpx \ sqlite3>=3.9.1:databases/sqlite3 \ - ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 \ + ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ autoconf-2.13:devel/autoconf213 \ yasm:devel/yasm \ Modified: head/www/palemoon/Makefile ============================================================================== --- head/www/palemoon/Makefile Sun Dec 3 17:32:51 2017 (r455412) +++ head/www/palemoon/Makefile Sun Dec 3 17:35:29 2017 (r455413) @@ -18,7 +18,7 @@ BUILD_DEPENDS= nspr>=4.15:devel/nspr \ png>=1.6.16:graphics/png \ libvpx>=1.5.0:multimedia/libvpx \ sqlite3>=3.19.3:databases/sqlite3 \ - ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 \ + ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ autoconf-2.13:devel/autoconf213 \ yasm:devel/yasm \ zip:archivers/zip Modified: head/www/seamonkey/Makefile ============================================================================== --- head/www/seamonkey/Makefile Sun Dec 3 17:32:51 2017 (r455412) +++ head/www/seamonkey/Makefile Sun Dec 3 17:35:29 2017 (r455413) @@ -22,7 +22,7 @@ BUILD_DEPENDS= nspr>=4.13.1:devel/nspr \ libvorbis>=1.3.5,3:audio/libvorbis \ libvpx>=1.5.0:multimedia/libvpx \ sqlite3>=3.17.0:databases/sqlite3 \ - ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 \ + ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ autoconf-2.13:devel/autoconf213 \ yasm:devel/yasm \ Modified: head/www/waterfox/Makefile ============================================================================== --- head/www/waterfox/Makefile Sun Dec 3 17:32:51 2017 (r455412) +++ head/www/waterfox/Makefile Sun Dec 3 17:35:29 2017 (r455413) @@ -21,7 +21,7 @@ BUILD_DEPENDS= nspr>=4.16:devel/nspr \ libvorbis>=1.3.5,3:audio/libvorbis \ libvpx>=1.5.0:multimedia/libvpx \ sqlite3>=3.19.3:databases/sqlite3 \ - ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 \ + ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ autoconf-2.13:devel/autoconf213 \ yasm:devel/yasm \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712031735.vB3HZTUq078037>