bump vulcan-api-2.1.1

This commit is contained in:
Andreas Billmeier 2022-05-26 16:22:14 +02:00 committed by Andreas Billmeier
parent a04b335ee5
commit b74b765d62
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 47 additions and 2 deletions

View File

@ -524,11 +524,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
There are 1739 Ebuilds in total, 1732 of them have in total 1739 (35 different) licenses assigned.
There are 1740 Ebuilds in total, 1733 of them have in total 1740 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1064|
|MIT|1065|
|Apache-2.0|307|
|GPL-3|109|
|BSD|96|

View File

@ -1,3 +1,5 @@
DIST vulcan-api-2.0.3.tar.gz 20153 BLAKE2B 9a2c25f13f9024960bbb15b9d6f9e66e9c64aecf9db9d474fd157bd8e569f087457c749a0100dcd128a54af96eb4253589c95a76447f993ab644ae9da593d039 SHA512 ab0d8ba519e529dddd4c871a041cd0efe34ce769b0b623a9a3f9b3982d7eaeab6abb861828df86046c5aca4681d5d651db1d76cd650f7c52ddc385f9a1804677
DIST vulcan-api-2.1.1.tar.gz 19830 BLAKE2B f68261aa55e8e68768b9e598fdd1ff5406684c3e3831ff7cf87da876ddfc66a00d9e6d85b539eabadcefdd339099a593413c6c57d311544afee5dbc71f23e462 SHA512 9ff757bde580dd97e4702595913fb672abf6d9cf6e4068f2cdafec6a67710d585b658ab77d9e73804f9a5dc57baed64c489c3fabffa3b1831b92e7815c6b006e
EBUILD vulcan-api-2.0.3.ebuild 1127 BLAKE2B de27b5d2b7df3b97f267b2f3bf16b9e390463200372d0f2f1cd4b02d239e6efa928c40bb5565dea7d1c7b957730939c7c3c9e8045451237765cc407e4cf9c05d SHA512 b4d5233252b2febf02c109966c89b6417a552d28a19a7d5a02fafadc378d49e201e48edef89c5303f2287e75788958ed5c212e9f5a48bbe8b4c0ed1d541e387e
EBUILD vulcan-api-2.1.1.ebuild 1115 BLAKE2B 98211f7b1edd31ee21eedb63117e979ce9ef30631139e8fab8e9f3ea1eecb997705fd25d1d9bf454cdda6a93ca725981b74e1d24a662e918488fc5939ed80a2d SHA512 63f0ebb52004bf1b1426a57280661b9c073e7c58f17764f0dfbdd32daa02aa3282126b7249d839dd5f78af084ee4228699ad2c1732bcb7c7fb06e84afc1ef4ab
MISC metadata.xml 461 BLAKE2B 198886ac5f8bdafa6f7c3e46380620b107776fe25b0ac518aaf72264ce041037bd60ff57da0397f6521cceeb16bf34108211d6a2e5ff0163b309806c8c3f404c SHA512 bfe1cc029cc598300362b4342f20cd60a09fda59f8843a838356b9912ddc6c1d19bd0a8158002d9d78a330c82028136ff813968d08bfac542b311a82c731f6a7

View File

@ -0,0 +1,43 @@
# 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="Nieoficjalne API do dzienniczka elektronicznego UONET+"
HOMEPAGE="https://github.com/kapi2289/vulcan-api https://pypi.org/project/vulcan-api/"
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/pyopenssl[${PYTHON_USEDEP}]
dev-python/uonet-request-signer-hebe[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
dev-python/aenum[${PYTHON_USEDEP}]
dev-python/related[${PYTHON_USEDEP}]
dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/cchardet[${PYTHON_USEDEP}]
dev-python/aiodns[${PYTHON_USEDEP}]
dev-python/yarl[${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