Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/tmux2html/
Date: Mon, 17 Sep 2018 16:02:55
Message-Id: 1537200161.b3221ab2ce4c636141425633d268994fa384561c.monsieurp@gentoo
1 commit: b3221ab2ce4c636141425633d268994fa384561c
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 17 15:58:25 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 17 16:02:41 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3221ab2
7
8 app-misc/tmux2html: new package.
9
10 tmux2html is a Python script to render full tmux windows or individual
11 panes as a single HTML page.
12
13 Package-Manager: Portage-2.3.40, Repoman-2.3.9
14
15 app-misc/tmux2html/Manifest | 1 +
16 app-misc/tmux2html/metadata.xml | 15 +++++++++++++++
17 app-misc/tmux2html/tmux2html-0.1.11.ebuild | 20 ++++++++++++++++++++
18 3 files changed, 36 insertions(+)
19
20 diff --git a/app-misc/tmux2html/Manifest b/app-misc/tmux2html/Manifest
21 new file mode 100644
22 index 00000000000..bbedc665f06
23 --- /dev/null
24 +++ b/app-misc/tmux2html/Manifest
25 @@ -0,0 +1 @@
26 +DIST tmux2html-0.1.11.tar.gz 20002 BLAKE2B 690e170bf903682a9bdbbfa49ec7a2995d19bfa9372533b5cecff5b7dfa4c389832a8e2315c3438d435c3b4f75bec8b7fc43161691912ef29d910779d46af24e SHA512 b478a697413acd90a92b3a349fc3c477ee1014f47816190d2066058711e2025a9f99e3f973dfd3165782a566d12aae4e3c491f58a924769d1d28c3f48c9e9601
27
28 diff --git a/app-misc/tmux2html/metadata.xml b/app-misc/tmux2html/metadata.xml
29 new file mode 100644
30 index 00000000000..70d20d789e9
31 --- /dev/null
32 +++ b/app-misc/tmux2html/metadata.xml
33 @@ -0,0 +1,15 @@
34 +<?xml version="1.0" encoding="UTF-8"?>
35 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
36 +<pkgmetadata>
37 + <maintainer type="person">
38 + <email>monsieurp@g.o</email>
39 + <name>Patrice Clement</name>
40 + </maintainer>
41 + <maintainer type="project">
42 + <email>shell-tools@g.o</email>
43 + <name>Gentoo Shell Tools Project</name>
44 + </maintainer>
45 + <upstream>
46 + <remote-id type="github">greymd/tmux-xpanes</remote-id>
47 + </upstream>
48 +</pkgmetadata>
49
50 diff --git a/app-misc/tmux2html/tmux2html-0.1.11.ebuild b/app-misc/tmux2html/tmux2html-0.1.11.ebuild
51 new file mode 100644
52 index 00000000000..81bf3862157
53 --- /dev/null
54 +++ b/app-misc/tmux2html/tmux2html-0.1.11.ebuild
55 @@ -0,0 +1,20 @@
56 +# Copyright 1999-2018 Gentoo Foundation
57 +# Distributed under the terms of the GNU General Public License v2
58 +
59 +EAPI=7
60 +
61 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
62 +
63 +inherit distutils-r1
64 +
65 +DESCRIPTION="Render full tmux windows or individual panes as HTML"
66 +HOMEPAGE="https://github.com/tweekmonster/tmux2html"
67 +SRC_URI="https://github.com/tweekmonster/tmux2html/archive/${PV}.tar.gz -> ${P}.tar.gz"
68 +
69 +KEYWORDS="~amd64 ~x86"
70 +LICENSE="MIT"
71 +SLOT="0"
72 +
73 +RDEPEND="
74 + app-misc/tmux
75 + dev-python/setuptools[${PYTHON_USEDEP}]"