add tailer-0.4.1

This commit is contained in:
2020-11-21 11:23:58 +01:00
committed by Andreas Billmeier
parent 7146a3c754
commit 89504f9dfa
4 changed files with 49 additions and 0 deletions

View File

@@ -11,6 +11,7 @@
* unpin pylint in aioesphomeapi-2.6.3-r1
* re-add (from main repo) pylint-2.5.3, still needed for <=homeassistant-0.118.1
* update homeassistant-0.118.2
* add tailer-0.4.1
2020-11-19 homeassistant-0.118.1
* bump home-assistant-frontend-20201111.2

View File

@@ -0,0 +1,3 @@
DIST tailer-0.4.1.tar.gz 7504 BLAKE2B cb15df98bc947976409dcd323f86ee91916045061db633617dde216c3b42ab095de5cd7b89b95d3f875f928d5772ae098a1cb7170122fcdcae386964caa71b25 SHA512 c1f0f4cf9356c58366e3d86087bc922378a5d5d9833385e8b0f9acd16211a7ff486c4ea3be13208b85a9766b3fa163071216de54c7170395c18ba6da61650da3
EBUILD tailer-0.4.1.ebuild 687 BLAKE2B feb7eb7164de1fef816d6977855db1ba92b5a54f4f5b5fc5931d939a6411192503945b0c1ea453eba3886d6eeeefa482d1b692b2bf1a7b03273dc7d28ce492d8 SHA512 0d412e53f131a335abad6744b732c39b48a762979af3804965edeb017fd6d9723048dc517019ac709f735ad9016f77286012e6472fdd99ab2b2299b77f3b325e
MISC metadata.xml 451 BLAKE2B 644a94b3bf3a4ab1ace60ced431022960633164cc39186733e9f299c4ca2be318ede8d1dfb351b5d16b998d9679e2ccb5fe84a712e679b5cd0f0b044fea3ec28 SHA512 e23f8d69df953d0a6df337fad15c85fa8955265b8aef7fc90a7895a9ef817948880e5f7346ddb21192cb6e5850630fb6ea734d9f130bc3beb454d7a45d505517

View File

@@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">tailer</remote-id>
<maintainer status="unknown">
<email>six8@devdetails.com</email>
<name>Mike Thornton</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="Python tail is a simple implementation of GNU tail and head."
HOMEPAGE="http://github.com/six8/pytailer https://pypi.org/project/tailer/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
BDEPEND="
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
}