-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #481 from antonfischl1980/dev-python/yamlloader-1.5.0
[ bump-ebuilds ] dev-python/yamlloader-1.5.0
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST yamlloader-1.2.2.tar.gz 7462 BLAKE2B c263a0f1aa7be0f4498def0dee1c3c809254a0ddffbb07778eca54cc569459a3257aeeb4c5bd449a5d0a181436fcb85cc64146a41dacd3c30806e5db5b9d57ee SHA512 05dfe5cb1d9f3f4e5aede54fa1828955597ef985207c1e2ca4c87239d5b33f849fa77a3dcce08f9e73d74c475d941f94aade7e2a89196ff8f61fee9612198ca5 | ||
DIST yamlloader-1.3.2.tar.gz 11800 BLAKE2B 65010afe4264eff08a109e44c72b8410703179cf180e8631a22b062323f9d076cca83372cf50688b5541557d423b46ace0edf70e6b35a4d46261009218fb6ca9 SHA512 8dbfbd458035ead2f8152f8161ea548d69e0ea8af9811c1fbf6f936f7bc0c41f814e294c5fc14092b346b872098010400c081d054cb8fa1f1ee7e6ec1d2074b2 | ||
DIST yamlloader-1.4.1.tar.gz 12924 BLAKE2B 027d3aba8b48e4c4b50c5a27dff35ac87f6f8e0bc67a253b02aba62d4ab9a3a5219539c74241a062379649d32716d0bd6dc027e5c7ff0e9a4a592d4a09c167bb SHA512 dae631ef55c0fea61d74766639a3a200c32b5a858df8eb697965ef4a1666977a9b98fd22270b46f41a86116b70112cf0255ee0154e2a15de9bdcccf5b5a5d2d8 | ||
DIST yamlloader-1.5.0.tar.gz 77071 BLAKE2B 4e365ab13e4dca0fc07ffb2a21d0e58e4389b2ae5743c8239d73a3d785c11c518a9e109a3a317b211ea9417c204c2454171adbc9341501e1884f09eff0be8ff5 SHA512 23d8e49920bb8393c4b6c1c5cbc6b8540109c3b0584b1ce055719bd9295ef1bd1aca71df3d1506aea6d719f5ebcb541ffd0012d31422362b3dfee0a8718811ae |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{9..12} ) | ||
DISTUTILS_USE_PEP517="setuptools" | ||
|
||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="Ordered YAML loader and dumper for PyYAML." | ||
HOMEPAGE="https://github.com/Phynix/yamlloader https://pypi.org/project/yamlloader/" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.rst" | ||
|
||
RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]" | ||
BDEPEND=" | ||
dev-python/setuptools[${PYTHON_USEDEP}] | ||
test? ( | ||
dev-python/pytest[${PYTHON_USEDEP}] | ||
)" | ||
|
||
python_test() { | ||
nosetests --verbose || die | ||
py.test -v -v || die | ||
} |