dev-python/gassist-text: add 0.0.11

Closes: #3118
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-08 18:38:42 +02:00
parent 1d6e1c3806
commit 855eed24f9
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 39 additions and 4 deletions

View File

@ -617,12 +617,12 @@ 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 1986 Ebuilds in total, 1975 of them have in total 1994 (42 different) licenses assigned.
There are 1988 Ebuilds in total, 1977 of them have in total 1996 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1123|
|Apache-2.0|456|
|Apache-2.0|458|
|GPL-3|129|
|BSD|111|
|LGPL-3|26|

View File

@ -1,3 +1,5 @@
DIST gassist-text-0.0.10.gh.tar.gz 19478 BLAKE2B 4c4d7fbb678ac3466e20e9c402c87ad9edfb2bf50876bc1486c92d5544aaee23996f1211f2685ed40a30f457c3276fb29381c3182273a500d1fd1aebb037ee36 SHA512 532e2d1446ed7004eee5bb501685cf8bc096c36d3479fac079704ccf7932277ed99aae9ffd0a8c19c0c3666f94efdb9bba9a5d749fda219d438ccf562bb5b105
EBUILD gassist-text-0.0.10.ebuild 1007 BLAKE2B 67450b0500393bc83a0fc8898614bb8c16d46b465b34580024de922ad4496ee0dd86d7aeaa1919db033dda1293a73e401668490e020f9baa2cebc11e49dc83f8 SHA512 468f0b7cf63d59481dcc7478c9892e05780d4fcbe16c101b92bdcf520d3a4cbf540ce4a741e8cf2e619e0f74a2bef8c1e081d25d5237a8be5c974dd469912909
DIST gassist-text-0.0.11.gh.tar.gz 21696 BLAKE2B 95c06659703e254744a04f88864c5b94b3fe2c8caa97509fdab7ef31b214494fb0a0529a0b3605fa7063fe9e654251501b4aafadf190d61567def81b37531cea SHA512 8f02b3adbdcdd5304fa97361f902b8096c3c47ddfd8624339deb31964570bc9591881c638845d362fb149c2569ff5036fe3dd3114f1f2f825706f49253def9c9
EBUILD gassist-text-0.0.10.ebuild 1007 BLAKE2B 9263c3d62854383a4fec1697f7592a62cb0ab4077171bdff5da7ee0a508ff89abae94284370af47d73db075a56f1fce1a81bbcc597758d67972495bb646a7a96 SHA512 5e230ee72e14f10e5a2a790a1bf32cb81f3719392022f2498d52c1a46c4aa1600eb107577a7aa268e334f6820ee43305e10d8940e37b18381c87ac3149adf5c0
EBUILD gassist-text-0.0.11.ebuild 859 BLAKE2B 7cbc0ab519677c779dc54d28c1a0b73914a7bf4d159b050841b6bb88cb6db6d5d8a23a1fc5b682d550e5178e83d225609e67018e4a1c53165456c6bcc7df7fd4 SHA512 4d6bdbffd854caf43fc6bfe628a5fd5b2c68394d31c9f35ae9944615e520ba5b056505f039ed6031822c579453a111222e06c1746f1c35b6fcad848c69c96c7a
MISC metadata.xml 514 BLAKE2B fe14ed786f64ed380ca396233569947f04caea13ee56a656b14a4208d11523bcc08b9781b5c5f6d8dfb368e909b9feb3a56b85f8ac6ae2bddd06c95c1e7afec9 SHA512 d5ee54c6570c9e9732f2c7b55dfc46db7873950de820d0bac2199a3a1b165e5813c4a34737489b73db7ff4e4adf90bd94bb81039c5f54695fbb5304c615de2c8

View File

@ -5,7 +5,7 @@ EAPI=8
MY_PN=${PN/-/_}
MY_P=${MY_PN}-${PV}
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1

View File

@ -0,0 +1,33 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN=${PN/-/_}
MY_P=${MY_PN}-${PV}
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="A Python library for interacting with Google Assistant API via text"
HOMEPAGE="https://github.com/tronikos/gassist_text https://pypi.org/project/gassist-text/"
SRC_URI="https://github.com/tronikos/${MY_PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
BDEPEND="
dev-python/google-auth[${PYTHON_USEDEP}]
dev-python/grpcio[${PYTHON_USEDEP}]
dev-python/protobuf-python[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
"
S="${WORKDIR}/${MY_P}"
distutils_enable_tests pytest