dev-python/openai: drop 0.26.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 17:36:44 +01:00 committed by Andreas Billmeier
parent 9cd091ed81
commit 73c3400208
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 37 deletions

View File

@ -612,11 +612,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 1663 Ebuilds in total, 1652 of them have in total 1670 (42 different) licenses assigned.
There are 1662 Ebuilds in total, 1651 of them have in total 1669 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|964|
|MIT|963|
|Apache-2.0|348|
|GPL-3|107|
|BSD|90|

View File

@ -1,5 +1,3 @@
DIST openai-0.26.2.tar.gz 55476 BLAKE2B e97723108c622cae59d0de7bd44e4befdedaf9c9e20de138598fd0902b14a71be055de6372f9249b3fb18944d9986a65c8d44deabc0214d2960c304d3e9beb46 SHA512 9d40dc62921849588b9012d8980c69e859123513190bc309f0d65600d3f9d210c74573ca9fa18739a9f4df69f3c0d4be0cff0cea0875712933d66b6a34840d68
DIST openai-0.27.2.tar.gz 57122 BLAKE2B 3b6294ca98f279ef0fb51ee1ae761718a01a728c9c29677f4bb9b0731b61ad0a818a94bafe75425f259c12e72e86d4b3b1ea07b44f8aad6a47cc21f5df206bb0 SHA512 1d648315a8fc04650d11cc3c90e96f0062d276cb7dd1fd132b03f0205675af7ed7df3c1d54384b0f2d4f51d30d387392fc96133f190057feb689026b066ee700
EBUILD openai-0.26.2.ebuild 712 BLAKE2B 1e3ff03def1da9cd99eed858ea28b2fd28ba762d8c8d6a49719d1770f7a5b5217155f2e17558d53cf40e5fe53adf46d88e06b6758ca79303887e0f879fc98ecb SHA512 6d50fca6dd32524f48c2dba88e581a1e95f204cafd25c4e9b66b168fd422391a012fb46db0ceebfdfdcb031cd65786d527cd65211de73ab2a5a7a1d09583c510
EBUILD openai-0.27.2.ebuild 712 BLAKE2B 1e3ff03def1da9cd99eed858ea28b2fd28ba762d8c8d6a49719d1770f7a5b5217155f2e17558d53cf40e5fe53adf46d88e06b6758ca79303887e0f879fc98ecb SHA512 6d50fca6dd32524f48c2dba88e581a1e95f204cafd25c4e9b66b168fd422391a012fb46db0ceebfdfdcb031cd65786d527cd65211de73ab2a5a7a1d09583c510
MISC metadata.xml 505 BLAKE2B a5245462c62a7fa7e51153dd4040ed8180553474bd9ea584f94a0724d61d8965f0109375bc6d39fe2480c89f670ec08616311ab9320f53218200f1f0f6c39932 SHA512 33fa7a68d794e8badc728091a30fed602d0305c5d6fc72dde8ccf04271c1ea271d16e021aebafc24baa6e20f6856b5302eedabfa39d86258fd2254287c007159

View File

@ -1,33 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Python client library for the OpenAI API"
HOMEPAGE="https://github.com/openai/openai-python https://pypi.org/project/openai/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/tqdm[${PYTHON_USEDEP}]
dev-python/aiohttp[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest