bump rova-0.3.0

This commit is contained in:
2022-04-02 10:45:30 +02:00
committed by Andreas Billmeier
parent c916f1796d
commit 5f33c72ad3
4 changed files with 41 additions and 6 deletions

View File

@@ -1,3 +1,5 @@
DIST rova-0.2.1.tar.gz 3166 BLAKE2B 9ae93bc1d00c02b1b86e49ce9082eabd20eb97bc40b5fb02f3f179827fe63615d1bc4bc7818ca916a447f803efa2169aeced7ad8bfa15ecce476ee0ce4972c68 SHA512 52a3063ff1928a8de5a7e9edce8b168e7e1aa40ef73e47f0fb62c7e13bd38e312c78beb0384f86aba1fa029d2dbcc0d37479eb2addfd86758260f07739c47347
EBUILD rova-0.2.1.ebuild 741 BLAKE2B f8b75b210c031f460499e0b965c4c2c9b1039b179e1d9b75801647bf2b439d7eed17daa5b1a5c5390f3fd709506828a7696949d08c0f01e35b21076a4b036a13 SHA512 4b9f37ad2281f8b1937a6d018cad3685704229ae08760d1d0fb4d3f7f819b7f01b3e7bfdcdd9002468edfb2bf7bc030da8d58bbf600ae0401afde72e27f1ff99
DIST rova-0.3.0.tar.gz 2509 BLAKE2B e15623f684857bce21828f0a881dc5b5f2ab723318ad5a96995f8a44a98c6ce8806a57b3d2fc8bb3ded61ee56a145f0404b49d0e8635876c2a572f6b3565c925 SHA512 42b050a40193fcf8f968c059981b04863a1599b076598ea3fa577d346f2d63796c7a1f129a6743f3815abfe77ec9b40877304880f0499c4a4111d3348a29ad29
EBUILD rova-0.2.1.ebuild 736 BLAKE2B 2ec3d107a6b3148df780299702be8cea044a2c02c76b98729262098c165e184f570c62a8fa4f0d111e6b5a0ea38aeef78c708c703b565c2df7224143c28d8fea SHA512 7380c13f3ba7bebcc4cc6050f2a732b5679bf5451eb5f1dd762bab655c6e399ff57861cbd3b80f393cd52d722d191869fa2045800ba8e9fdac008b68bdeb52d5
EBUILD rova-0.3.0.ebuild 736 BLAKE2B bf1886cc3d8633089d4fa6cf6efdf4fd99522e6f9af3698ccbc2b6c889052268d994e021fb09580c3de81f0a65bff83668b6cbb8b7f96bf9d6faa783a5cc09ee SHA512 2521c41ff9b8ab4103abe0d80d7265500bc7550bf1b8bbc563f79df21532797e96501c0a9902de6ccbbd4f2a5734c40c2597b7fb6672fba16151466c51475a00
MISC metadata.xml 446 BLAKE2B 3683b1e8a5f2304ad0e587095ef870499c87f8637298657f91e67e0e1760c15095726ee12a524823974bc29279910392d48c962e90efb97969e0df7b8841bcdd SHA512 a59335d13d609722c029e167f6078e2793cd5d8e1ebc1ba84663df96fc1ad796541bbcd52187ca6888e66ee3039df640a0d4b19ca1700e3aa12995a0cd3b21ed

View File

@@ -1,9 +1,9 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=8
PYTHON_COMPAT=( python3_{7..9} )
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"

View File

@@ -0,0 +1,33 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="API wrapper for ROVA calendar"
HOMEPAGE="https://github.com/GidoHakvoort/rova https://pypi.org/project/rova/"
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"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/requests[${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
}