oyaml: update SRC_URI
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
41d746f26a
commit
122db21c0c
@ -1,3 +1,3 @@
|
||||
DIST oyaml-1.0.tar.gz 2914 BLAKE2B f111eeb27dab5af8c3c3176dd0260911a47111b2194cc281c8b0c2c365b957fc75558a12397755d0d511a3fa5e64482a6af4f1d7f524868d6b644cdc14f8e785 SHA512 488ba66412f7cdb67ef84ba3038904cb4b467c4ec2d8bca0ed01b566e39768c83b34ada7d8b9e50467bccc2a41f3c20702f8a6f2ac1f8aab1e94b956a611d28d
|
||||
EBUILD oyaml-1.0.ebuild 754 BLAKE2B 21142881c74992154f411d6e0ce5e390d450ee7831bd3f557bfbaa4ddbda2e02f977ec58ecfeba00b18850e0a1397ebf8aa028e565814178102696ce14f8b3fb SHA512 c7d1a3563197b96700d17034b80a3eae174a602d6b0989926c99d337e879cb407995a83a96d2a625b24b6ef9859c1c85e26f88485a0a5d14f7171f566888b458
|
||||
MISC metadata.xml 443 BLAKE2B 2e67a67231f86bb273098fdf2537492c77af7ab57510bb26cb8af2599c25a5044e31b677f7e69cc2eadd3145dbbc6855284d10743b568bb9c0bafebb926bf0c7 SHA512 d9b55773dca09190ea0929dcea47d0e7677ae636d443d2d2c58234f0dbb9e92e40dc94f1761fa521b1dd362620e75a5c3700ab52500795fd6f93871ebd7cef73
|
||||
EBUILD oyaml-1.0.ebuild 625 BLAKE2B dcf684f5c229ec258a260da71bd31f0a0915da3e892d6b5bf017e95f5735e0052e466e0a4fa05b548640750e0d6b5fb6d2fd21e4e01145be212df009be58a525 SHA512 68bf494c23d40bdd7f7b251dbfda193753d0312a3f53d59d9358651f8c4a5cb8a782474b427a9cd83a38cc204b0fc5ce8d8bd228a45034db044aca91d40ff5d6
|
||||
MISC metadata.xml 499 BLAKE2B 0053620b2e139015a98a8c9939be5c3539bf4e1da62c8c9c32fe45cd122271d62c589df4d73af4c735cf1c70b8d6f00eea1d3453c6bde2be0e7231708eefa300 SHA512 feff58df380f264a3e4ec30352db56a06b825d6861f34eed4c5f668cd8079d72d0bb2c13df45613cd66a49d36a947fb87f9e39abe7d07707e32ae8418576b699
|
||||
|
@ -7,6 +7,7 @@
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="pypi">oyaml</remote-id>
|
||||
<remote-id type="github">wimglenn/oyaml</remote-id>
|
||||
<maintainer status="unknown">
|
||||
<email>hey@wimglenn.com</email>
|
||||
<name>Wim Glenn</name>
|
||||
|
@ -1,15 +1,14 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Ordered YAML: drop-in replacement for PyYAML which preserves dict ordering"
|
||||
HOMEPAGE="https://github.com/wimglenn/oyaml https://pypi.org/project/oyaml/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
@ -21,13 +20,8 @@ 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
|
||||
}
|
||||
distutils_enable_tests pytest
|
||||
|
@ -1,16 +1,16 @@
|
||||
BDEPEND=dev-python/setuptools[python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( dev-python/nose[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.11:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.3:3.11 ) >=dev-python/setuptools-65.7.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
|
||||
BDEPEND=test? ( dev-python/pytest[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] ) test? ( dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/pytest-7.3.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.11:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.3:3.11 ) python_targets_python3_12? ( >=dev-lang/python-3.12.0_beta1:3.12 ) >=dev-python/gpep517-13[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/setuptools-67.7.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/wheel-0.40.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?]
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DESCRIPTION=Ordered YAML: drop-in replacement for PyYAML which preserves dict ordering
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/wimglenn/oyaml https://pypi.org/project/oyaml/
|
||||
INHERIT=distutils-r1
|
||||
IUSE=test python_targets_python3_10 python_targets_python3_11
|
||||
INHERIT=distutils-r1 pypi
|
||||
IUSE=test test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12
|
||||
KEYWORDS=amd64 arm arm64 x86
|
||||
LICENSE=MIT
|
||||
RDEPEND=dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_10? ( >=dev-lang/python-3.10.11:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.3:3.11 )
|
||||
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
|
||||
RESTRICT=!test? ( test )
|
||||
RDEPEND=dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] python_targets_python3_10? ( >=dev-lang/python-3.10.11:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.3:3.11 ) python_targets_python3_12? ( >=dev-lang/python-3.12.0_beta1:3.12 )
|
||||
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 )
|
||||
RESTRICT=!test? ( test ) !test? ( test )
|
||||
SLOT=0
|
||||
SRC_URI=mirror://pypi/o/oyaml/oyaml-1.0.tar.gz
|
||||
_eclasses_=out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib c19072c3cd7ac5cb21de013f7e9832e0 toolchain-funcs 513c31b3346458ed1f3878b57da6d61c multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-utils-r1 ba15b8b81f30ca448294d759a9f7902c python-r1 3c6cd0f418ba702c186a9865b85e704d distutils-r1 2d32e797ee29a8ffdd452f4a85860666
|
||||
_md5_=5288301ff485d000eb7905de524fd42b
|
||||
SRC_URI=https://files.pythonhosted.org/packages/source/o/oyaml/oyaml-1.0.tar.gz
|
||||
_eclasses_=out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib c19072c3cd7ac5cb21de013f7e9832e0 toolchain-funcs 513c31b3346458ed1f3878b57da6d61c multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-utils-r1 ba15b8b81f30ca448294d759a9f7902c python-r1 3c6cd0f418ba702c186a9865b85e704d distutils-r1 2d32e797ee29a8ffdd452f4a85860666 pypi 3b6a844fbf71f1581992b44c78b549b7
|
||||
_md5_=74c18b7c4bb5f1f6dcbc5091aacfe02a
|
||||
|
Loading…
x
Reference in New Issue
Block a user