From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5077B138334 for ; Mon, 11 Mar 2019 14:11:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62BD7E0A6E; Mon, 11 Mar 2019 14:11:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1AEF0E0A6E for ; Mon, 11 Mar 2019 14:11:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3672E33BF53 for ; Mon, 11 Mar 2019 14:11:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3B2452B for ; Mon, 11 Mar 2019 14:11:48 +0000 (UTC) From: "Justin Bronder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Bronder" Message-ID: <1552313424.ddd3840a7b57e788682771b2b769608d0aa848b5.jsbronder@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/qutebrowser/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/qutebrowser/metadata.xml www-client/qutebrowser/qutebrowser-1.5.2-r1.ebuild www-client/qutebrowser/qutebrowser-1.6.0.ebuild www-client/qutebrowser/qutebrowser-9999.ebuild X-VCS-Directories: www-client/qutebrowser/ X-VCS-Committer: jsbronder X-VCS-Committer-Name: Justin Bronder X-VCS-Revision: ddd3840a7b57e788682771b2b769608d0aa848b5 X-VCS-Branch: master Date: Mon, 11 Mar 2019 14:11:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5d2dfac3-a90e-4973-8116-b1b7743f1011 X-Archives-Hash: 5c43dc47c40366e9ccced216d93a388c commit: ddd3840a7b57e788682771b2b769608d0aa848b5 Author: Maximilian Friedersdorff friedersdorff com> AuthorDate: Thu Feb 14 10:55:15 2019 +0000 Commit: Justin Bronder gentoo org> CommitDate: Mon Mar 11 14:10:24 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddd3840a www-client/qutebrowser: Add scripts use flag Closes: https://bugs.gentoo.org/622980 Package-Manager: Portage-2.3.60, Repoman-2.3.12 Signed-off-by: Maximilian Friedersdorff friedersdorff.com> Signed-off-by: Justin Bronder gentoo.org> www-client/qutebrowser/metadata.xml | 4 ++++ www-client/qutebrowser/qutebrowser-1.5.2-r1.ebuild | 13 ++++++++++++- www-client/qutebrowser/qutebrowser-1.6.0.ebuild | 13 ++++++++++++- www-client/qutebrowser/qutebrowser-9999.ebuild | 13 ++++++++++++- 4 files changed, 40 insertions(+), 3 deletions(-) diff --git a/www-client/qutebrowser/metadata.xml b/www-client/qutebrowser/metadata.xml index 7623d04971c..3c4b9436adf 100644 --- a/www-client/qutebrowser/metadata.xml +++ b/www-client/qutebrowser/metadata.xml @@ -12,4 +12,8 @@ qutebrowser/qutebrowser + + Installs userscripts from the misc/userscripts + directory to /usr/share/qutebrowser/userscripts. + diff --git a/www-client/qutebrowser/qutebrowser-1.5.2-r1.ebuild b/www-client/qutebrowser/qutebrowser-1.5.2-r1.ebuild index 9870584a71b..a464d065fdc 100644 --- a/www-client/qutebrowser/qutebrowser-1.5.2-r1.ebuild +++ b/www-client/qutebrowser/qutebrowser-1.5.2-r1.ebuild @@ -19,7 +19,7 @@ HOMEPAGE="https://www.qutebrowser.org/ https://github.com/qutebrowser/qutebrowse LICENSE="GPL-3" SLOT="0" -IUSE="test" +IUSE="scripts test" COMMON_DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" DEPEND="${COMMON_DEPEND} @@ -55,6 +55,17 @@ python_install_all() { domenu misc/${PN}.desktop doicon -s scalable icons/${PN}.svg + if use scripts; then + # Install only those userscripts that have an explicit license header + exeinto /usr/share/qutebrowser/userscripts/ + doexe misc/userscripts/dmenu_qutebrowser + doexe misc/userscripts/openfeeds + doexe misc/userscripts/qute-keepass + doexe misc/userscripts/qute-pass + doexe misc/userscripts/rss + doexe misc/userscripts/tor_identity + fi + distutils-r1_python_install_all } diff --git a/www-client/qutebrowser/qutebrowser-1.6.0.ebuild b/www-client/qutebrowser/qutebrowser-1.6.0.ebuild index 9870584a71b..a464d065fdc 100644 --- a/www-client/qutebrowser/qutebrowser-1.6.0.ebuild +++ b/www-client/qutebrowser/qutebrowser-1.6.0.ebuild @@ -19,7 +19,7 @@ HOMEPAGE="https://www.qutebrowser.org/ https://github.com/qutebrowser/qutebrowse LICENSE="GPL-3" SLOT="0" -IUSE="test" +IUSE="scripts test" COMMON_DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" DEPEND="${COMMON_DEPEND} @@ -55,6 +55,17 @@ python_install_all() { domenu misc/${PN}.desktop doicon -s scalable icons/${PN}.svg + if use scripts; then + # Install only those userscripts that have an explicit license header + exeinto /usr/share/qutebrowser/userscripts/ + doexe misc/userscripts/dmenu_qutebrowser + doexe misc/userscripts/openfeeds + doexe misc/userscripts/qute-keepass + doexe misc/userscripts/qute-pass + doexe misc/userscripts/rss + doexe misc/userscripts/tor_identity + fi + distutils-r1_python_install_all } diff --git a/www-client/qutebrowser/qutebrowser-9999.ebuild b/www-client/qutebrowser/qutebrowser-9999.ebuild index 10675792279..67471c02f62 100644 --- a/www-client/qutebrowser/qutebrowser-9999.ebuild +++ b/www-client/qutebrowser/qutebrowser-9999.ebuild @@ -19,7 +19,7 @@ HOMEPAGE="https://www.qutebrowser.org/ https://github.com/qutebrowser/qutebrowse LICENSE="GPL-3" SLOT="0" -IUSE="test" +IUSE="scripts test" COMMON_DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" DEPEND="${COMMON_DEPEND} @@ -55,6 +55,17 @@ python_install_all() { domenu misc/org.${PN}.${PN}.desktop doicon -s scalable icons/${PN}.svg + if use scripts; then + # Install only those userscripts that have an explicit license header + exeinto /usr/share/qutebrowser/userscripts/ + doexe misc/userscripts/dmenu_qutebrowser + doexe misc/userscripts/openfeeds + doexe misc/userscripts/qute-keepass + doexe misc/userscripts/qute-pass + doexe misc/userscripts/rss + doexe misc/userscripts/tor_identity + fi + distutils-r1_python_install_all }