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 615561382C5 for ; Sat, 6 Feb 2021 21:47:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF8A0E086D; Sat, 6 Feb 2021 21:47:13 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 9A964E086D for ; Sat, 6 Feb 2021 21:47:13 +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 099C2343622 for ; Sat, 6 Feb 2021 21:47:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B799D46F for ; Sat, 6 Feb 2021 21:47:10 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1612648026.e5ffb0981b1e222e55cf30e3274150ddcaeb2f9b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/pelican/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/pelican/pelican-4.2.0-r1.ebuild app-text/pelican/pelican-4.2.0.ebuild app-text/pelican/pelican-4.5.1-r1.ebuild app-text/pelican/pelican-4.5.1.ebuild X-VCS-Directories: app-text/pelican/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e5ffb0981b1e222e55cf30e3274150ddcaeb2f9b X-VCS-Branch: master Date: Sat, 6 Feb 2021 21:47:10 +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: 60b88250-3492-49c4-9cd5-5754a14ff120 X-Archives-Hash: dea474220f39c3dc87fa8ef813d43027 commit: e5ffb0981b1e222e55cf30e3274150ddcaeb2f9b Author: Sam James gentoo org> AuthorDate: Sat Feb 6 21:37:16 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Feb 6 21:47:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5ffb098 app-text/pelican: fix DEPEND typo in earlier versions Fixed in 4.5.3 anyway but let's do this just to be consistent. Closes: https://bugs.gentoo.org/648650 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> .../{pelican-4.2.0.ebuild => pelican-4.2.0-r1.ebuild} | 15 +++++++++------ .../{pelican-4.5.1.ebuild => pelican-4.5.1-r1.ebuild} | 15 +++++++++------ 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/app-text/pelican/pelican-4.2.0.ebuild b/app-text/pelican/pelican-4.2.0-r1.ebuild similarity index 95% rename from app-text/pelican/pelican-4.2.0.ebuild rename to app-text/pelican/pelican-4.2.0-r1.ebuild index d7e224477c4..78bf8edfb8c 100644 --- a/app-text/pelican/pelican-4.2.0.ebuild +++ b/app-text/pelican/pelican-4.2.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -15,6 +15,12 @@ SLOT="0" KEYWORDS="amd64 x86" IUSE="doc examples markdown test" +BDEPEND=" + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/markdown[${PYTHON_USEDEP}] + ) +" DEPEND=">=dev-python/feedgenerator-1.9[${PYTHON_USEDEP}] >=dev-python/jinja-2.7[${PYTHON_USEDEP}] dev-python/docutils[${PYTHON_USEDEP}] @@ -26,11 +32,8 @@ DEPEND=">=dev-python/feedgenerator-1.9[${PYTHON_USEDEP}] dev-python/python-dateutil[${PYTHON_USEDEP}] doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) markdown? ( dev-python/markdown[${PYTHON_USEDEP}] ) - test? ( - dev-python/nose[${PYTHON_USEDEP}] - dev-python/markdown[${PYTHON_USEDEP}] - )" -RDEPEND="" +" +RDEPEND="${DEPEND}" RESTRICT="test" DOCS=( README.rst ) diff --git a/app-text/pelican/pelican-4.5.1.ebuild b/app-text/pelican/pelican-4.5.1-r1.ebuild similarity index 95% rename from app-text/pelican/pelican-4.5.1.ebuild rename to app-text/pelican/pelican-4.5.1-r1.ebuild index 5f35be70237..b43b78f34e5 100644 --- a/app-text/pelican/pelican-4.5.1.ebuild +++ b/app-text/pelican/pelican-4.5.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -16,6 +16,12 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc examples markdown test" +BDEPEND=" + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/markdown[${PYTHON_USEDEP}] + ) +" DEPEND=">=dev-python/feedgenerator-1.9[${PYTHON_USEDEP}] >=dev-python/jinja-2.7[${PYTHON_USEDEP}] dev-python/docutils[${PYTHON_USEDEP}] @@ -27,11 +33,8 @@ DEPEND=">=dev-python/feedgenerator-1.9[${PYTHON_USEDEP}] dev-python/python-dateutil[${PYTHON_USEDEP}] doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) markdown? ( dev-python/markdown[${PYTHON_USEDEP}] ) - test? ( - dev-python/nose[${PYTHON_USEDEP}] - dev-python/markdown[${PYTHON_USEDEP}] - )" -RDEPEND="" +" +RDEPEND="${DEPEND}" RESTRICT="test" DOCS=( README.rst )