-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
3 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
DIST ttn_client-0.0.4.tar.gz 7863 BLAKE2B 8b96e1b8181bff8971714496ec6bc535c790b18358eeaca737c606fd26cd5d9c6bc4edb6be1cde84478a4d95beef4c8c21ce163658a825d40d826f547514ccab SHA512 e32bde3ed03f1e8dff2f9160ab28892e43ed967e9e7e9489c75241215ebf40c20c339fde618baf7978a37b5e3685cab2273db1c4bc8d078ab56b3259223f8f5d | ||
DIST ttn_client-1.0.0.tar.gz 7931 BLAKE2B f894c17cb593bd666db13489a043177c5eeaf60ebfe4cb74d706cd5d090ae49b354ecb96aca68924d46c91e80d0e6a3798b60302a5b367fedb98ef36a3620685 SHA512 0b7424277a2934b85925d707a0ca2c4955392919fbad560858f64954cfac911ecb7d1096216419dc4ec7e8a9b891532690be07fed2757eb95cdccb574168606e | ||
EBUILD ttn-client-0.0.4.ebuild 601 BLAKE2B 804ef3308204988804cd0c37aa1609785ef2fd8a5d7e89f67c775b389e506e348b6056074cfc7433684bd13efbf137d05482fb8d7a13a63ac7919ba60fb09c56 SHA512 9db4932d62651c061442feea93909a945ded3408802ee62722549d3d4c802d0b3e09d5d7eac31d1c2a72a08a509badee2801b845550e64e374921b78fd372cc7 | ||
EBUILD ttn-client-1.0.0.ebuild 609 BLAKE2B 6b9b648b4f5be0b8a59f8426e05a5c564bb084dcfb613d0bf9878a0b6f51eeef091b446beacc9f0325fc77ba584268ae4f7b7c6db19463b67ac92421915b6238 SHA512 041d530500bcdcb627659e4bd465651f0e40f3ed0a3ed216c138f71e447f53b225f4d182ec4927480e0e86201bc558d1b33b3573bc76fa166fa57d8feb1a1408 | ||
MISC metadata.xml 538 BLAKE2B f3b152f9876b38e98b920ea879886c8206c85bd686f1ce2ccf61f6374b5f9627ac3865472b54add75cb0ac3c4650246d4b32458a1259d24754dc044792673541 SHA512 f28caafb5daac30c0992f26cd77808a7fb7c16a18c841d220149a4af414c17f2213a2826473b09146d398a8025695f8ae42df942a14681b1dd0144ee5d1a4fe8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{11..13} ) | ||
DISTUTILS_USE_PEP517=hatchling | ||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="A python client to fetch/receive and parse uplink messages from The Thinks Network" | ||
HOMEPAGE="https://github.com/angelnu/thethinksnetwork_python_client/ https://pypi.org/project/ttn-client/" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.md" | ||
|
||
RDEPEND=">=dev-python/aiohttp-3.9.4[${PYTHON_USEDEP}]" | ||
|
||
distutils_enable_tests pytest |