1
0
Fork 0

Merge branch 'master' of github.com:TheChymera/overlay

This commit is contained in:
Horea Christian 2020-12-23 02:38:18 -05:00
commit 14e739ed95
4 changed files with 51 additions and 2 deletions

View File

@ -10,13 +10,13 @@ inherit git-r3
DESCRIPTION="Get notified via a telegram bot when your bash command finished."
HOMEPAGE="https://github.com/Jimmy2027/NORBY"
#SRC_URI="https://github.com/Jimmy2027/NORBY/archive/${PV}.tar.gz -> ${P}.tar.gz"
EGIT_REPO_URI="https://github.com/Jimmy2027/NORBY.git"
KEYWORDS="~amd64 ~x86"
LICENSE="GNU General Public License v3.0"
SLOT="0"
DEPEND="
dev-python/requests
dev-python/requests[${PYTHON_USEDEP}]
dev-python/subprocess-tee[${PYTHON_USEDEP}]
"
RDEPEND="${DEPEND}"

View File

@ -0,0 +1 @@
DIST subprocess-tee-0.1.6.tar.gz 14003 SHA256 45f13c066d04df41d9fcf48148e64f02f233c332f35ee312576cd0a9818eb2fe SHA512 e8b29e95a6a8ca45780336ef5466e6d5ab28895bdfae840ab9ae5bcc4c0c545accabbf1e922ddb80818709757f054d4d702ed77c5b8a205e8a6972cfd1ebe14b WHIRLPOOL 39f87875c1270b0660ccf631848b8392ab179ec26705584cca9805d9909c3378a1c40e1b3cc60119fa87068b252e428ad6b771283be56b554706f966637f39fe

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>klugh@ethz.ch</email>
<name>Hendrik Klug</name>
</maintainer>
<longdescription>
This package provides an drop-in alternative to subprocess.run that captures the output while still printing
it in real time, just the way tee does.
Printing output in real-time while still capturing is important for any tool that executes long running child
processes, as you may not want to deprive user from getting instant feedback related to what is happening.
</longdescription>
<upstream>
<remote-id type="github">pycontribs/subprocess-tee</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7,8,9} )
inherit distutils-r1
DESCRIPTION="An drop-in alternative to subprocess.run that captures the output
while still printing it in real time, just the way tee does."
HOMEPAGE="https://github.com/pycontribs/subprocess-tee"
#SRC_URI="https://github.com/pycontribs/${PN}/archive/${PV}.tar.gz"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT License"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND="
test? (
dev-python/mock[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/pytest-xdist[${PYTHON_USEDEP}]
)
"
RDEPEND="${DEPEND}"
BDEPEND=""