dev-python/openai: add 1.3.8

Closes: #2627
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-01-04 12:24:58 +01:00
parent 2c57f79251
commit f0c94d91d2
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 39 additions and 4 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 1610 Ebuilds in total, 1599 of them have in total 1614 (42 different) licenses assigned.
There are 1611 Ebuilds in total, 1600 of them have in total 1615 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|925|
|MIT|926|
|Apache-2.0|344|
|GPL-3|102|
|BSD|88|

View File

@ -1,3 +1,5 @@
DIST openai-0.27.2.tar.gz 57122 BLAKE2B 3b6294ca98f279ef0fb51ee1ae761718a01a728c9c29677f4bb9b0731b61ad0a818a94bafe75425f259c12e72e86d4b3b1ea07b44f8aad6a47cc21f5df206bb0 SHA512 1d648315a8fc04650d11cc3c90e96f0062d276cb7dd1fd132b03f0205675af7ed7df3c1d54384b0f2d4f51d30d387392fc96133f190057feb689026b066ee700
EBUILD openai-0.27.2.ebuild 712 BLAKE2B 1e3ff03def1da9cd99eed858ea28b2fd28ba762d8c8d6a49719d1770f7a5b5217155f2e17558d53cf40e5fe53adf46d88e06b6758ca79303887e0f879fc98ecb SHA512 6d50fca6dd32524f48c2dba88e581a1e95f204cafd25c4e9b66b168fd422391a012fb46db0ceebfdfdcb031cd65786d527cd65211de73ab2a5a7a1d09583c510
DIST openai-1.3.8.tar.gz 122136 BLAKE2B 24c2b161bd941cf71ac26d8473af9d7ecd0fffb3757ca0f5644a1862d9a71eb07ed64c344940e85fd9e12edd97980f2d41f67cfb7ad8b13f1fb536ee4e41b26b SHA512 b891b03f1cabd8906f8b82a6fb081c8a8245e1f79c0615fd1fec9157520e68d60231a4836928a455cc01b4b05cf5a43ad72ad026104beade130bee579be179d4
EBUILD openai-0.27.2.ebuild 713 BLAKE2B 0161a2a44d296da15a19349a3ea0f2e4440910ec92838ca62b52e98715e1d914a656d64715a28999daf9262830a0624a54edf0fe995845a29d200e8c966a97d0 SHA512 b677fdd85657dce6509e111fbb825c9c7ae2b123c97219f1a3d5fae5f12bd4e80b698a3953725cc190c64087a97b6638679b0858ed2971c91a6145bc860da9b4
EBUILD openai-1.3.8.ebuild 871 BLAKE2B 04d37080c01bf02f2595bd1ad50d1ce51e460f6c9027813a6321cca58ad5baca33521aaa8ee46882b16a48b6bf883f952f479a6666138cea5a10d18229e06fed SHA512 99653d6b6cf774f004d15b0e044182a9b773c5d8b563a84d0cc767ab1177e74f3a9a3972579e6c98f378455d953dab04c7513560cd0ff12afd7c11579470486d
MISC metadata.xml 505 BLAKE2B a5245462c62a7fa7e51153dd4040ed8180553474bd9ea584f94a0724d61d8965f0109375bc6d39fe2480c89f670ec08616311ab9320f53218200f1f0f6c39932 SHA512 33fa7a68d794e8badc728091a30fed602d0305c5d6fc72dde8ccf04271c1ea271d16e021aebafc24baa6e20f6856b5302eedabfa39d86258fd2254287c007159

View File

@ -3,7 +3,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi

View File

@ -0,0 +1,33 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=hatchling
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/httpx-0.23.0[${PYTHON_USEDEP}]
>=dev-python/pydantic-1.9.0[${PYTHON_USEDEP}]
>=dev-python/typing-extensions-4.7[${PYTHON_USEDEP}]
>=dev-python/anyio-3.5.0[${PYTHON_USEDEP}]
>=dev-python/distro-1.7.0[${PYTHON_USEDEP}]
dev-python/sniffio[${PYTHON_USEDEP}]
>=dev-python/tqdm-4[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest