dev-python/pytraccar: add 2.0.0
Closes: #2497 Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
@@ -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 1722 Ebuilds in total, 1711 of them have in total 1731 (43 different) licenses assigned.
|
||||
There are 1723 Ebuilds in total, 1712 of them have in total 1732 (43 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1007|
|
||||
|MIT|1008|
|
||||
|Apache-2.0|363|
|
||||
|GPL-3|98|
|
||||
|BSD|96|
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
DIST pytraccar-1.0.0.tar.gz 6065 BLAKE2B 651f85c97f83f803a16f4ae368cce3d33d95255f981b7d4f592d7f48ba89f53b42e69df3ced05017c2e8be00115e2928f33982ba2b42d5292d995980078aa832 SHA512 e1ed003f2f00660db1368bac95f72d97cd994059576d0f38ddfc220f47e1d3657bfc4262fbf24d64e7de37864fd8fae59ffc070f82dcfcbe5be376c52dd90307
|
||||
DIST pytraccar-2.0.0.tar.gz 4979 BLAKE2B be920cebd8bbebf47df67f516ad5f8cc20b91eca40e5b4816c556ee436f71d5628adc7bec97fa43dad88b2d1b9f4ac5f125f4a5d21291efbf02524c90232ee11 SHA512 cff484138ea876d0c846ea999c7f733ae0410923c35c84ec03f29b5be2c53effce978299f4b7104c246af3c36be2dd811cc7839cd4e7d17fcb9ec61c94435913
|
||||
EBUILD pytraccar-1.0.0.ebuild 770 BLAKE2B 0f5cc7a0da0ba7d2b08c73aefff9317a9b77c3d2bb291ab263c7ad4025d13c80e9df74d2fcbbe0ee2a1dc728e2c2c6ddd3268d4f98aa29153c93cc1d77344954 SHA512 4d59da26dad97119ce63d18fa74ccabb905e4d0dfd9be69e4189a55cc8f33d86eaeceaf74b78c54ad11215b115077987aaf6b15083a0679a153a4e499a82081d
|
||||
EBUILD pytraccar-2.0.0.ebuild 731 BLAKE2B 55068cfe29b359fc6427a7198c36289491dcd9f95da336abb257e9ddcc5f779a586ad61f4caecb196e605237ae68249376a8b957af567e108ca344a29216cdd6 SHA512 39bc0cc2a3e16cd920b651afedc95c6040ccfd6befdd1f4d4f81d9b558b53fae14ab8f0463860a1d5a9258a68bcf514cc479f8907da9a35064845a312a55a739
|
||||
MISC metadata.xml 507 BLAKE2B 5a2068173137d4cd6a15b4eed4faba6040e78bb5b4ffe08cb942715f1d99cb3590f7b38693332bcd22354495c5acac39a98ad8e18eb78f8a9940627b4f790c2b SHA512 812a9c72a096df3c38d1505ee200f34cf0f7b4691ad68a6c03b151ba0335f2e5a184482f3695a3518322617a2bf99fda6f64cc7d6efc002e7b81ffa0b5ecf218
|
||||
|
||||
32
dev-python/pytraccar/pytraccar-2.0.0.ebuild
Normal file
32
dev-python/pytraccar/pytraccar-2.0.0.ebuild
Normal file
@@ -0,0 +1,32 @@
|
||||
# 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=poetry
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Update and fetch device information from Traccar."
|
||||
HOMEPAGE="https://github.com/ludeeus/pytraccar https://pypi.org/project/pytraccar/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-cov[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
Reference in New Issue
Block a user