summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2018-09-17 17:58:25 +0200
committerPatrice Clement <monsieurp@gentoo.org>2018-09-17 18:02:41 +0200
commitb3221ab2ce4c636141425633d268994fa384561c (patch)
tree04bc644921e8a41722ceffb8efbbc821197cd14a /app-misc/tmux2html
parentsci-physics/root: apply fixes from live ebuild to 6.14 (diff)
downloadgentoo-b3221ab2ce4c636141425633d268994fa384561c.tar.gz
gentoo-b3221ab2ce4c636141425633d268994fa384561c.tar.bz2
gentoo-b3221ab2ce4c636141425633d268994fa384561c.zip
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
Diffstat (limited to 'app-misc/tmux2html')
-rw-r--r--app-misc/tmux2html/Manifest1
-rw-r--r--app-misc/tmux2html/metadata.xml15
-rw-r--r--app-misc/tmux2html/tmux2html-0.1.11.ebuild20
3 files changed, 36 insertions, 0 deletions
diff --git a/app-misc/tmux2html/Manifest b/app-misc/tmux2html/Manifest
new file mode 100644
index 000000000000..bbedc665f063
--- /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 000000000000..70d20d789e99
--- /dev/null
+++ b/app-misc/tmux2html/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>monsieurp@gentoo.org</email>
+ <name>Patrice Clement</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>shell-tools@gentoo.org</email>
+ <name>Gentoo Shell Tools Project</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">greymd/tmux-xpanes</remote-id>
+ </upstream>
+</pkgmetadata>
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 000000000000..81bf38621577
--- /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}]"