add pyitachip2ir-0.0.7

This commit is contained in:
Andreas Billmeier 2019-11-23 11:03:50 +01:00
parent 17e6bde6cb
commit 15bdf8bfe4
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11-22
* add pyitachip2ir-0.0.7
* add prayer_times_calculator-0.0.3
* add pyirishrail-0.0.2
* add pyipma-1.2.1

View File

@ -0,0 +1,3 @@
DIST pyitachip2ir-0.0.7.tar.gz 7767 BLAKE2B f08bc7efa0e6d91243c2c52077e5e8efec25ccfd7a48b3ff5326ab4754a490c149edad1487bba16998b30ee8c25341b838ec0211f388c2ce4ce1d300213c413a SHA512 24535df9c80cca9f14a7d8dc978803fd21a757a9f4a9c04294ce78f2f1217fc7030ea6617fb155fcb3045c80683a3113a550450d680cf0c7c0a4d9a9050fe104
EBUILD pyitachip2ir-0.0.7.ebuild 699 BLAKE2B 150c31fdb2ade5885ab76564d71875691937401c0fc7d4f491e1cb008f84366142e51e87febe5e0bff87f048efb7bd9360281bff4cac231d28056eb07e657e8f SHA512 44fecb0c13c88c7850ba9eb353a18903ca364374b9d5833f98af3b1a991563879133e4f0eea3979b186149a9d7ab51a052d365288f8af861a03bdef0265c4942
MISC metadata.xml 467 BLAKE2B b145e684b0ffd0eb1fcdf99044d8019c8c933edf1bc9732099db864e553483786d523342dfd349006c4a4216c58e23e29e71059621e027677266eb928598d8bc SHA512 d31570c15da04c7862778f4ac3219b9d0ff8b02074fd469f52de35a79d7df51fce9c12906ef7964e23e1a29821f80d2ea3013c7437e0296f315916b397cfd23a

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">pyitachip2ir</remote-id>
<maintainer status="unknown">
<email>alan@lightningtoads.com</email>
<name>Alan Fischer</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -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 library for sending IR commands to an ITach IP2IR gateway"
HOMEPAGE="https://github.com/alanfischer/itachip2ir https://pypi.org/project/pyitachip2ir/"
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
}