bump python-didl-lite-1.3.1

This commit is contained in:
Andreas Billmeier 2021-11-02 12:34:10 +01:00 committed by Andreas Billmeier
parent 60bc8123a0
commit cf14f0b2cd
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 34 additions and 0 deletions

View File

@ -1,5 +1,7 @@
DIST python-didl-lite-1.2.6.tar.gz 12001 BLAKE2B 8fe9ec562d8914d954df0014273e01ee9f2c816a664ef97cc2584bd2c9c988436b8948fa32140e0e43719f18e7f33fde5034642d820644090c3d5ff7f7c59628 SHA512 f431a4200dd1fba262ff8830752079967e183f4a40fd5699259d2d44b62394784934a624e15f04cb0040193dc07c59570e3710d3b88507c025046ee06228ffd4
DIST python-didl-lite-1.3.0.tar.gz 12783 BLAKE2B e13131b63a7b8a9bce55fc2bbf52a01a2404c011e2d7383eb44a4097187a7bb7d7d9fb100cb7affc9faede44ea16d597c4034c17ec5dedbaa2db986380beabd6 SHA512 82b8d6c597619bf6e06048a7da5cb12413aa40c73f42cac11a8c8c6c452ba897686528caf8752942b7f47b057002a5370cb44688dfbd43641b57da25c08c2529
DIST python-didl-lite-1.3.1.tar.gz 12866 BLAKE2B bc1db2243709233d91d2dcb0eb401fa398a74217d770c55a52e623cf0c88aa8e877b18b25d78665db8a2480cc6d7496da2ff448dffa1fd91d4f20fc053899104 SHA512 b471ff382e0f0ea136c4eb149c03d44d37f4b5923b2a07b30868f9e938649b6faad265b7149a34c2879e0312fe33dc9c1d74818ca40b322f076ba64bd93b340d
EBUILD python-didl-lite-1.2.6.ebuild 783 BLAKE2B 1be10e68ce2bd5ffc26c89ef1484a5b79c9878c88fa7916b18b5cfc3f31723eb4c5367f620e7a79fb1049115e6fcaaafa30642d09a8a41e9472662a4999a35d9 SHA512 fbc436a1cc217a69a4d0b8111fb0a5c22b1479106b5cc4ade29a9553187791a13544b27d0be7e751459630be202921b843cd03867886e27bb4d6b4be3c820b06
EBUILD python-didl-lite-1.3.0.ebuild 783 BLAKE2B 1be10e68ce2bd5ffc26c89ef1484a5b79c9878c88fa7916b18b5cfc3f31723eb4c5367f620e7a79fb1049115e6fcaaafa30642d09a8a41e9472662a4999a35d9 SHA512 fbc436a1cc217a69a4d0b8111fb0a5c22b1479106b5cc4ade29a9553187791a13544b27d0be7e751459630be202921b843cd03867886e27bb4d6b4be3c820b06
EBUILD python-didl-lite-1.3.1.ebuild 783 BLAKE2B 1be10e68ce2bd5ffc26c89ef1484a5b79c9878c88fa7916b18b5cfc3f31723eb4c5367f620e7a79fb1049115e6fcaaafa30642d09a8a41e9472662a4999a35d9 SHA512 fbc436a1cc217a69a4d0b8111fb0a5c22b1479106b5cc4ade29a9553187791a13544b27d0be7e751459630be202921b843cd03867886e27bb4d6b4be3c820b06
MISC metadata.xml 465 BLAKE2B fb22a9f4524ef875cc97aae75d8f4adf2052ea1897ac18216bb90883816994b22201946db5fbf1b458c6bb01649e804cc0bc348254eced362774a6461371b5d4 SHA512 83f4e7463dcfd361220514b8245981438fbc9a746dcff964395d4e941184a8b17561374d3e8318af5afcf1d203663907a6d0117dd1060ee937780fd027c791f4

View File

@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="DIDL-Lite (Digital Item Declaration Language) tools for Python"
HOMEPAGE="https://github.com/StevenLooman/python-didl-lite/ https://pypi.org/project/python-didl-lite/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND=">=dev-python/defusedxml-0.6.0"
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
}