add starline-0.1.3

This commit is contained in:
Andreas Billmeier 2019-11-26 22:52:49 +01:00
parent f749e3c78f
commit 3150ebf17d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST starline-0.1.3.tar.gz 5089 BLAKE2B 8c80e4b62f13ad6008e554c6cbaec325abcd1493a4833e0151cf9cfc988036621adfe68cf7d7c196c5cfe4281a283340458f95e9281e26187c82d163b1bd7bb3 SHA512 d67c12a80bb3fed4ae4fc4fc26ed037fb4b46de100dd0fd556f7be80fb73df85318628f276e95d1ff66cb7b311424d0d422910d65f54043a36f4da7c51e70c9f
EBUILD starline-0.1.3.ebuild 727 BLAKE2B a04a6511f33e5243d9308ce377f541052af54acdd03e9979270bd242fe32e9446adfbb0ebf9a2a90063f394804c6b9a14013fab2f9c7e4ff62b624cf79cf5018 SHA512 bc76fecea54a5bd8a8d188fbc4484f5375ebf36f80096922c3d7ff8f19447ff43cbc14bd86563be9b33e119f176073cff8587923b9fe9f131d20d412a3e1a06f
MISC metadata.xml 465 BLAKE2B bba386171017855bb7c2b8362225477f9f8611d8323df5ccdab190a609a81d8e4ac12e12f6ba1378a0e367cef5cb2f5fe94515275cc90d0e9e497f64766dc5c1 SHA512 4490ce844a1540e72b0a73a2363f25fb1cc20c709cf160c5d6f8671a44a932d1985578ff9743f73d621d708a0197afea0459fd6d281e9b815db5ba48732ddf17

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">starline</remote-id>
<maintainer status="unknown">
<email>anonym.tsk@gmail.com</email>
<name>Nikolay Vasilchuk</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="Unofficial python library for StarLine API"
HOMEPAGE="https://github.com/Anonym-tsk/starline/ https://pypi.org/project/starline/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/aiohttp-3.6.1[${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
}