diff --git a/dev-python/tinytuya/Manifest b/dev-python/tinytuya/Manifest index 1a42f13..63e508c 100644 --- a/dev-python/tinytuya/Manifest +++ b/dev-python/tinytuya/Manifest @@ -1 +1,2 @@ DIST tinytuya-1.13.1.gh.tar.gz 375110 BLAKE2B 8197bd764748e783b164256ba29a857ea9220138c5bbb28eda35c8cbc6ac132f73bc9a23b9ce5451a3b7944ce04f41ca0703e944e129941ca0ae1ce8161c753e SHA512 391d61811ef6dbde55e4da1799b2148d60cec884967315e8319d0ae21525dbaa39c3d4c2198c9e7df059e6d3ccff147f55f870d9cc2a093eefbcfdd1f169dba1 +DIST tinytuya-1.13.2.gh.tar.gz 379033 BLAKE2B a41828dfa051bad6b5e7d6f2191b08b88d8bfdfc0dc8523f280128a1d2aa70e9de052315cda415a474ceb190e9c2f97333cc8e18ccd0c374cdf13725b67f5c91 SHA512 6594dcedc22dac870f441755f3d655292038c1b689ee6857da6cefb9d6294357cea39483077ccd81ccab379f2184c2096b60a889f109f6c6bbb02a84be3ab6fb diff --git a/dev-python/tinytuya/tinytuya-1.13.2.ebuild b/dev-python/tinytuya/tinytuya-1.13.2.ebuild new file mode 100644 index 0000000..7664e55 --- /dev/null +++ b/dev-python/tinytuya/tinytuya-1.13.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..12} ) + +inherit distutils-r1 + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/jasonacox/tinytuya.git" +else + SRC_URI="https://github.com/jasonacox/tinytuya/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" + KEYWORDS="~amd64" +fi + +DESCRIPTION="Python API for Tuya devices" +HOMEPAGE="https://github.com/jasonacox/tinytuya" +LICENSE="MIT" +SLOT="0" + +DEPEND="" +RDEPEND=" + ${DEPEND} + dev-python/colorama + dev-python/cryptography + dev-python/requests +" +BDEPEND=""