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 99C8D13835A for ; Fri, 11 Jun 2021 13:43:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C45BBE087A; Fri, 11 Jun 2021 13:43:21 +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 85FC2E087A for ; Fri, 11 Jun 2021 13:43:21 +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 4923133BF36 for ; Fri, 11 Jun 2021 13:43:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0296A7A8 for ; Fri, 11 Jun 2021 13:43:19 +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: <1623418995.eb4b3342446d7f8f28f46bec87c0483e3f14a65c.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyyaml_env_tag/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyyaml_env_tag/Manifest dev-python/pyyaml_env_tag/metadata.xml dev-python/pyyaml_env_tag/pyyaml_env_tag-0.1.ebuild X-VCS-Directories: dev-python/pyyaml_env_tag/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: eb4b3342446d7f8f28f46bec87c0483e3f14a65c X-VCS-Branch: master Date: Fri, 11 Jun 2021 13:43:19 +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: 9e91fe50-f504-4933-8d35-5e52b710167c X-Archives-Hash: bde2042e5e4d47245bc9336fb69912c7 commit: eb4b3342446d7f8f28f46bec87c0483e3f14a65c Author: Andrew Ammerlaan gentoo org> AuthorDate: Fri Jun 11 13:09:26 2021 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Fri Jun 11 13:43:15 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb4b3342 dev-python/pyyaml_env_tag: add new dep of mkdocs Package-Manager: Portage-3.0.19, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/pyyaml_env_tag/Manifest | 1 + dev-python/pyyaml_env_tag/metadata.xml | 13 ++++++++++++ .../pyyaml_env_tag/pyyaml_env_tag-0.1.ebuild | 23 ++++++++++++++++++++++ 3 files changed, 37 insertions(+) diff --git a/dev-python/pyyaml_env_tag/Manifest b/dev-python/pyyaml_env_tag/Manifest new file mode 100644 index 00000000000..f164431c429 --- /dev/null +++ b/dev-python/pyyaml_env_tag/Manifest @@ -0,0 +1 @@ +DIST pyyaml_env_tag-0.1.tar.gz 5631 BLAKE2B 2302f3fd7c33347b1e451f466b13fbad53f2b77ee305ce844cd5b5bf40e633de95f4604eb27660c5f61aca21845e6f70e40a0ab52386a44d9b4e9be3ec7a7f29 SHA512 7d3dbc08fb338b3de5bbe657fa8a98a330d7ac7962ac2ea6513ade362b36deaaad8d9e82eb018454d73fd26d90003861a3ffee9abc2e9ac51dea4ba315b5c1f9 diff --git a/dev-python/pyyaml_env_tag/metadata.xml b/dev-python/pyyaml_env_tag/metadata.xml new file mode 100644 index 00000000000..0ff9db6dac1 --- /dev/null +++ b/dev-python/pyyaml_env_tag/metadata.xml @@ -0,0 +1,13 @@ + + + + + andrewammerlaan@gentoo.org + Andrew Ammerlaan + + + + waylan/pyyaml-env-tag + pyyaml_env_tag + + diff --git a/dev-python/pyyaml_env_tag/pyyaml_env_tag-0.1.ebuild b/dev-python/pyyaml_env_tag/pyyaml_env_tag-0.1.ebuild new file mode 100644 index 00000000000..4abd9f92c60 --- /dev/null +++ b/dev-python/pyyaml_env_tag/pyyaml_env_tag-0.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..10} ) +DISTUTILS_USE_SETUPTOOLS=no + +inherit distutils-r1 + +DESCRIPTION="A custom YAML tag for referencing environment variables in YAML files" +HOMEPAGE="https://github.com/waylan/pyyaml-env-tag" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/pyyaml[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest