diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 05d2ff514..a5d19e811 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,6 @@ 2019-11-22 (reverse added today) * + * add plumlightpad-0.0.11 * add pypjlink2-1.2.0 * add pilight-0.1.1 * add piglow-1.2.5 diff --git a/dev-python/plumlightpad/Manifest b/dev-python/plumlightpad/Manifest new file mode 100644 index 000000000..148bb1e81 --- /dev/null +++ b/dev-python/plumlightpad/Manifest @@ -0,0 +1,3 @@ +DIST plumlightpad-0.0.11.tar.gz 5498 BLAKE2B 2c71583a380e7e0157df9f1021b7e498d814d42502023f3708f3532180d7cd0fe1124eba24e4a86d44f1010e7184dee969b0d89a5b273635d4b850b045a8c0f0 SHA512 fbad9b852c82ce1f8a252e0b6b0a7770565891eb507f62d459a1bd9e027f435a29e7ec9b102c7a9099de67995a39f5ea3cf3680791c5373fcc43879b9a4bebc6 +EBUILD plumlightpad-0.0.11.ebuild 694 BLAKE2B 9ab4e88ef8ba08066f53f8d06c0155b4b1b898c76a3a0b6ab74b0b163ac91c6418565094c2ae8216048926c68265d87c448f72e73931d2d9b79a08584602505b SHA512 92de9379d155683d24169df94d62052ea7c2fe222ac8237050fa9bf32fa77b7d5aa6c69a6972b42a4c901a92464d0b1bcb3c65d1e535f1ed8c563e4540ad1d2d +MISC metadata.xml 464 BLAKE2B 6cc9dc9354c5a3a66f01e614baeec3c615a5819feb8c802efdff63a9ae2bff06d1ec7e19a3f6d318b32a4057b32510fd8f59aedf35d4779dc48cf8967372fd6e SHA512 ec6e3a2f843a827e81579385c1dc424b1382d6aeb6fbe50016a35b33b2a4508208be8551f09fd3b6b5adc2a494a648d5da3d60fa5955e8343e083b00f5e05419 diff --git a/dev-python/plumlightpad/metadata.xml b/dev-python/plumlightpad/metadata.xml new file mode 100644 index 000000000..d67a76686 --- /dev/null +++ b/dev-python/plumlightpad/metadata.xml @@ -0,0 +1,16 @@ + + + + + b@edevau.net + Andreas Billmeier + + python + + plumlightpad + + hp@heathpaddock.com + Heath Paddock + + + diff --git a/dev-python/plumlightpad/plumlightpad-0.0.11.ebuild b/dev-python/plumlightpad/plumlightpad-0.0.11.ebuild new file mode 100644 index 000000000..c9a1ff852 --- /dev/null +++ b/dev-python/plumlightpad/plumlightpad-0.0.11.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{6,7} ) + +inherit distutils-r1 + +DESCRIPTION="A python package that interacts with the Plum Lightpad" +HOMEPAGE="https://github.com/heathbar/plum-lightpad https://pypi.org/project/plumlightpad/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND="" +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 +}