From 752d6256e5204b958b0ef7905675a940b5e9172f Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Thu, 12 May 2022 16:42:50 +0300 Subject: gentoo resync : 12.05.2022 --- dev-python/sphinxcontrib-httpdomain/Manifest | 2 +- .../sphinxcontrib-httpdomain-1.8.0-r1.ebuild | 49 ++++++++++++++++++++++ .../sphinxcontrib-httpdomain-1.8.0.ebuild | 41 ------------------ 3 files changed, 50 insertions(+), 42 deletions(-) create mode 100644 dev-python/sphinxcontrib-httpdomain/sphinxcontrib-httpdomain-1.8.0-r1.ebuild delete mode 100644 dev-python/sphinxcontrib-httpdomain/sphinxcontrib-httpdomain-1.8.0.ebuild (limited to 'dev-python/sphinxcontrib-httpdomain') diff --git a/dev-python/sphinxcontrib-httpdomain/Manifest b/dev-python/sphinxcontrib-httpdomain/Manifest index 27d6256638c8..34b2f36af4b9 100644 --- a/dev-python/sphinxcontrib-httpdomain/Manifest +++ b/dev-python/sphinxcontrib-httpdomain/Manifest @@ -1,3 +1,3 @@ DIST sphinxcontrib-httpdomain-1.8.0.gh.tar.gz 38228 BLAKE2B 46cbe5ef0689777ef560c167c49af5830e38c7efa3a536dd36702114eb87f3c0f2f1c0c9de808738ef081e09c7d47754bc49a039b04184696ee4389acbf18454 SHA512 64d916d58282e94a4fa2b2d0e8abad5c50106b739e6e15015d347af339f517c2c7457c9bc8dc74258cfc371910d1a02b582a2c94f6f98c195a366f68c5b108c4 -EBUILD sphinxcontrib-httpdomain-1.8.0.ebuild 1001 BLAKE2B acc07c284604ceea8c8393432eb9aeb2f62b48043ddf677a9083ac371e09ec5e630c9ec4ff4ddcd04ab6d7cb57b1918af5a307b73072313eb22fc1ffb38595f8 SHA512 7921f6ad2dd9ff351bb2d522a30ab61cc7cd41c0250610140c32e0a52e6363ff5f24c3d4a7bf6b236fd1f5f704ac091aea23b234dcfab31d38e19b38b8687787 +EBUILD sphinxcontrib-httpdomain-1.8.0-r1.ebuild 1046 BLAKE2B 9b22cdabc0f6acd55c29e6eea6c32e216a16369f42a3a11b4ef03317b52123abbedba0fbc87bacf7e0a0d4fa560b7477ac3edad10a3e724ed72c6823527acff3 SHA512 9fc3fca8f9556cf7fd5aaa26409fad41498fe83090c1e6f57b73f2879bad1f206085c5a5ed1fd0c3e5768c9798a34942f1c2b33e9bd52ee845c67f6ebde1b1b3 MISC metadata.xml 417 BLAKE2B ecd20ec2d0b0f8dd3cc1ada969a171268f068f60dc698d644de42e2088f58cc66da59a73c735371d95a22d65a5699a9082e452605ab4d7e4a793d9311aed4a82 SHA512 b92a4542db033a1291b2983539597e651853a4faac6f8144796f59d13a7d75186f96a31c17dda30e280d246cd754a7696c1d1e6b330bbded25a23bb901ed3870 diff --git a/dev-python/sphinxcontrib-httpdomain/sphinxcontrib-httpdomain-1.8.0-r1.ebuild b/dev-python/sphinxcontrib-httpdomain/sphinxcontrib-httpdomain-1.8.0-r1.ebuild new file mode 100644 index 000000000000..05b2426f0c28 --- /dev/null +++ b/dev-python/sphinxcontrib-httpdomain/sphinxcontrib-httpdomain-1.8.0-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Sphinx domain for documenting HTTP APIs" +HOMEPAGE=" + https://pypi.org/project/sphinxcontrib-httpdomain/ + https://github.com/sphinx-contrib/httpdomain/ +" +SRC_URI=" + https://github.com/sphinx-contrib/httpdomain/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" +S="${WORKDIR}/httpdomain-${PV}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86" + +RDEPEND=" + dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/flask[${PYTHON_USEDEP}] + dev-python/bottle[${PYTHON_USEDEP}] + www-servers/tornado[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_compile() { + distutils-r1_python_compile + find "${BUILD_DIR}" -name '*.pth' -delete || die +} + +python_test() { + distutils_write_namespace sphinxcontrib + cd "${T}" || die + epytest "${S}"/test +} diff --git a/dev-python/sphinxcontrib-httpdomain/sphinxcontrib-httpdomain-1.8.0.ebuild b/dev-python/sphinxcontrib-httpdomain/sphinxcontrib-httpdomain-1.8.0.ebuild deleted file mode 100644 index 23f6c8a8ada1..000000000000 --- a/dev-python/sphinxcontrib-httpdomain/sphinxcontrib-httpdomain-1.8.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 - -DESCRIPTION="Sphinx domain for documenting HTTP APIs" -HOMEPAGE="https://pypi.org/project/sphinxcontrib-httpdomain/ - https://github.com/sphinx-contrib/httpdomain" -SRC_URI=" - https://github.com/sphinx-contrib/httpdomain/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz -" -S="${WORKDIR}/httpdomain-${PV}" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" - -RDEPEND=" - dev-python/sphinx[${PYTHON_USEDEP}] - dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/flask[${PYTHON_USEDEP}] - dev-python/bottle[${PYTHON_USEDEP}] - www-servers/tornado[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest - -python_install_all() { - distutils-r1_python_install_all - find "${D}" -name '*.pth' -delete || die -} -- cgit v1.2.3