bump pyotgw-2.0.1

This commit is contained in:
2022-07-28 18:48:29 +02:00
committed by Andreas Billmeier
parent 78c96d76b1
commit 587fb9a04d
3 changed files with 41 additions and 2 deletions

View File

@@ -523,7 +523,7 @@ 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 1814 Ebuilds in total, 1807 of them have in total 1817 (35 different) licenses assigned.
There are 1815 Ebuilds in total, 1808 of them have in total 1818 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
@@ -534,7 +534,7 @@ There are 1814 Ebuilds in total, 1807 of them have in total 1817 (35 different)
|LGPL-3|30|
|GPL-2|24|
|LGPL-3+|18|
|GPL-3+|15|
|GPL-3+|16|
|BSD-2|14|
|all-rights-reserved|13|
|LGPL-2.1|7|

View File

@@ -1,5 +1,7 @@
DIST pyotgw-1.1_beta1.tar.gz 51505 BLAKE2B 2989e19204c280b273d41a0b2643281e029cb0d69fd7db4a1f8a5108d686fbce6929431c2c238984faf2f72e32b2c75f015272b3fdaeebce5d39918539922f89 SHA512 bc25567b200f0b8e7fd5c500e99e0b94331a0eba66a1500e9d3906382b4533fee49f4a0baea993204e94df6596b3547fc665ff219f0bfe36c4d35b8d04c51d3f
DIST pyotgw-2.0.0.tar.gz 58130 BLAKE2B d11311afb02a41feea4e64de50338e0861427057713118e130ce8e4f038dadada6eb16abda10c4ccf1142496538c2c128885e7497e4a3d38016033d757fa219c SHA512 0f76981c0c4f6a4dc53549f93151dfc02e6a55396b36680258a4600e194635d5ec6b29c4a3c38bd9f43d420eb81efb8419fc3858799a6febf716dda81d913c4d
DIST pyotgw-2.0.1.tar.gz 58416 BLAKE2B fccac5a297c35ebb2283190d45f6c370925540a844683cf3ffdca0520ea98e656c36aa0867f459683af9750efa9c093e30ffb803bf993f668de85d7139a7e217 SHA512 7628bf7d43ed966b4d350de511f000d935b26251c9538b4946981712222338bd2872c8ba44176bf5af74602108b68e4aa01ec0bd0380ca8393e5447264a640e3
EBUILD pyotgw-1.1_beta1.ebuild 846 BLAKE2B 0cd255db9d76ad191b0685fe42280f3c7bc916a81a59fa1b16aab37ec5790b3b1638934f3509326b9d82fec744f566e1f4acec38018c571279229712f6dade46 SHA512 073535c676fd2272748f8cc8bd987ea27baff18ed78602974a1f22f292ea7ac271af951f7bfdd96c9978a600b1487548805dcc7987282bdad44c390bf3768c32
EBUILD pyotgw-2.0.0.ebuild 877 BLAKE2B 882c68a9e8929ddfe2fd743dd42ad9c7fec39a3bdeb5b88a1dbb06d75ff8a05707e2ec421523ee6740122e1b43ca2a475129561d7d3d769381bbeffa788ae23c SHA512 5e05c1bdc43ce4a66239541098a5601d9daa229812d9d08d6bc6bc9c7cabf3aa235aa0da71f7789463ea0544da7fb56dee091d2abd9c5fc582d4331d81a30020
EBUILD pyotgw-2.0.1.ebuild 877 BLAKE2B 882c68a9e8929ddfe2fd743dd42ad9c7fec39a3bdeb5b88a1dbb06d75ff8a05707e2ec421523ee6740122e1b43ca2a475129561d7d3d769381bbeffa788ae23c SHA512 5e05c1bdc43ce4a66239541098a5601d9daa229812d9d08d6bc6bc9c7cabf3aa235aa0da71f7789463ea0544da7fb56dee091d2abd9c5fc582d4331d81a30020
MISC metadata.xml 455 BLAKE2B 18c060e7d00164739a1a98debce079e52756c40cda1e4e99e754596b5740f3154a245251416312d1106d7b40ae01eb028838b7e96df47e6215e82720e3b3c066 SHA512 a598c74011f95f31b1eab06f269246452387af3c33e74067841209490070bfa8632cf9e5c610fb396a817d7e9fecbc2c17fda92ccb1f2454c38b3b4eb13969ca

View 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