From 38423c67c8a23f6a1bc42038193182e2da3116eb Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 25 Apr 2020 11:37:10 +0100 Subject: gentoo resync : 25.04.2020 --- dev-python/construct/Manifest | 6 +++-- dev-python/construct/construct-2.10.56.ebuild | 35 +++++++++++++++++++++++++++ dev-python/construct/construct-2.9.45.ebuild | 33 ------------------------- dev-python/construct/construct-2.9.46.ebuild | 34 ++++++++++++++++++++++++++ 4 files changed, 73 insertions(+), 35 deletions(-) create mode 100644 dev-python/construct/construct-2.10.56.ebuild delete mode 100644 dev-python/construct/construct-2.9.45.ebuild create mode 100644 dev-python/construct/construct-2.9.46.ebuild (limited to 'dev-python/construct') diff --git a/dev-python/construct/Manifest b/dev-python/construct/Manifest index 7e9418fdd0a5..7d3743a4a7b6 100644 --- a/dev-python/construct/Manifest +++ b/dev-python/construct/Manifest @@ -1,3 +1,5 @@ -DIST construct-2.9.45.tar.gz 1042299 BLAKE2B 4d646c3a340b969e83e15436422732f4f4380ef24cd0e9f258f3d3666f17b08ab628d19db39bb8fcd3f370c2b0c93a8329fba56727f28d7a23d868d001610927 SHA512 78d64f3e567e6c9cef842d3e15f416d48856d229a8c6f21e282d3123a86fdd243b20dba5040c6e1d28b67422881351b303262132263efdf94bb73adde0d5dfc1 -EBUILD construct-2.9.45.ebuild 897 BLAKE2B ad4d6ffc3a39d37a245fdd55b5c347543359caa98e6d16d3bc8665a26e0ddaecdadc86436349426823d0aa9fdadd3d1beda1b6a71b381a84880f59e759430f84 SHA512 599896e1655219be88627cc8d6fad64cfc52336820d0c7b2c17746f24b85c765109bf86da7fe3e4bea78c3697ccb3c9b5b07075e377fb70535e6ed4304ec61bd +DIST construct-2.10.56.tar.gz 1184110 BLAKE2B 01ce1800970826ae3584a9733de171e04dd926e7d19d8b48b4364406b4aa0f4d878ec52f9a7f755bb249aeeaca75ae6221d6bdf302d4342d4974d268b1782175 SHA512 cc9aa126c26a017a3fb7b78a6b8f2056194028a44c8ed615a6dc4a445d50f0463e2de0b80810ab5a252070925a56b5a61dbb601a3de9e445d861356231a146d5 +DIST construct-2.9.46.tar.gz 1042624 BLAKE2B df42f771fbba3867b2bf5eb60fadd8f314207b101e3ce695ed58fa9db8c13c3b746c9b6a8979dfbfa0f5b8182aab4b7fdc7e678e017acc3223252a82d5e62640 SHA512 01bd135b2e08958749eab1e79abb912d7da94743567b8165f6dc1b0edbbb765f1e7ba7e120fda1fef8bcd24a285d164b017f49527382921018091cc654d28cae +EBUILD construct-2.10.56.ebuild 954 BLAKE2B b40292d9336f1d2f47f253c09fe05952b4f5465fc8d7e5a6dad03488394ab4af172f44687030bc78d4ba591f49d14de2cad8bad3c3411f880588686d698fad7d SHA512 59ea367dc6a210f74ea84d918c33e873450f3d5d6869f91eca0472fc5aef0f5c448c1848319079fab9c19ac50b4248440bce528b376c2b5a9af40f4f6d5942d3 +EBUILD construct-2.9.46.ebuild 909 BLAKE2B c7ffd34406d1939d9a687040630c643603996fd232f80e36b936dbb97b1fdbea80756035c3dbdb406ac936893b264a87f847d03e4ac5c7b1c62d7c3020b8e784 SHA512 f3b21a884193b8eab2a6f609a1fa7394c74bf8c47acde4e78e249320db41b1c7ca5cc8f1342c5ef5cabd825af488056c2c3f6b92a3865540e4631071a8c94c3d MISC metadata.xml 491 BLAKE2B bf8f7729988a0a4c39c9f8081a4b05560d1596a69c8670e378ea1f1f81b8dd5a2c366e8211c36e07f809378c6ae769b01181a4ceaf3f82ec8eb2b1879d874a87 SHA512 a8a85937bda8fb36a51bd6e0c0bcb1ce721073ee07a8e198c88b64ee484e8fd1c813e937443885e5ea2e532cda3971e8eb59385797a7a8f44ec9524a57acbbf9 diff --git a/dev-python/construct/construct-2.10.56.ebuild b/dev-python/construct/construct-2.10.56.ebuild new file mode 100644 index 000000000000..3a485cc76365 --- /dev/null +++ b/dev-python/construct/construct-2.10.56.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7} ) + +inherit distutils-r1 + +DESCRIPTION="A powerful declarative parser for binary data" +HOMEPAGE="https://construct.readthedocs.io/en/latest/ https://pypi.org/project/construct/" +SRC_URI="https://github.com/construct/construct/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +distutils_enable_tests pytest +BDEPEND+=" + test? ( + dev-python/arrow[${PYTHON_USEDEP}] + >=dev-python/numpy-1.15.4[${PYTHON_USEDEP}] + dev-python/ruamel-yaml[${PYTHON_USEDEP}] + )" + +src_prepare() { + default + rm tests/test_benchmarks.py || die +} + +pkg_postinst() { + ewarn "Version 2.10.x has significant API and implementation changes from" + ewarn "previous 2.9.x releases. Please read the documentation at" + ewarn "https://construct.readthedocs.io/en/latest/transition210.html" + ewarn "for more info." +} diff --git a/dev-python/construct/construct-2.9.45.ebuild b/dev-python/construct/construct-2.9.45.ebuild deleted file mode 100644 index 9857a0e9b5f8..000000000000 --- a/dev-python/construct/construct-2.9.45.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_6 ) - -inherit distutils-r1 - -DESCRIPTION="A powerful declarative parser for binary data" -HOMEPAGE="https://construct.readthedocs.io/en/latest/ https://pypi.org/project/construct/" -SRC_URI="https://github.com/construct/construct/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="test" - -DEPEND="test? ( - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - )" - -python_test() { - pytest -vv || die "Tests failed under ${EPYTHON}" -} - -pkg_postinst() { - ewarn "Version 2.9.x has significant API and implementation changes from" - ewarn "previous 2.8.x releases. Please read the documentation at" - ewarn "https://construct.readthedocs.io/en/latest/transition29.html" - ewarn "for more info." -} diff --git a/dev-python/construct/construct-2.9.46.ebuild b/dev-python/construct/construct-2.9.46.ebuild new file mode 100644 index 000000000000..ebb156ac6f3c --- /dev/null +++ b/dev-python/construct/construct-2.9.46.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7} ) + +inherit distutils-r1 + +DESCRIPTION="A powerful declarative parser for binary data" +HOMEPAGE="https://construct.readthedocs.io/en/latest/ https://pypi.org/project/construct/" +SRC_URI="https://github.com/construct/construct/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +distutils_enable_tests pytest +BDEPEND+=" + test? ( + dev-python/arrow[${PYTHON_USEDEP}] + >=dev-python/numpy-1.15.4[${PYTHON_USEDEP}] + )" + +src_prepare() { + default + rm tests/test_benchmarks.py || die +} + +pkg_postinst() { + ewarn "Version 2.9.x has significant API and implementation changes from" + ewarn "previous 2.8.x releases. Please read the documentation at" + ewarn "https://construct.readthedocs.io/en/latest/transition29.html" + ewarn "for more info." +} -- cgit v1.2.3