From b3221ab2ce4c636141425633d268994fa384561c Mon Sep 17 00:00:00 2001 From: Patrice Clement Date: Mon, 17 Sep 2018 17:58:25 +0200 Subject: [PATCH] app-misc/tmux2html: new package. tmux2html is a Python script to render full tmux windows or individual panes as a single HTML page. Package-Manager: Portage-2.3.40, Repoman-2.3.9 --- app-misc/tmux2html/Manifest | 1 + app-misc/tmux2html/metadata.xml | 15 +++++++++++++++ app-misc/tmux2html/tmux2html-0.1.11.ebuild | 20 ++++++++++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 app-misc/tmux2html/Manifest create mode 100644 app-misc/tmux2html/metadata.xml create mode 100644 app-misc/tmux2html/tmux2html-0.1.11.ebuild diff --git a/app-misc/tmux2html/Manifest b/app-misc/tmux2html/Manifest new file mode 100644 index 0000000000000..bbedc665f0631 --- /dev/null +++ b/app-misc/tmux2html/Manifest @@ -0,0 +1 @@ +DIST tmux2html-0.1.11.tar.gz 20002 BLAKE2B 690e170bf903682a9bdbbfa49ec7a2995d19bfa9372533b5cecff5b7dfa4c389832a8e2315c3438d435c3b4f75bec8b7fc43161691912ef29d910779d46af24e SHA512 b478a697413acd90a92b3a349fc3c477ee1014f47816190d2066058711e2025a9f99e3f973dfd3165782a566d12aae4e3c491f58a924769d1d28c3f48c9e9601 diff --git a/app-misc/tmux2html/metadata.xml b/app-misc/tmux2html/metadata.xml new file mode 100644 index 0000000000000..70d20d789e996 --- /dev/null +++ b/app-misc/tmux2html/metadata.xml @@ -0,0 +1,15 @@ + + + + + monsieurp@gentoo.org + Patrice Clement + + + shell-tools@gentoo.org + Gentoo Shell Tools Project + + + greymd/tmux-xpanes + + diff --git a/app-misc/tmux2html/tmux2html-0.1.11.ebuild b/app-misc/tmux2html/tmux2html-0.1.11.ebuild new file mode 100644 index 0000000000000..81bf38621577e --- /dev/null +++ b/app-misc/tmux2html/tmux2html-0.1.11.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +inherit distutils-r1 + +DESCRIPTION="Render full tmux windows or individual panes as HTML" +HOMEPAGE="https://github.com/tweekmonster/tmux2html" +SRC_URI="https://github.com/tweekmonster/tmux2html/archive/${PV}.tar.gz -> ${P}.tar.gz" + +KEYWORDS="~amd64 ~x86" +LICENSE="MIT" +SLOT="0" + +RDEPEND=" + app-misc/tmux + dev-python/setuptools[${PYTHON_USEDEP}]"