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 C18CC1382C5 for ; Mon, 3 May 2021 22:39:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D222E088C; Mon, 3 May 2021 22:39:51 +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 027E7E088C for ; Mon, 3 May 2021 22:39:50 +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 20CF6335D02 for ; Mon, 3 May 2021 22:39:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CFCB0737 for ; Mon, 3 May 2021 22:39:48 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1620081582.b56b3815db437d9edbac08b9c81127e4efc36316.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/gi-docgen/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/gi-docgen/Manifest dev-util/gi-docgen/gi-docgen-2021.5.ebuild dev-util/gi-docgen/metadata.xml X-VCS-Directories: dev-util/gi-docgen/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: b56b3815db437d9edbac08b9c81127e4efc36316 X-VCS-Branch: master Date: Mon, 3 May 2021 22:39: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: 387d3de4-2974-4b79-95ef-6d3084f75bc2 X-Archives-Hash: 36c2bd027c68c756b1aa4dcb4558c9f1 commit: b56b3815db437d9edbac08b9c81127e4efc36316 Author: Matt Turner gentoo org> AuthorDate: Mon May 3 15:37:27 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Mon May 3 22:39:42 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b56b3815 dev-util/gi-docgen: Add new package Closes: https://bugs.gentoo.org/787482 Signed-off-by: Matt Turner gentoo.org> dev-util/gi-docgen/Manifest | 1 + dev-util/gi-docgen/gi-docgen-2021.5.ebuild | 29 +++++++++++++++++++++++++++++ dev-util/gi-docgen/metadata.xml | 8 ++++++++ 3 files changed, 38 insertions(+) diff --git a/dev-util/gi-docgen/Manifest b/dev-util/gi-docgen/Manifest new file mode 100644 index 00000000000..1f254544e60 --- /dev/null +++ b/dev-util/gi-docgen/Manifest @@ -0,0 +1 @@ +DIST gi-docgen-2021.5.tar.gz 1251568 BLAKE2B 6dfd34ba97881562e5474874e3d51214b9536356d02c341ac2e7b135c49c5948114e0c78b2d53678ca09006238ec5ead50a1c0a50328ea5392960cd8c434c8e9 SHA512 30b91c2edf4be92eb4164ba64433948d2ae1c2857e54ac07a71aa1393d2ab61b77371c03504b521049f1841093ef3384788eaffab4208ef4e6fda8f254736ec6 diff --git a/dev-util/gi-docgen/gi-docgen-2021.5.ebuild b/dev-util/gi-docgen/gi-docgen-2021.5.ebuild new file mode 100644 index 00000000000..f3453e3540d --- /dev/null +++ b/dev-util/gi-docgen/gi-docgen-2021.5.ebuild @@ -0,0 +1,29 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +DISTUTILS_SINGLE_IMPL=1 +PYTHON_COMPAT=( python3_{7..9} ) +inherit distutils-r1 + +DESCRIPTION="A documentation generator for GObject-based libraries" +HOMEPAGE="https://gitlab.gnome.org/GNOME/gi-docgen https://pypi.org/project/gi-docgen/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="|| ( Apache-2.0 GPL-3+ ) CC0-1.0 OFL-1.1 MIT" +SLOT="0" +KEYWORDS="~amd64" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND=" + ${PYTHON_DEPS} + $(python_gen_cond_dep ' + >=dev-python/markdown-3[${PYTHON_USEDEP}] + >=dev-python/markupsafe-1[${PYTHON_USEDEP}] + >=dev-python/pygments-2[${PYTHON_USEDEP}] + >=dev-python/jinja-2[${PYTHON_USEDEP}] + dev-python/toml[${PYTHON_USEDEP}] + >=dev-python/typogrify-2[${PYTHON_USEDEP}] + ') +" +DEPEND="${RDEPEND}" diff --git a/dev-util/gi-docgen/metadata.xml b/dev-util/gi-docgen/metadata.xml new file mode 100644 index 00000000000..39980802b1d --- /dev/null +++ b/dev-util/gi-docgen/metadata.xml @@ -0,0 +1,8 @@ + + + + + gnome@gentoo.org + Gentoo GNOME Desktop + +