From owner-svn-ports-head@freebsd.org Tue Mar 20 17:15:46 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DB583F5E0AA; Tue, 20 Mar 2018 17:15:45 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 892457D251; Tue, 20 Mar 2018 17:15:45 +0000 (UTC) (envelope-from novel@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 65ED21FA41; Tue, 20 Mar 2018 17:15:45 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2KHFjdm039778; Tue, 20 Mar 2018 17:15:45 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2KHFjwM039776; Tue, 20 Mar 2018 17:15:45 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201803201715.w2KHFjwM039776@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Tue, 20 Mar 2018 17:15:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465096 - head/www/qutebrowser X-SVN-Group: ports-head X-SVN-Commit-Author: novel X-SVN-Commit-Paths: head/www/qutebrowser X-SVN-Commit-Revision: 465096 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.25 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, 20 Mar 2018 17:15:46 -0000 Author: novel Date: Tue Mar 20 17:15:44 2018 New Revision: 465096 URL: https://svnweb.freebsd.org/changeset/ports/465096 Log: www/qutebrowser: update to 1.2.1 - Update to 1.2.1; - Switch MASTER_SITE to CHEESESHOP and install documentation this distfile provides; - Add WebEngine backend support and drop pkg-message that tells only WebKit is supported; - Add missing audio/alsa-plugins dependency for sound support; - Drop deprecated optsuffix; - Install .desktop file. Reviewed by: jrm Differential Revision: https://reviews.freebsd.org/D14723 Deleted: head/www/qutebrowser/pkg-message Modified: head/www/qutebrowser/Makefile head/www/qutebrowser/distinfo Modified: head/www/qutebrowser/Makefile ============================================================================== --- head/www/qutebrowser/Makefile Tue Mar 20 17:12:48 2018 (r465095) +++ head/www/qutebrowser/Makefile Tue Mar 20 17:15:44 2018 (r465096) @@ -1,9 +1,9 @@ # $FreeBSD$ PORTNAME= qutebrowser -DISTVERSIONPREFIX= v -DISTVERSION= 1.0.4 +DISTVERSION= 1.2.1 CATEGORIES= www +MASTER_SITES= CHEESESHOP MAINTAINER= novel@FreeBSD.org COMMENT= Keyboard-focused browser with a minimal GUI @@ -18,13 +18,28 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}attrs>=0:devel/py- ${PYTHON_PKGNAMEPREFIX}pygments>=0:textproc/py-pygments@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pyPEG2>=0:textproc/py-pyPEG2@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}sip>=0:devel/py-sip@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}sip>=0:devel/py-sip@${FLAVOR} \ + ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:audio/alsa-plugins -NO_ARCH= yes -USES= python:3.5+ pyqt:5 -USE_PYQT= core opengl printsupport sql webkit webkitwidgets widgets qml +USES= desktop-file-utils python:3.5+ pyqt:5 +USE_PYQT= core opengl printsupport sql widgets qml USE_QT5= sql-sqlite3 -USE_PYTHON= distutils autoplist optsuffix -USE_GITHUB= yes +USE_PYTHON= distutils autoplist + +NO_ARCH= yes +PLIST_FILES= share/applications/${PORTNAME}-${PYTHON_VER}.desktop + +OPTIONS_MULTI= BACKEND +OPTIONS_MULTI_BACKEND= WEBKIT WEBENGINE +OPTIONS_DEFAULT= WEBKIT WEBENGINE + +WEBENGINE_DESC= WebEngine webpage renderer support + +WEBKIT_USE= PYQT=webkit,webkitwidgets +WEBENGINE_USE= PYQT=webengine,webchannel + +post-install: + ${INSTALL_DATA} ${WRKSRC}/misc/${PORTNAME}.desktop \ + ${STAGEDIR}${PREFIX}/share/applications/${PORTNAME}-${PYTHON_VER}.desktop .include Modified: head/www/qutebrowser/distinfo ============================================================================== --- head/www/qutebrowser/distinfo Tue Mar 20 17:12:48 2018 (r465095) +++ head/www/qutebrowser/distinfo Tue Mar 20 17:15:44 2018 (r465096) @@ -1,3 +1,3 @@ -TIMESTAMP = 1511952262 -SHA256 (qutebrowser-qutebrowser-v1.0.4_GH0.tar.gz) = 185378deed1a612795652b84bcfbdcc90bc2a5db55ff90fa650e9e4b58223a70 -SIZE (qutebrowser-qutebrowser-v1.0.4_GH0.tar.gz) = 2804724 +TIMESTAMP = 1521473409 +SHA256 (qutebrowser-1.2.1.tar.gz) = 1ce6cf2634f06d3e715c53b50e4d042ba04aa39207ec318039a2a333e2d46beb +SIZE (qutebrowser-1.2.1.tar.gz) = 3626806