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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2CC86158091 for ; Tue, 24 May 2022 13:02:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA57DE0878; Tue, 24 May 2022 13:02:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 16E39E0878 for ; Tue, 24 May 2022 13:02:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1C4D7341DA4 for ; Tue, 24 May 2022 13:02:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 31AC64B2 for ; Tue, 24 May 2022 13:02:49 +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: <1653397347.01d3eb8c427bc50fbdd91a073f0a5b6da5aed33c.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mkdocs-bootswatch/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/mkdocs-bootswatch/mkdocs-bootswatch-1.1-r2.ebuild X-VCS-Directories: dev-python/mkdocs-bootswatch/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 01d3eb8c427bc50fbdd91a073f0a5b6da5aed33c X-VCS-Branch: master Date: Tue, 24 May 2022 13:02:49 +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: 6df8c73c-21b0-45f8-be47-6ab0f2cedc84 X-Archives-Hash: a376e552caf218bd9b2415f07040cb8b commit: 01d3eb8c427bc50fbdd91a073f0a5b6da5aed33c Author: Andrew Ammerlaan gentoo org> AuthorDate: Tue May 24 12:14:30 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Tue May 24 13:02:27 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01d3eb8c dev-python/mkdocs-bootswatch: update EAPI 7 -> 8, enable py3.11, pep517 Signed-off-by: Andrew Ammerlaan gentoo.org> .../mkdocs-bootswatch-1.1-r2.ebuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/dev-python/mkdocs-bootswatch/mkdocs-bootswatch-1.1-r2.ebuild b/dev-python/mkdocs-bootswatch/mkdocs-bootswatch-1.1-r2.ebuild new file mode 100644 index 000000000000..85569d8bdb3e --- /dev/null +++ b/dev-python/mkdocs-bootswatch/mkdocs-bootswatch-1.1-r2.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) +DISTUTILS_USE_PEP517=setuptools +DOCS_BUILDER="mkdocs" + +inherit distutils-r1 docs + +DESCRIPTION="Bootswatch themes for MkDocs" +HOMEPAGE="https://www.mkdocs.org https://github.com/mkdocs/mkdocs-bootswatch" +SRC_URI="https://github.com/mkdocs/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-python/mkdocs"