bump pyotgw-2.0.0
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
DIST pyotgw-1.1_beta1.tar.gz 51505 BLAKE2B 2989e19204c280b273d41a0b2643281e029cb0d69fd7db4a1f8a5108d686fbce6929431c2c238984faf2f72e32b2c75f015272b3fdaeebce5d39918539922f89 SHA512 bc25567b200f0b8e7fd5c500e99e0b94331a0eba66a1500e9d3906382b4533fee49f4a0baea993204e94df6596b3547fc665ff219f0bfe36c4d35b8d04c51d3f
|
||||
EBUILD pyotgw-1.1_beta1.ebuild 875 BLAKE2B 9773c099bf92f522b819c73b5c6077301fc8c3f1e3f166a75935ede03ab98d61649724cc50fa0a0ee82824b713af379f71b0976f6ad32b94629f9dbb86524c5b SHA512 753983ec596405d2be54a894250dfb13b89ddd2464b93f86b6bb21990107f63f5bd3d7b17ddf808ac8bb683ea0716e316837997e08934014e24f09f3d52adb11
|
||||
DIST pyotgw-2.0.0.tar.gz 58130 BLAKE2B d11311afb02a41feea4e64de50338e0861427057713118e130ce8e4f038dadada6eb16abda10c4ccf1142496538c2c128885e7497e4a3d38016033d757fa219c SHA512 0f76981c0c4f6a4dc53549f93151dfc02e6a55396b36680258a4600e194635d5ec6b29c4a3c38bd9f43d420eb81efb8419fc3858799a6febf716dda81d913c4d
|
||||
EBUILD pyotgw-1.1_beta1.ebuild 846 BLAKE2B 0cd255db9d76ad191b0685fe42280f3c7bc916a81a59fa1b16aab37ec5790b3b1638934f3509326b9d82fec744f566e1f4acec38018c571279229712f6dade46 SHA512 073535c676fd2272748f8cc8bd987ea27baff18ed78602974a1f22f292ea7ac271af951f7bfdd96c9978a600b1487548805dcc7987282bdad44c390bf3768c32
|
||||
EBUILD pyotgw-2.0.0.ebuild 877 BLAKE2B 882c68a9e8929ddfe2fd743dd42ad9c7fec39a3bdeb5b88a1dbb06d75ff8a05707e2ec421523ee6740122e1b43ca2a475129561d7d3d769381bbeffa788ae23c SHA512 5e05c1bdc43ce4a66239541098a5601d9daa229812d9d08d6bc6bc9c7cabf3aa235aa0da71f7789463ea0544da7fb56dee091d2abd9c5fc582d4331d81a30020
|
||||
MISC metadata.xml 455 BLAKE2B 18c060e7d00164739a1a98debce079e52756c40cda1e4e99e754596b5740f3154a245251416312d1106d7b40ae01eb028838b7e96df47e6215e82720e3b3c066 SHA512 a598c74011f95f31b1eab06f269246452387af3c33e74067841209490070bfa8632cf9e5c610fb396a817d7e9fecbc2c17fda92ccb1f2454c38b3b4eb13969ca
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..9} )
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
@@ -15,7 +15,7 @@ S="${WORKDIR}/${MY_P}"
|
||||
|
||||
LICENSE="GPL-3+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
|
||||
37
dev-python/pyotgw/pyotgw-2.0.0.ebuild
Normal file
37
dev-python/pyotgw/pyotgw-2.0.0.ebuild
Normal file
@@ -0,0 +1,37 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A library to interface with the opentherm gateway through serial or network connection."
|
||||
HOMEPAGE="https://github.com/mvn23/pyotgw https://pypi.org/project/pyotgw/"
|
||||
MY_P="${PN}-${PV/_beta/b}"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
LICENSE="GPL-3+"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND="dev-python/pyserial-asyncio[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/nose[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
nosetests --verbose || die
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
Reference in New Issue
Block a user