bump python-gammu-3.0

This commit is contained in:
Andreas Billmeier 2020-06-27 14:37:09 +02:00 committed by Andreas Billmeier
parent 77702cc37a
commit d77335c26a
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 35 additions and 0 deletions

View File

@ -13,6 +13,7 @@
* bump python-ecobee-api-0.2.7
* bump numpy-1.19.0
* bump axis-33
* bump python-gammu-3.0
2020-06-21
* bump ptvsd-4.3.2

View File

@ -1,3 +1,5 @@
DIST python-gammu-2.12.tar.gz 135442 BLAKE2B 37e324dc582d5635de86262ad9ecff126f709dcd23f5db61e23086270fc067df3cb47b62808b9b9cee79ba7dfa3a97ea52c7bf3eba0f9be5b066351fe0f1fc15 SHA512 1c50d38a3ab86298ef5d5d9f297844980ec87f2bf3c84727d385d22b4dfdbf5e09b6fc727a9ad9c25f7f2bbc92f5c58b17abf5537dba980a87f07cb0347cb6f2
DIST python-gammu-3.0.tar.gz 139839 BLAKE2B 539b2d08a068cbc34d665abbbff4d240a9ee4b2c3d7c1c117eba438e9fd3cf5eae337e551b7830d4ca533b7710e085e512344f9898af13b1353a582a946e9fd3 SHA512 6749d7ac0ca691945e111f14a20bdcd616dd265a5f7f5b98090226608504ad2c97e0ce574fe5aaf05afabd71ae905ba2f2e6ec2764c199502fad5cc424b4456d
EBUILD python-gammu-2.12.ebuild 743 BLAKE2B 434dd904c8682c60373428485cf8bd274267a0ab7e028bc8c4c9ede3a0b3b657fe50c3f41f6cd6211ca6348ee3d6d4c181cccb7200ed6c5a16b8803382fdd294 SHA512 a87f67804f9ca11fa0b5ab97aeb9c10fa53e543711ef07a17f0119a49b08fa1c4a1020df3ba7ad1fa96857b47465902cbe1487a35a878e65f01fabec2836ad31
EBUILD python-gammu-3.0.ebuild 743 BLAKE2B 434dd904c8682c60373428485cf8bd274267a0ab7e028bc8c4c9ede3a0b3b657fe50c3f41f6cd6211ca6348ee3d6d4c181cccb7200ed6c5a16b8803382fdd294 SHA512 a87f67804f9ca11fa0b5ab97aeb9c10fa53e543711ef07a17f0119a49b08fa1c4a1020df3ba7ad1fa96857b47465902cbe1487a35a878e65f01fabec2836ad31
MISC metadata.xml 453 BLAKE2B 646703a14c883f9a4a3bb8dcbf62e10e9faa956621c679ee384926a1db9d349def1f8e6a35819e7b1c91e38a5320a7cab245dc3ec440594ead32f6ec98e2523a SHA512 487fe4104999bbc3a2dc926138b583e7e244f8c61db1fa2683bb33693ef44346df2c4ec34fe907a3f777a9449c9a8ea5f46291f5c3b2d1241cf57600b88ff8f5

View File

@ -0,0 +1,32 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Gammu bindings"
HOMEPAGE="https://github.com/gammu/gammu https://wammu.eu/python-gammu/ https://pypi.org/project/python-gammu/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/pybluez
dev-python/libusb1
dev-python/pycurl"
DEPEND="${REDEPEND}
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
}