diff --git a/dev-python/pefile/Manifest b/dev-python/pefile/Manifest index 74890156f..2a720da88 100644 --- a/dev-python/pefile/Manifest +++ b/dev-python/pefile/Manifest @@ -1 +1,2 @@ DIST pefile-2019.4.18.tar.gz 62374 BLAKE2B 0688c29d0360680b69ae6ae573da945664387e667f4d7911daa5efe3867697d0be15250898abf328a81114199dc785f3edffc570b53c5d941dd00cec73f2238e SHA512 33c53120fd6a0fde22f4076c19ed8f69fc2b53b16d0c581133446d0d770e290dcb2ddd1e9941e8d8debc28c1cb4ff64ff055c2b8c0958015d9121de72ae20c76 +DIST pefile-2021.5.24.tar.gz 66130 BLAKE2B 61e1f060f8ebd04d649e2d52ad5d8690bde4cac3bb2af6e17880dd2c25fb78fed0a6d381ea091768b256a4995319329ce23d2d220d4bd0187d7e52f9d92f658b SHA512 614332a6009b5a30682b295272aa4d8fa7eb5eb9cc4981dc2c66887ef8ab17af8c463c1490f0df1a37fc4a9a6d3e8c12dd986657260f98e5b60e771244d791a8 diff --git a/dev-python/pefile/pefile-2021.5.24.ebuild b/dev-python/pefile/pefile-2021.5.24.ebuild new file mode 100644 index 000000000..1ff882c2e --- /dev/null +++ b/dev-python/pefile/pefile-2021.5.24.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +inherit distutils-r1 + +DESCRIPTION="Module to read and work with Portable Executable (PE) files" +HOMEPAGE="https://github.com/erocarrera/pefile" +SRC_URI="https://github.com/erocarrera/pefile/releases/download/v${PV}/${P}.tar.gz" +KEYWORDS="amd64 ~arm64 x86" +LICENSE="MIT" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="${PYTHON_DEPS} + dev-python/future[${PYTHON_USEDEP}]" diff --git a/dev-python/yamllint/Manifest b/dev-python/yamllint/Manifest index d0f2424ad..8844a9a53 100644 --- a/dev-python/yamllint/Manifest +++ b/dev-python/yamllint/Manifest @@ -1 +1,2 @@ DIST yamllint-1.21.0.tar.gz 118360 BLAKE2B 5b153034e46fb0dc3b05de5b2a2426a9fec131e60e659211c3e2debe695a9df472bf24844a28a4b3ed9397657966af37c7830dbd5d16c7d8a5cf71a240555cd1 SHA512 6578501aea6c17021047081d5d4f7879fc82a549912f53cb9821a4d61225a4fb8acf31c39414c2535512e3fed14ffca80929cdd3e3b88acb9bd4af6177fbbbf7 +DIST yamllint-1.26.1.tar.gz 126801 BLAKE2B b53d7878c903b67e57361989bb7b4e9e96269997abb6e2aec4a15dcc13ea71133779656e51197986a89f0c32490e83bde2f42842714986c5c9ec0189bb7cb015 SHA512 0e8ed03c98808397228885cf372dfb4f7093502d47804756182ca3477b8cf6b1db4124f9efbf7a9e6987f834aa4c274ab5bbc06c01604fb91e94bd698816f338 diff --git a/dev-python/yamllint/yamllint-1.26.1.ebuild b/dev-python/yamllint/yamllint-1.26.1.ebuild new file mode 100644 index 000000000..fc5737e2c --- /dev/null +++ b/dev-python/yamllint/yamllint-1.26.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) + +inherit distutils-r1 + +DESCRIPTION="A linter for YAML files" +HOMEPAGE="https://github.com/adrienverge/yamllint" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +KEYWORDS="amd64 ~arm64 x86" +LICENSE="GPL-3" +SLOT="0" +IUSE="test" + +RDEPEND="${PYTHON_DEPS} + dev-python/pathspec[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + test? ( dev-python/pytest )" + +src_test() { + python3 -m pytest tests/ || die +}