diff --git a/dev-python/ci_info/Manifest b/dev-python/ci_info/Manifest index 2c1b93f..7297868 100644 --- a/dev-python/ci_info/Manifest +++ b/dev-python/ci_info/Manifest @@ -1 +1,2 @@ DIST ci_info-0.2.0.tar.gz 25991 BLAKE2B 86a736644edafc2cff4c9fb1e4ab4deda18443d24358a0cbb24712bc9e6894d2a68e3483850ec0dc8a4ca34a6893287a1f1fe6af003f458aad2f9c33150ce66c SHA512 91ab43f3e50e4ac15be3647980db3dd814190c62d30d8bba304f31fc7fe633ca24df207788c79b1e7eae1d0f969f30793bc9bb14e4657041b053f67b652e9607 +DIST ci_info-0.3.0.tar.gz 29908 BLAKE2B 0c27d84813fa31a6932e1f8379fc62afa029359de8c284f33b6a00175cb0a7481446b5f2b6ebad9944267dca7968e7b6da048382d4fc697ebf6b7512cdaad9ce SHA512 565c22ec964f5f88a1e3988f866063040b42a44e459a6ad95cabbdc708ee617c08f39545ec0407e49d1d23ff72a7164485895a02be84df285c8c6009bb71c6dd diff --git a/dev-python/ci_info/ci_info-0.3.0.ebuild b/dev-python/ci_info/ci_info-0.3.0.ebuild new file mode 100644 index 0000000..a63fb0b --- /dev/null +++ b/dev-python/ci_info/ci_info-0.3.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +MY_PN=ci-info + +DESCRIPTION="Gather continuous integration information on the fly" +HOMEPAGE="https://github.com/mgxd/ci-info" +SRC_URI="https://github.com/mgxd/ci-info/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +# Tests broken without specific CI environment: +# https://github.com/mgxd/ci-info/issues/7 +RESTRICT="test" + +DEPEND="" +RDEPEND="" +BDEPEND="" + +S="${WORKDIR}/${MY_PN}-${PV}" + +distutils_enable_tests pytest