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 D4E22138351 for ; Sat, 11 Apr 2020 08:15:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26F9CE0A91; Sat, 11 Apr 2020 08:15:15 +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 0F4C0E0A91 for ; Sat, 11 Apr 2020 08:15:15 +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 2037E34EEAB for ; Sat, 11 Apr 2020 08:15:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6D011CF for ; Sat, 11 Apr 2020 08:15:12 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1586592869.0967dec51e36160fa84195b44de7de3b86a6d0d3.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/pymdown-extensions/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/pymdown-extensions/pymdown-extensions-7.0.0.ebuild X-VCS-Directories: dev-python/pymdown-extensions/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 0967dec51e36160fa84195b44de7de3b86a6d0d3 X-VCS-Branch: master Date: Sat, 11 Apr 2020 08:15:12 +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: 584efc44-7358-4903-9566-9f99a94212d1 X-Archives-Hash: 78be613ced719f3d92fe3d4074dee075 Message-ID: <20200411081512.jN2RmJDurJFq7osNkp7q2OLWyVRMJgRVrM3EWKmcWDU@z> commit: 0967dec51e36160fa84195b44de7de3b86a6d0d3 Author: Andrew Ammerlaan riseup net> AuthorDate: Sat Apr 11 08:14:29 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Sat Apr 11 08:14:29 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0967dec5 dev-python/pymdown-extensions: do not depend on mkdocs-git-rev.. Package-Manager: Portage-2.3.98, Repoman-2.3.22 Signed-off-by: Andrew Ammerlaan riseup.net> .../pymdown-extensions/pymdown-extensions-7.0.0.ebuild | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/dev-python/pymdown-extensions/pymdown-extensions-7.0.0.ebuild b/dev-python/pymdown-extensions/pymdown-extensions-7.0.0.ebuild index 71c657c..ccca17b 100644 --- a/dev-python/pymdown-extensions/pymdown-extensions-7.0.0.ebuild +++ b/dev-python/pymdown-extensions/pymdown-extensions-7.0.0.ebuild @@ -8,7 +8,6 @@ PYTHON_COMPAT=( python3_{6,7,8} ) DOCBUILDER="mkdocs" DOCDEPEND=" dev-python/mkdocs-minify-plugin - dev-python/mkdocs-git-revision-date-localized-plugin dev-python/mkdocs-material dev-python/pymdown-lexers dev-python/pyspelling @@ -36,11 +35,10 @@ DEPEND="test? ( distutils_enable_tests pytest python_prepare_all() { - # git revision date plugin needs git repo to build - if use doc; then - git init || die - git add -A || die - git commit -q -m ".." || die - fi + # git revision data plugin needs git repo to build + # do not depend on this + sed -i -e '/git-revision-date-localized/d' \ + mkdocs.yml || die + distutils-r1_python_prepare_all }