diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 0919a962d..876154603 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,5 @@ 2019-11 23 (reverse added today) + * add scsgate-0.1.0 * add satel-integra-0.3.4 * update pysaj-0.0.14 * add pysabnzbd-1.1.0 diff --git a/dev-python/scsgate/Manifest b/dev-python/scsgate/Manifest new file mode 100644 index 000000000..3db13cfa9 --- /dev/null +++ b/dev-python/scsgate/Manifest @@ -0,0 +1,3 @@ +DIST scsgate-0.1.0.tar.gz 8402 BLAKE2B 53d2ea99023cefb719f16e9da631384f35d8f34d78fb010f94e62b8d30f232c7e6f46429c371d59307891de451755c1c161c097ef9335328d325e1970f047af3 SHA512 53097b7daa7386c0d6d9b0b16c3883f1d5c72b5c6e0e45b633db377bbfda0313b41f8d271f99d04d353a899358da4c2215fcfcf8bf9a2c3191d53d8003f00a96 +EBUILD scsgate-0.1.0.ebuild 742 BLAKE2B d6391a4a179715ac3cb0a816e0034e25f58de8bad36a26234a4dd2cffc8efa1efaeae7d039b6766d3296ced98c12792c2019f3a2e73ff7862d2de7624102b04c SHA512 3e8a84d671b3ba2dab036dd8d5e1747207cf91e365d5814a715b0ae573410dde4e5240d089dc3d906378521512de5a612bb99ad4b774b1ca0a55055d3ac88c90 +MISC metadata.xml 460 BLAKE2B 5cb6d1a268de19eaaab1cbec036b1405184aa7744c8a3d8c8996c10db6c0486b563e6079fa2ed921728f8d113eea730f7b2da3756fd801b19ea2a2b43f717448 SHA512 173c7b91c5c667a78acac3920535fca8e4180f5ca57aa3c046f9cdc6a31c49086afac5a9873977b6fe1c08b874c59cd68864a99c3a3f16627e019f81c3317065 diff --git a/dev-python/scsgate/metadata.xml b/dev-python/scsgate/metadata.xml new file mode 100644 index 000000000..121e0c3c6 --- /dev/null +++ b/dev-python/scsgate/metadata.xml @@ -0,0 +1,16 @@ + + + + + b@edevau.net + Andreas Billmeier + + python + + scsgate + + flavio@castelli.me + Flavio Castelli + + + diff --git a/dev-python/scsgate/scsgate-0.1.0.ebuild b/dev-python/scsgate/scsgate-0.1.0.ebuild new file mode 100644 index 000000000..d29fefbf0 --- /dev/null +++ b/dev-python/scsgate/scsgate-0.1.0.ebuild @@ -0,0 +1,32 @@ +# 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 module to interact with SCSGate" +HOMEPAGE="https://github.com/flavio/scsgate https://pypi.org/project/scsgate/" +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="dev-python/pyserial[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}]" + +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 +}