bump pysml-0.0.8

This commit is contained in:
2022-07-19 16:41:46 +02:00
committed by Andreas Billmeier
parent cb96a6387e
commit bf60e2e70d
4 changed files with 43 additions and 4 deletions

View File

@@ -521,11 +521,11 @@ 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 1780 Ebuilds in total, 1773 of them have in total 1782 (35 different) licenses assigned.
There are 1781 Ebuilds in total, 1774 of them have in total 1783 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1083|
|MIT|1084|
|Apache-2.0|320|
|GPL-3|105|
|BSD|103|

View File

@@ -1,3 +1,5 @@
DIST pysml-0.0.7.tar.gz 12021 BLAKE2B e62cc003cfd792bd152894c0a580fa249baf0ecec58ea3b95a558b300612bc0d15a863126f6171f642d73f236da80c4f603ebd911917be3b212b9f3125767d70 SHA512 9e25b10f421d186e4e954a4afa0f781fab011a14e2210b675400c96754f0858172b5c0c96e672eacdf1ee7fff772f357a7a841fafd57b5cd2a86a0709a2757d8
EBUILD pysml-0.0.7-r1.ebuild 940 BLAKE2B e61c15af5a94fb2617393cb2d6cc5e6565deea00fb3927ebecf4a6597beb481dc752381d9b6a4d834d480858cc3c3df3e80488961cf4d10b657fe764735a760d SHA512 c31e0d920739d9aa21d5782faa82bd54ae190e2d4810cfb532ee90b7c5534e9cc122801c6648ee3bbec74796432a1a24b18b25857c3e0d133f02ea8275f4905c
DIST pysml-0.0.8.tar.gz 11171 BLAKE2B 5c68d1b7ea37fc05d5a736fc9a173648bceaf5596777036406cb587c114f3e6edf3e74944cfa1a8ed5d7f3af945a364662d1dbe119675292d03caceeb882bac6 SHA512 ede228b1925381f6f7562605654d6179b187f012a537138963886ac68b3525e63ef18a0dc11a789a654a2604e1774f49502f59162a2208e6c0f90f43b304dd25
EBUILD pysml-0.0.7-r1.ebuild 916 BLAKE2B d6a18445b042bf891ca7fe61127cac68152e1af85273a1c65cde4d38bc101b35739bdb795fc1eb1cb622ec9bad40cc82352d052ca4fade3a0ab5a3f74b1793d8 SHA512 cb9a03450b6cee616853b383c01eb61cef28f870b89be4c7116fa739fc2c4e84efd2b78a99ebda2350958412433556252ebf7a0a83cd619d6f60cfd1affb646f
EBUILD pysml-0.0.8.ebuild 916 BLAKE2B d6a18445b042bf891ca7fe61127cac68152e1af85273a1c65cde4d38bc101b35739bdb795fc1eb1cb622ec9bad40cc82352d052ca4fade3a0ab5a3f74b1793d8 SHA512 cb9a03450b6cee616853b383c01eb61cef28f870b89be4c7116fa739fc2c4e84efd2b78a99ebda2350958412433556252ebf7a0a83cd619d6f60cfd1affb646f
MISC metadata.xml 451 BLAKE2B 8694da1141d00a3ea62fb4594140b261b139732aa395a5d590f8529d06ce669b1ba5ada592ab7a35897cf342108f71d8772675ed75f5562d8faf0c97893c83c0 SHA512 d8e17297738d05e8491db24c1538e47cd63fc809fb39745d2b20f782e16e11737093ce24285fcba734bdeddf5eca249dcb52621398da30913a07e651fc887aea

View File

@@ -14,7 +14,7 @@ SRC_URI="https://github.com/mtdcr/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.t
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"

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} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1
DESCRIPTION="Python library for EDL21 smart meters using Smart Message Language (SML)"
HOMEPAGE="https://github.com/mtdcr/pysml https://pypi.org/project/pysml/"
SRC_URI="https://github.com/mtdcr/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/async-timeout-4.0[${PYTHON_USEDEP}]
>=dev-python/bitstring-3.1.5[${PYTHON_USEDEP}]
>=dev-python/pyserial-asyncio-0.6[${PYTHON_USEDEP}]"
BDEPEND="
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