forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Patrick McLean <[email protected]>
- Loading branch information
1 parent
6b1905a
commit e2c50cb
Showing
3 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST tmuxp-1.5.1.tar.gz 67536 BLAKE2B f96aa7c779b2c71f7467683acb1a218da3bbc2808040eb6030ee5b9873fc842c57f811ee4aee9796cab329aa46e9c639700b465c07b91be221780bb9c3a9e271 SHA512 f2b9a7429911083ff090ccd3bd4f0d56db7dc2dac9420a2e0db3eddc33df2f55e2d288a065c407b1d9dccf2a71f820075639efde7fd6109408587f661eef0941 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Patrick McLean</name> | ||
</maintainer> | ||
</pkgmetadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Copyright 2019 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
PYTHON_COMPAT=( python3_6 python3_7 ) | ||
inherit distutils-r1 | ||
|
||
DESCRIPTION="tmux session manager. built on libtmux" | ||
HOMEPAGE="https://tmuxp.git-pull.com" | ||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="test" | ||
|
||
DEPEND="test? ( | ||
>=dev-python/pytest-4.1.1[${PYTHON_USEDEP}] | ||
dev-python/pytest-rerunfailures[${PYTHON_USEDEP}] | ||
)" | ||
BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" | ||
RDEPEND="${BDEPEND} | ||
dev-python/kaptan[${PYTHON_USEDEP}] | ||
dev-python/libtmux[${PYTHON_USEDEP}] | ||
>=dev-python/click-7.0[${PYTHON_USEDEP}] | ||
>=dev-python/colorama-0.3.9[${PYTHON_USEDEP}]" | ||
|
||
# tests currently failing, reported upstream | ||
# https://github.com/tmux-python/tmuxp/issues/486 | ||
RESTRICT="test" | ||
|
||
python_test() { | ||
SHELL="/bin/bash" py.test -v || die | ||
} |