-
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.
dev-python/py-synologydsm-api: add 2.4.4
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3497 Signed-off-by: Andreas Billmeier <b@edevau.net>
- Loading branch information
Showing
3 changed files
with
28 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,5 +1,7 @@ | ||
DIST py-synologydsm-api-2.1.4.gh.tar.gz 78437 BLAKE2B fb5bff8aaf0b8b3cc48e50d0c196cb1064caee90208aac82a2602ae91de0278eaea54c5b876a95b1336f5737c746505008261ebf844735977db11e86c1ec1797 SHA512 db7df504fb4a4a94788fa6c8e8335903a2c3b4e62085c0856f3447299bd39834b9725c06c48486e28375e8fd8605b2e577b9ca616cc67ce7f788388ed0cb835c | ||
DIST py-synologydsm-api-2.4.2.gh.tar.gz 85066 BLAKE2B 8a81ceea2ca665ab0f1390b9b0016e5c6fac3c7c1c616e7e0de31848ad4bc41e3694877468610666be42d5925b7b269a9bf20fdb853ac432d9add8acb3c72368 SHA512 93b5ecb83403da51359859fddf87b0b14c23223829020d4a388d7d0baebe59a6ffcb61e0cb44f30e44388a1a8974a322c5fa0ec5eb597845a94cc5f758748ebf | ||
DIST py-synologydsm-api-2.4.4.gh.tar.gz 85265 BLAKE2B c8bc6e9750cb95839aabf6b37014ed43306a140a331064c5ab8a3352a888a27d8a2198f3df550e8b81ec6aacf9ab87a74287f7a36d582f7ac7dce0b7e1f625fa SHA512 7a29fcff2b8ffe62ff5fd8f5e3380338814f418c3c0761068e28d94d83e4139546483a8baaa130774c3d798bd1cdec606906eb5335d499cc9206b2cce0dbe4a7 | ||
EBUILD py-synologydsm-api-2.1.4.ebuild 875 BLAKE2B fc4affc2b27d18c6c8e4909314eccaf817e550a87a2d6a898f71cfc21b1f6cdd6d796b4c592695b8237892b4800b166cb469ed204055541aacd2baeb27fe7b56 SHA512 8bcf74dce4a5c2050fbd849ddb2e9afdb886489f632fc342f301dea6dd6ccdc5ba800207c528b0a7451d5194497f1f915cf3376cba72a9c91bba9e3c6d930ef6 | ||
EBUILD py-synologydsm-api-2.4.2.ebuild 649 BLAKE2B c01434d888ddf0f5ca8fb4fc435b33f3c8bf3bf9f2bc12e18aa772ec95d644bfeadc7e5d5dc4ff2f783a94d3ae2bc6093eb203a258f366627aa0fef3a65fbd58 SHA512 878ef2241f23e3d202e1cd57fccef437e167841c2bb5ffce914eea39ca859d2cbd14f2844c0f56dae9222fbf9f5472482a705aa1e672bed8f3241e7048fff06e | ||
EBUILD py-synologydsm-api-2.4.4.ebuild 649 BLAKE2B c01434d888ddf0f5ca8fb4fc435b33f3c8bf3bf9f2bc12e18aa772ec95d644bfeadc7e5d5dc4ff2f783a94d3ae2bc6093eb203a258f366627aa0fef3a65fbd58 SHA512 878ef2241f23e3d202e1cd57fccef437e167841c2bb5ffce914eea39ca859d2cbd14f2844c0f56dae9222fbf9f5472482a705aa1e672bed8f3241e7048fff06e | ||
MISC metadata.xml 405 BLAKE2B c2cecfb2e8023b7a36d0955a53c58f28e075ea52b4ff4aa4c7b9f998be7e50d81c2f7ece4797955c825343c0da1348dd500ad6ea5eed36dcf1f55e1d0c663c53 SHA512 0b27f3ff1b76362589e2a7d2bab791296ba768a3299310901f9a9d8b62fbf65941cbdac52856ca9d6fc95c330c1acb51441065c66d0a20e44d709f954e2c3651 |
24 changes: 24 additions & 0 deletions
24
dev-python/py-synologydsm-api/py-synologydsm-api-2.4.4.ebuild
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,24 @@ | ||
# 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=setuptools | ||
inherit distutils-r1 | ||
|
||
DESCRIPTION="Python API for communication with Synology DSM" | ||
HOMEPAGE="https://github.com/mib1185/py-synologydsm-api https://pypi.org/project/py-synologydsm-api/" | ||
SRC_URI="https://github.com/mib1185/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.md" | ||
|
||
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]" | ||
|
||
distutils_enable_tests pytest |