dev-python/pychannels: add 1.2.3

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2022-10-30 15:01:11 +01:00 committed by Andreas Billmeier
parent dc4d2e0340
commit e07b003856
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 37 additions and 2 deletions

View File

@ -548,11 +548,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 1452 Ebuilds in total, 1445 of them have in total 1454 (34 different) licenses assigned.
There are 1453 Ebuilds in total, 1446 of them have in total 1455 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|846|
|MIT|847|
|Apache-2.0|292|
|GPL-3|91|
|BSD|86|

View File

@ -1,3 +1,5 @@
DIST pychannels-1.0.0.tar.gz 1683 BLAKE2B 2a8536dc8c7d4c51001ebcd2425855798d73e83969bfadf90f7c066a3df443060d30baf635e75c3ac8d2ff53ce86f6595c8ce60a97cfcc3ec09520ddcb8678d1 SHA512 e966aaefd293d3c08a53ec1e69f08ea59e36abe4a2b59737ff15cd86a9d2f792183509a410fbac559ce6690569fbb1db1d1ac634214cc6f81fc4e95bae2856e7
DIST pychannels-1.2.3.tar.gz 5359 BLAKE2B 5acfd5f59dbace05d1999a5380b568fe56e70a21deb1bf51cc6e3f613f117f37c930f0e01249ebe210dec73808af729959968de3744d7fbd14a647437c3185cc SHA512 cf4bee93e12a001071e7f7d9a195ed57a9d178a8aa4f1917b49160ddf7b5466d16fe752810d2c03749426ac989c2de7de58957fe353676e8c7bfa5b811cd3f44
EBUILD pychannels-1.0.0.ebuild 723 BLAKE2B 68c8b794f67989c7d2c5cdfe56200abd6efa8128a8cac05f74aaac47f8c1498312ff948bede73ed41298b02d8607624587ae60de6b8a8245add92151f4aefccc SHA512 272b88641bece1881fa9ec0b7a21312adcd4794133706993d65acd7e9b9a9430d64ff8d37dbd57a2cb52c0ff830c5b3cf5628fd6137d62fe29c22291b4375d1a
EBUILD pychannels-1.2.3.ebuild 723 BLAKE2B 68c8b794f67989c7d2c5cdfe56200abd6efa8128a8cac05f74aaac47f8c1498312ff948bede73ed41298b02d8607624587ae60de6b8a8245add92151f4aefccc SHA512 272b88641bece1881fa9ec0b7a21312adcd4794133706993d65acd7e9b9a9430d64ff8d37dbd57a2cb52c0ff830c5b3cf5628fd6137d62fe29c22291b4375d1a
MISC metadata.xml 457 BLAKE2B fa7ec86c88d44c850aeb56d783b465dd3c472ecb075c26859fdd5dbf05d5b7f742d71a41da8987960e74f499234c8adc7b8906e9d7935e373de184dce3776ca8 SHA512 bdb443013138ac36ae27e35554b6f809c43f7054814667aac48b591b40012bf2eeba24041b827005961be1c9e56b7b2746e486429a8b7a25a01cdc096a7638d7

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..11} )
inherit distutils-r1
DESCRIPTION="API client for the Channels app - https://getchannels.com"
HOMEPAGE="https://github.com/fancybits/pychannels https://pypi.org/project/pychannels/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
#DOCS="README.md"
RDEPEND=">=dev-python/requests-2.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest