diff --git a/CHANGELOG.txt b/CHANGELOG.txt index f815f9568..31893b1e4 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,6 @@ 2020-11-27 * update roombapy-1.6.2, now uses pyproject.toml + * update poetry-core-1.0.0 2020-11-25 * bump HATasmota-0.1.1 diff --git a/dev-python/poetry-core/Manifest b/dev-python/poetry-core/Manifest index f9fb26faa..c3b825865 100644 --- a/dev-python/poetry-core/Manifest +++ b/dev-python/poetry-core/Manifest @@ -1,3 +1,5 @@ +DIST poetry-core-1.0.0.tar.gz 333868 BLAKE2B b5789b095c06aeb7e16092b1b2361e88b707795172c54898c40c0c332313fdf78828e3bd64b21f5a1122548c9e078f272879201de49006e3ef4ac7beb0266c34 SHA512 333fcc668ba3a508c5b56da6d82c6fe9736613027d43dcc46b6e2ebe35e5264d4b82061d0158d42dbb06dfe3ae2d12d64bb73afec3c78939912b6297a2a4605f DIST poetry-core-1.0.0_alpha9.tar.gz 326507 BLAKE2B dcc6f8b0e336600b3402f2757e62a9735b8fa7663bd79249c881c91f4a8dd2c37cbaf88fd0d5977173c2bbabf143bfd6cbb01322065241825df905385236542b SHA512 8990b7f59c005cba11e38854110538e5c574f4418b712c46b2a24c4843a308ba8518cb7df9acd12723924d8869b4f68bff7233349feb93e5f78a4e1ac4ecef3f +EBUILD poetry-core-1.0.0.ebuild 749 BLAKE2B 95e0aec82ab484eca4d468428c353a45518bcce073149c8183861b70dc5693ac8dd7241a4ea202a9b52e23b0c79b40ff8222b9b4e867044965630fa74546f906 SHA512 695e22441acf49e02b4415a61aa7f64ee5442f0896ccc2bd8f478570d9d190610ffc58f92b561d9460146e8343a9e7cccbce8543acaaeca8f6e93141932ecb0a EBUILD poetry-core-1.0.0_alpha9.ebuild 871 BLAKE2B 6841676accea547788063f3fffff257588f4a48f6639fac5cba502cd094e41029c4fd9ae863e29c15910a2ed373801fad89e42ed4252e1615cd8ed6483162f24 SHA512 ff0973a776706ee46d9e6bc07ab9586d86673782030456d6bdd90c7fa995ea8da2d79df6a3d8ae9cf7124d7aa4493a5d3338539077ced5f243027978dbaeb4b8 MISC metadata.xml 462 BLAKE2B 40a71c58182da6aa0a566cbbc33508a369d2850aa6ca3109ed230dea440d6665c32533d24236fc5f49c8553a5bea07f185e07b32a3153c3077fdb7780cf15fc1 SHA512 e8c290e83c38c8c417eb15884a37513dcf7ea1df12013af599c230a9375748c03dbd9bd3fdda3418c24db07bbdae4c34304b2c6854a1066ab3faa7011cf475ff diff --git a/dev-python/poetry-core/poetry-core-1.0.0.ebuild b/dev-python/poetry-core/poetry-core-1.0.0.ebuild new file mode 100644 index 000000000..57d6bcf96 --- /dev/null +++ b/dev-python/poetry-core/poetry-core-1.0.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{6..8} ) + +inherit distutils-r1 + +DESCRIPTION="Core utilities for Poetry" +HOMEPAGE="https://github.com/python-poetry/core https://pypi.org/project/poetry-core/" +MY_PV=${PV/_alpha/a} +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${PN}-${MY_PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-${MY_PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND="" +DEPEND="${REDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +}