diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-08-26 00:09:36 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-08-26 00:09:36 +0100 |
commit | b1c81de4fadbd00897700a7321f03b390d952b2e (patch) | |
tree | e6cc812351d4f105c110cfc363ebb497e996f47a /dev-python/utidylib | |
parent | 7c59acba5699c9c58090a7a738669669a7307023 (diff) |
gentoo resync : 26.08.2021
Diffstat (limited to 'dev-python/utidylib')
-rw-r--r-- | dev-python/utidylib/Manifest | 2 | ||||
-rw-r--r-- | dev-python/utidylib/utidylib-0.7.ebuild | 28 |
2 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/utidylib/Manifest b/dev-python/utidylib/Manifest index 161af3f1bc17..d440d1910790 100644 --- a/dev-python/utidylib/Manifest +++ b/dev-python/utidylib/Manifest @@ -1,3 +1,5 @@ DIST uTidylib-0.6.tar.gz 15771 BLAKE2B 9d4fe57d985ea6e52680bd528862d3236137221227a23fe05b886d01d240e21d7159dbf7d6da3af8020009ca45c60c2297e374bb7aa05cb6b5a8eaf444710c58 SHA512 a85506ef8824f66ee326ad651020dc3b4e00190e20dcd3814984fa27ff319f492fe5bac781b7c43c8694cbfc63409e3abda18981969c9be2c3cd023fe7a4f2f8 +DIST utidylib-0.7.gh.tar.gz 15203 BLAKE2B c32f23ab3a94191423655f9b6a99bd85aca7072fcfea7507c5d4efb19c4ee22114afe136c6299e8322e15195c4f938094e49483b1a40d05522f2d232dd9a6acd SHA512 69b22671223cc9e1888a1be19b418e883baa79401bcf3856fa48cca441ae7fa414047c296f8fc9ff35aa7407901fa64cd8ddfcc56657a98e8e188073dfc72172 EBUILD utidylib-0.6-r1.ebuild 943 BLAKE2B 70eb05e1997d5a7e0ab0331e756328ef06655ea6ddb1bd1f1175a288dca9ea809ecc122bf53848020b2514891cf8e547bb655790f866ddab9df57c8d42de28a0 SHA512 af0b3a382796d6627d778d06355e61e61ab92f72f7aa9af57b2a011abbef0d07bc79bfb29bd7ed742068a7855e4cbce93b0f54e89c36f4a094daf28aff591bb5 +EBUILD utidylib-0.7.ebuild 714 BLAKE2B 7dd4b6d2d182f40aa7e3cf41580307049948f62050a64f3dcbe2f4d3a8f530b93846b952f6e513449187ceb055fd8d2273b102e396df1fc92a44d77eb865566b SHA512 2c4213025c698dcd319cdb2a8217ea404b80df446fd52568a05fafa521674eb6a1a0c7b0508f826ce5bfc85983a7e4d66024d2c4672583905885047026636353 MISC metadata.xml 365 BLAKE2B e85ac3e7839fe863c3eb5cb648892afc63567c05a598e8c43345cf45774faf16c849ea3d82ff89af078640f7e54c0a40c04631c537564920b4f69bd17fb39516 SHA512 b90faf30a65ec1dd177f16a969cc11372d0af82948aa2c4833be23109453b4019be87995fe80d7323cf0e62bd6ef4157b22b85a643222463daeaad91881662e8 diff --git a/dev-python/utidylib/utidylib-0.7.ebuild b/dev-python/utidylib/utidylib-0.7.ebuild new file mode 100644 index 000000000000..bf5039557621 --- /dev/null +++ b/dev-python/utidylib/utidylib-0.7.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +MY_P="uTidylib-${PV}" +inherit distutils-r1 + +DESCRIPTION="TidyLib Python wrapper" +HOMEPAGE="https://cihar.com/software/utidylib/ https://pypi.org/project/uTidylib/" +SRC_URI="https://github.com/nijel/utidylib/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86" + +RDEPEND="app-text/tidy-html5" +DEPEND="dev-python/six[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest +distutils_enable_sphinx doc + +EPYTEST_DESELECT=( + # https://github.com/nijel/utidylib/issues/9 + tidy/test_tidy.py::TidyTestCase::test_missing_load +) |