bump satel-integra-0.3.7

This commit is contained in:
2022-07-19 10:56:31 +02:00
committed by Andreas Billmeier
parent f3d50a6916
commit b931e457bc
4 changed files with 44 additions and 4 deletions

View File

@@ -524,11 +524,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 1770 Ebuilds in total, 1763 of them have in total 1772 (35 different) licenses assigned.
There are 1771 Ebuilds in total, 1764 of them have in total 1773 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1082|
|MIT|1083|
|Apache-2.0|316|
|GPL-3|106|
|BSD|102|

View File

@@ -1,3 +1,5 @@
DIST satel-integra-0.3.4.tar.gz 17988 BLAKE2B 880c5863f723288270813ab8b4651975258b81930c795c088ef7a52662ebc055f9f3fe24fc6d57e3d103bcd6197b3b257d98f44060c25cb30db4a1a4359e5c81 SHA512 a4105c1deb9cd5eada05234e0ad64c5cddeeec45566dfe7f71cc46f82ce9601e8d872e15b24da6f2c7e02c338a7a4c5fa7185adcbafb9ac4bb16d382db7742bc
EBUILD satel-integra-0.3.4.ebuild 853 BLAKE2B 569eb5b6ec3dcb06f958698adbb22f02310d351bae1012ec1641a1c51da639d7b20449fe9f8f268b5d32d58b76d05181358e1d46e6672fbd7c786a0d1e062f0a SHA512 48c1c1ebb000d879fe3c0ae77840d6ea3c4a0fe905bfed3dd0007eb6249dade76900ce0f56e0b5cf211cb8e06237c7d8f19ee6a44ee5ef0989ddd6c17786a60c
DIST satel-integra-0.3.7.tar.gz 19844 BLAKE2B e7f36f93c1be88291e398a2dc1dfa0c1874823890385f96f0100fa8905972f6779ad4cc03125ba749ebcc8fa0ba6bf2832bdb49fa73790132a91d37b49535450 SHA512 2590e8535d355f3a74f8f94488eec428c94053a4e786e2c33177fd13cc83de8d3476e0c3fda62f74df8323e131e7e4255fdfb8ce96cd3e6ee58da0da82765a83
EBUILD satel-integra-0.3.4.ebuild 825 BLAKE2B 28fe422f5f3f6c7953090c00403dd69f4e53273e301f01df01b6cbc409484b096d8419e6e12e5aca6c1f91256c8e541dbf7583ee032d5fa568c4b1396ab2ba7d SHA512 4b09e24d6edf0b811963d1c02f8e9dca03950a642a006e7a13fb81e9d51acf8d33862839d10f2beca293a8b06732d15ddbd81a20849ac08cc52297347d6a3a8d
EBUILD satel-integra-0.3.7.ebuild 856 BLAKE2B 16651a22bad1ba62c16a40e57e72b53ee9826081a91044db4a70db0138664a40d1f854065d5bc53351a04dbc4edbc0c838b46f57c150ad1afde64694062a39f4 SHA512 f249b6058f9284903003b115ff694309737f67a1a20f9ab3684f676c210198b6ca871f05589f1a43b22b71636fff2dc2723e624c1b835f9d2f5560fb4e40db8a
MISC metadata.xml 479 BLAKE2B 407130154fdf79d973470ac41057fdc239e6e25b34ad3376506ee02fa255def690313a03e045bc1dbfb45ec89b31e13bde924f719732725edd0f34bbfd09b679 SHA512 3d6c1acf8f4c03e752c3fe62b2196513a32af7b487482283abf8225c62c29faa080b450971eb51252268665ab96ea0f153472a1e70daba155dd3d5e9449d29a1

View File

@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
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,38 @@
# 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
MY_PN=${PN/-/_}
DESCRIPTION="Communication library for Satel Integra alarm system."
HOMEPAGE="https://github.com/c-soft/satel_integra https://pypi.org/project/satel-integra/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/click-6.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
S="${WORKDIR}/${MY_PN}-${PV}"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest