add homeassistant.components.reddit.sensor

This commit is contained in:
Andreas Billmeier 2019-02-27 18:16:29 +01:00
parent ddcf0028a6
commit 3837238273
3 changed files with 45 additions and 0 deletions

3
dev-python/praw/Manifest Normal file
View File

@ -0,0 +1,3 @@
DIST praw-6.1.1.tar.gz 20290520 BLAKE2B 98e960c993ed75ae9c3ed60681fc4f160ab711a016f658e470e814d6184d620bab70f9755ebdb4561eb4b45397fc87bd291e8378f80f14fb964c1b2093176463 SHA512 3952d54f4b113392e38937b530efc7818c079b0c09a1c24179cb5d60718733b00cfac6ccc3e17a4e6e67ddadc0453ca741607936a1d3c4bb492c939bc1dba4c2
EBUILD praw-6.1.1.ebuild 755 BLAKE2B 0b548d285b8e44c9cca5e493a4ea201e4f36089cf167d2a843bea0677262f61898b9867b7ef6f42ebf17bfbe0c71efa827017bc3e573fe5be2f73b84a8d80d1b SHA512 1c7230baf3bf299d632dfb3a590bc08b7c6e389cd4a89d89adbf875673fe13c81b2f44ad8e2dbeb5554810ffde857dde066c60a16f3feb662d74906bb3ba43d9
MISC metadata.xml 353 BLAKE2B c925fbd13c2309f4a5c3fb6f41f7a709db03213b6cb802cffddbfed612493133f9d45b8b2f007550745e710d09833a42f85779e538eb9d0d6c570f256460b33e SHA512 3aff66f2dc31a00bc4b8322850d8b64fb05531dcae69cdfbf7651cbdf284ab33caad2b98dc2399b78d352d3e3bedd5eab531c5120574fa86f47e538d216cfe7c

View File

@ -0,0 +1,12 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<upstream>
<remote-id type="pypi">praw</remote-id>
<maintainer status="unknown">
<email>bbzbryce@gmail.com</email>
<name>Bryce Boe</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 v3.0
EAPI=6
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="PRAW, an acronym for Python Reddit API Wrapper, is a python package that allows for simple access to reddit's API."
HOMEPAGE="https://praw.readthedocs.org/ https://pypi.org/project/praw/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Simplified BSD License"
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
}