dev-python/twentemilieu: add 2.1.0
Closes: #4188 Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
df68698de6
commit
8908349b1d
@ -606,11 +606,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 2384 Ebuilds in total, 2370 of them have in total 2413 (43 different) licenses assigned.
|
||||
There are 2385 Ebuilds in total, 2371 of them have in total 2414 (43 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1356|
|
||||
|MIT|1357|
|
||||
|Apache-2.0|565|
|
||||
|GPL-3|147|
|
||||
|BSD|126|
|
||||
|
@ -1,3 +1,5 @@
|
||||
DIST twentemilieu-2.0.1.tar.gz 7184 BLAKE2B 2532abdaa2f03a5e58f5ccf3af485a3a3e482add28e72f8be0772608fc3087c7dcd75cbffcf27ec1ed0910caa1df6f936c02496e235a0640dcabe34d5585c4b3 SHA512 f6be539322924e15732369db2e3b5e28cac99692e1d28af42d07c97b157eba870acb68c00db2e7c6c25cb31a9cef5d4dc4d7975f148b6c11426660708fe98be1
|
||||
EBUILD twentemilieu-2.0.1.ebuild 958 BLAKE2B b5f138065928c3f938df16596fba5d11939501db98c14e3415480ac11110cb658f63cd1dab301a4eed5a4d8f2a98ceb909ee7bce03d364612ce0fe922c85b830 SHA512 f7e79981a79172b6ad35093abc0924481310899910c03cf95ad6c4c7a6c1874af41175d47634053489a66bea520e1f44eada82963bf7742c8e73165025d420ad
|
||||
DIST twentemilieu-2.1.0.tar.gz 7196 BLAKE2B a9b8f8c81773caccaf5a8c62d669a1c234e376b47fbc3d89943549e4f6aad3a1ecef7dea1d8993e633a0e5060246c5fa2afb9413e2d711d4ebf155d978545a2f SHA512 6f2440f5ece698dd9adab11c3161f60339d4503dde9a00493bbd8e7590b0dc4b097265f39771ef873d141f318db387758dd1775b23a5efc63241265166505000
|
||||
EBUILD twentemilieu-2.0.1.ebuild 958 BLAKE2B d3095e5b2aeaba6485be50111b93faaa3e57c0f45217100c784b503fcb46bf724d1ed71311ea6c78e5631f06332d3301f9591560dee89c2177681c9986922678 SHA512 415266143742fa923a24e5806d9e9ba9401ea920e91f7ac955042219cdbb288c5cb218a90f9df3af0c8a4d222d6e4f8011de7cc9c97cdcbb3e31bb47e25c0e0f
|
||||
EBUILD twentemilieu-2.1.0.ebuild 879 BLAKE2B b8a2b306d67dc35afefd722555ca8b713439554a117117e5dc30dff256a0d9db3eb7573e5b04454b45689eef2a11c75ac65c7c7509996e3cadbb6df4b2b92418 SHA512 405d1044e65bc4b06e733294592bf837e6d567162f494253ee3938018417a40b86fcaf98c59da57fa6c730b9cd13cd0296eb359762b7759aca8a485292fcb1e2
|
||||
MISC metadata.xml 527 BLAKE2B 160f44258e023f82ab573d123e523c3879adf860aa94a482f6f962258c69d6e2803f5886c2f3b3540a93eec644d4daa86eec15efad346b60529bb3c5dfad2159 SHA512 0c7fd24719f278b705f17e0e26745cac84da071271003220b8c84d5bc461fed7f314bbe0a5c6b3535b10dce8bb66c93c306e04b0c23335e5a161d6829421823e
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{11..12} )
|
||||
PYTHON_COMPAT=( python3_{11..13} )
|
||||
DISTUTILS_USE_PEP517=poetry
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
|
36
dev-python/twentemilieu/twentemilieu-2.1.0.ebuild
Normal file
36
dev-python/twentemilieu/twentemilieu-2.1.0.ebuild
Normal file
@ -0,0 +1,36 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{11..13} )
|
||||
DISTUTILS_USE_PEP517=poetry
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Asynchronous Python client for Twente Milieu API."
|
||||
HOMEPAGE="https://github.com/frenck/python-twentemilieu https://pypi.org/project/twentemilieu/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND=">=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/yarl-1.6.0[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-python/aresponses[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-cov[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
src_prepare() {
|
||||
# remove unsupported dynamic-versioning
|
||||
sed 's/0.0.0/${PV}/g' -i pyproject.toml || die
|
||||
eapply_user
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user