dev-python/yamlordereddictloader: add 0.4.2
This commit is contained in:
parent
31cefaee1b
commit
9fb56581af
@ -1,4 +1,5 @@
|
||||
DIST yamlordereddictloader-0.4.0.tar.gz 3322 BLAKE2B 80809de8eb10780d15762a7539e3e67916bd9150b3fb01b0ddb4bcfbf77f7fac7e194fe60dc755745992322c92f3b3f1ce651c7856aa5e630fa99cad8e714ac5 SHA512 f3fbb9a7642fb40ce3588b393a451d994f80a8dbba6fcb58d0f2be9adb8e3231a1da7101c67844d57b59af6a0912178de1ec9ab571afb5b25704e44a69ef62d5
|
||||
EBUILD yamlordereddictloader-0.4.0-r1.ebuild 781 BLAKE2B e6ae7d7a9f36b8d501e6f45ca6661f831064260c4dc720ed2c4c624d9cec5110702a1997ca9d2fee45ee12e88886f95fc84bc23d6b0d1a63748eeffb7ed35717 SHA512 8717d4406ca364f08f0b1930d8ab071f22a80f19fcafdddf964f1cd7c1c8ad3579cf510d5ecea82d99acbbde7995caf921a9b7d1f49f576af244bd896574c295
|
||||
EBUILD yamlordereddictloader-0.4.0.ebuild 767 BLAKE2B 7a42a7beb3c66dc4b716dc570851daa3e90d8cd12688df961848eba98ecb52d59edf91b4e2242f404a67a7a31eba5014ecb92ed909549001c9dddad34f00754c SHA512 47fd944f53783faa1f4ee5b012c35b56cb1d27921e84738d78cd44b0e9c277bf7bc076b84dd823199faaade19a639aa0df17990df41dc4c5521ff40b7fe24e23
|
||||
DIST yamlordereddictloader-0.4.2.tar.gz 3905 BLAKE2B 43761366b98d6c59b917dd38cf789cad6149d755475cbfa3816146514e7c216373655f9b8ecb08ede4dc4ae59cf01a1e79e7e57e570ea129a8960b84c69f3def SHA512 56cf670e33fbe1b22d1a0f4d2a36436637ef4a5eae85dafaa081abef434ee303e88c37cd47e257df85905bfff188a5910c917d4a0cee9a86fb6e350e3a771ed9
|
||||
EBUILD yamlordereddictloader-0.4.0-r2.ebuild 597 BLAKE2B 532d71d5b42a2f42c63daf59d50362d54504c39e0029a5080d205857cecb403a399f4df2e65d4cceef29364b46e51efd7722cb222ecaca0f95914cfad4e87b2e SHA512 c38ec9520d2b5f15928c9383d5685ea025e68dcb0b252c533dd5748587857098f623b433c1b7bab22bed90f3a5ef34d7fa89a602adbef0cf115fff65f5be9fbb
|
||||
EBUILD yamlordereddictloader-0.4.2.ebuild 597 BLAKE2B 532d71d5b42a2f42c63daf59d50362d54504c39e0029a5080d205857cecb403a399f4df2e65d4cceef29364b46e51efd7722cb222ecaca0f95914cfad4e87b2e SHA512 c38ec9520d2b5f15928c9383d5685ea025e68dcb0b252c533dd5748587857098f623b433c1b7bab22bed90f3a5ef34d7fa89a602adbef0cf115fff65f5be9fbb
|
||||
MISC metadata.xml 477 BLAKE2B f5c1ba04be2049b7e2da4092913741eba6f86b48bdba3e333ef0b6dfa6a7c8955259509bc4f2d409b7a3f7b622eb80a72aa8ebb5b84ed8f2c5031d0185374e65 SHA512 09c7732c9306061755e18e21814a8374028ba6f9a4b3553a4b19ce52664c628dee6f0bc72007d9ab05daa88f7f36165c5a1de2e9d5203c41b80928191563e7de
|
||||
|
@ -1,32 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="YAML loader and dump for PyYAML allowing to keep keys order."
|
||||
HOMEPAGE="https://github.com/fmenabe/python-yamlordereddictloader https://pypi.org/project/yamlordereddictloader/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
|
||||
DOCS="README.rst"
|
||||
|
||||
RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
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
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{11..14} pypy3_11 )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="YAML loader and dump for PyYAML allowing to keep keys order."
|
||||
HOMEPAGE="https://github.com/fmenabe/python-yamlordereddictloader https://pypi.org/project/yamlordereddictloader/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
|
||||
DOCS="README.rst"
|
||||
|
||||
RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]"
|
||||
distutils_enable_tests pytest
|
@ -1,30 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="YAML loader and dump for PyYAML allowing to keep keys order."
|
||||
HOMEPAGE="https://github.com/fmenabe/python-yamlordereddictloader https://pypi.org/project/yamlordereddictloader/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]"
|
||||
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
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{11..14} pypy3_11 )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="YAML loader and dump for PyYAML allowing to keep keys order."
|
||||
HOMEPAGE="https://github.com/fmenabe/python-yamlordereddictloader https://pypi.org/project/yamlordereddictloader/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
|
||||
DOCS="README.rst"
|
||||
|
||||
RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]"
|
||||
distutils_enable_tests pytest
|
Loading…
x
Reference in New Issue
Block a user