add python-lirc-1.2.3

This commit is contained in:
Andreas Billmeier 2019-11-23 12:36:49 +01:00
parent 9b09ff32da
commit d64c0db68a
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 1 deletions

View File

@ -1,4 +1,5 @@
2019-11-22
2019-11-22 (reverse added today)
* add python-lirc-1.2.3
* add linode-api-4.1.9_beta1
* downgrade to lightwave-0.15
* add aiolifx-0.6.7, bump bitstring-3.1.5-r1 from main repo for compatibility

View File

@ -0,0 +1,3 @@
DIST python-lirc-1.2.3.tar.gz 36616 BLAKE2B 0a455caefce2f2c54ca745d2a2683294f59424d4cfe9a324a60009e45bc12379f80548e0e1468eb5bb8b8ff18aad93aebe1406107469d6a2e3431cae2fef27c5 SHA512 aa22a1ab9ec959b362df462832a556653f3d7832cde5ea52c6b64d976b74af49a86415a7187b489baa38e4b718feaae19dd56134e1f7d5d9f72ed76cb1382ecb
EBUILD python-lirc-1.2.3.ebuild 711 BLAKE2B 85f776db379d84af888c904f9a17450d7e04ecabd8ee392a51d3db7394ac92c7c63cb6d94e8c2a0c1a18129dbac22410ebc0dfe1d9e36048c265db85d7f64a83 SHA512 afeeda2332fab39221d81020833aa991d3b1cf93210b019ed7ea78e966649f2053004b75979ed1edb2e8f55428240aa0c6888d9140564aa57c299e674ac5f453
MISC metadata.xml 472 BLAKE2B ed3c73d3789abb658e3a6a8ff6be4c584de9a9227ed00eb8f73ca20e455d51a82bd29451fa7163e06ce3204c8f74adf9fbd9ffc53aab36ae55c9fa8198d53cc6 SHA512 2fdc0938c10611d7a57bfc3ec8669f659fa773f424d5f70095f167d041a4b29ed2065a68ef55ecba80ce0f36b4e73110f863e3dacb131f3854c0c8c1f202fd76

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">python-lirc</remote-id>
<maintainer status="unknown">
<email>thomasmarkpreston@gmail.com</email>
<name>Thomas Preston</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="Python bindings for LIRC."
HOMEPAGE="https://github.com/tompreston/python-lirc https://pypi.org/project/python-lirc/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/cython-0.28.2[${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
}