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 B7D59138330 for ; Wed, 10 Jan 2018 18:06:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0CA10E094F; Wed, 10 Jan 2018 18:06:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 DDCCCE094F for ; Wed, 10 Jan 2018 18:06:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 80F0A335C02 for ; Wed, 10 Jan 2018 18:06:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 187C3133 for ; Wed, 10 Jan 2018 18:06:47 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1515607573.65420ce0848196a043af48a3332746d395128b3b.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/bzr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/bzr/bzr-2.7.1_pre.ebuild X-VCS-Directories: dev-vcs/bzr/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 65420ce0848196a043af48a3332746d395128b3b X-VCS-Branch: master Date: Wed, 10 Jan 2018 18:06:47 +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-Archives-Salt: 70fa3d1d-f35c-4f9e-a8be-7b7bb3179631 X-Archives-Hash: b37adc518c6bde5ff8f14fdff7929247 commit: 65420ce0848196a043af48a3332746d395128b3b Author: Brian Evans gentoo org> AuthorDate: Wed Jan 10 18:06:13 2018 +0000 Commit: Brian Evans gentoo org> CommitDate: Wed Jan 10 18:06:13 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65420ce0 dev-vcs/bzr: Add missing build-time PYTHON_USEDEP flags from bug 636838 Remove eutils eclass as it is not used Bug: https://bugs.gentoo.org/636838 Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-vcs/bzr/bzr-2.7.1_pre.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-vcs/bzr/bzr-2.7.1_pre.ebuild b/dev-vcs/bzr/bzr-2.7.1_pre.ebuild index aaf784e32da..530fa338ff0 100644 --- a/dev-vcs/bzr/bzr-2.7.1_pre.ebuild +++ b/dev-vcs/bzr/bzr-2.7.1_pre.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -14,14 +14,14 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~spa IUSE="curl doc +sftp test" PLOCALES="ar ast bs ca cs de el en_AU en_GB es fa fo fr gl he id it ja ko ms my nb nl oc pl pt_BR ro ru sco si sk sr sv tr ug uk vi zh_CN" -inherit bash-completion-r1 distutils-r1 eutils flag-o-matic versionator l10n -SERIES=$(get_version_component_range 1-2) +inherit bash-completion-r1 distutils-r1 flag-o-matic l10n +#SERIES=$(get_version_component_range 1-2) SRC_URI="https://dev.gentoo.org/~grozin/${P}.tar.gz" RDEPEND="curl? ( dev-python/pycurl[${PYTHON_USEDEP}] ) sftp? ( dev-python/paramiko[${PYTHON_USEDEP}] )" -DEPEND="|| ( dev-python/cython dev-python/pyrex ) +DEPEND="|| ( dev-python/cython[${PYTHON_USEDEP}] dev-python/pyrex[${PYTHON_USEDEP}] ) test? ( ${RDEPEND} >=dev-python/pyftpdlib-0.7.0[${PYTHON_USEDEP}] dev-python/subunit @@ -77,10 +77,10 @@ python_install_all() { if use doc; then docinto developers - dodoc -r doc/developers/* || die + dodoc -r doc/developers/* for doc in mini-tutorial tutorials user-{guide,reference}; do docinto ${doc} - dodoc -r doc/en/${doc}/* || die + dodoc -r doc/en/${doc}/* done fi