Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/ttygif/
Date: Wed, 27 Feb 2019 10:39:48
Message-Id: 1551263975.31b3803008585f988f6202c3aea0a6bcbbea72cd.monsieurp@gentoo
1 commit: 31b3803008585f988f6202c3aea0a6bcbbea72cd
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 27 10:33:03 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 27 10:39:35 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31b38030
7
8 media-gfx/ttygif: new ebuild.
9
10 ttygif is a tool to convert terminal recordings to animated gifs.
11
12 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
13 Package-Manager: Portage-2.3.51, Repoman-2.3.11
14
15 media-gfx/ttygif/Manifest | 1 +
16 media-gfx/ttygif/metadata.xml | 11 ++++++++++
17 media-gfx/ttygif/ttygif-1.80_p20181218.ebuild | 29 +++++++++++++++++++++++++++
18 3 files changed, 41 insertions(+)
19
20 diff --git a/media-gfx/ttygif/Manifest b/media-gfx/ttygif/Manifest
21 new file mode 100644
22 index 00000000000..1952d7da7f5
23 --- /dev/null
24 +++ b/media-gfx/ttygif/Manifest
25 @@ -0,0 +1 @@
26 +DIST ttygif-1.80_p20181218.tar.gz 8428 BLAKE2B 376b6dca4d13120b90e3055e8a37acd017aa7966267d6ad76af6eb2cc4155c8b8ce9d618c682cf1c999095c96ae78e11ec343e0752362851f9a2b660820dc403 SHA512 f992094c0baa625106eefdebbde1d91f2686c0b01c4b3ec22ec9339c88df42c830e4417338c685b375646b212db0213983b41b8d6ee9bd9644dfb56f6db31f52
27
28 diff --git a/media-gfx/ttygif/metadata.xml b/media-gfx/ttygif/metadata.xml
29 new file mode 100644
30 index 00000000000..0bb66f2138d
31 --- /dev/null
32 +++ b/media-gfx/ttygif/metadata.xml
33 @@ -0,0 +1,11 @@
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 + <upstream>
42 + <remote-id type="github">icholy/ttygif</remote-id>
43 + </upstream>
44 +</pkgmetadata>
45
46 diff --git a/media-gfx/ttygif/ttygif-1.80_p20181218.ebuild b/media-gfx/ttygif/ttygif-1.80_p20181218.ebuild
47 new file mode 100644
48 index 00000000000..32b4aa70ac5
49 --- /dev/null
50 +++ b/media-gfx/ttygif/ttygif-1.80_p20181218.ebuild
51 @@ -0,0 +1,29 @@
52 +# Copyright 1999-2019 Gentoo Authors
53 +# Distributed under the terms of the GNU General Public License v2
54 +
55 +EAPI=6
56 +
57 +inherit vcs-snapshot
58 +
59 +# Commit Date: Dec 18th 2018
60 +COMMIT="362bc381c1c2449509e732d68f07656caf46b420"
61 +
62 +DESCRIPTION="Convert terminal recordings to animated gifs"
63 +HOMEPAGE="https://github.com/icholy/ttygif"
64 +SRC_URI="https://github.com/icholy/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
65 +
66 +KEYWORDS="~amd64 ~x86"
67 +LICENSE="MIT"
68 +SLOT="0"
69 +
70 +DOCS=( LICENSE README.md )
71 +
72 +RDEPEND="
73 + x11-apps/xwd
74 + app-misc/ttyrec
75 + media-gfx/imagemagick"
76 +
77 +src_install() {
78 + dobin "${PN}"
79 + einstalldocs
80 +}