diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2019-03-03 13:42:34 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2019-03-03 13:42:34 +0000 |
commit | 066d27181e9a797ad9f8fc43b49fc9a10ff2f707 (patch) | |
tree | 3cb05783d73b2c33589ba305144a31c718e123cd /media-gfx/ttygif | |
parent | 16449a80e28af2209916cc66d19c9a44ca2b90d9 (diff) |
gentoo resync : 03.03.2019
Diffstat (limited to 'media-gfx/ttygif')
-rw-r--r-- | media-gfx/ttygif/Manifest | 3 | ||||
-rw-r--r-- | media-gfx/ttygif/metadata.xml | 11 | ||||
-rw-r--r-- | media-gfx/ttygif/ttygif-1.80_p20181218.ebuild | 29 |
3 files changed, 43 insertions, 0 deletions
diff --git a/media-gfx/ttygif/Manifest b/media-gfx/ttygif/Manifest new file mode 100644 index 000000000000..92b36e2c67b6 --- /dev/null +++ b/media-gfx/ttygif/Manifest @@ -0,0 +1,3 @@ +DIST ttygif-1.80_p20181218.tar.gz 8428 BLAKE2B 376b6dca4d13120b90e3055e8a37acd017aa7966267d6ad76af6eb2cc4155c8b8ce9d618c682cf1c999095c96ae78e11ec343e0752362851f9a2b660820dc403 SHA512 f992094c0baa625106eefdebbde1d91f2686c0b01c4b3ec22ec9339c88df42c830e4417338c685b375646b212db0213983b41b8d6ee9bd9644dfb56f6db31f52 +EBUILD ttygif-1.80_p20181218.ebuild 589 BLAKE2B 609ad213d3a3efff6875f2d9911d3f535ef047659751385a4d6567649f3feabc49a60b9cabe9cac13e664bb1b7976bb1c79006ca829e917bdcacb807b7e24938 SHA512 248560bd9b524f1fd36a4b11a69675b18cfaecce6e73fa1a94176746fc6a9ba0e6c1a3ca16964b523b5a8fb0b27f4c2e94e373f1594dc08626d12874d57a6ea2 +MISC metadata.xml 339 BLAKE2B b66a558314f330d1c45e41a7630fe5e454270bf14a9cc038cc3f94c8ecd8dd9a51946c9f7faf39a96756c72df41c4847a7894c0373d39cfc3b1a06523a3f7219 SHA512 db977e98c60cbb3aa265263d0f400999bcbb9977f63c5ef6ed8a303e4c63ba652bbcfde2cc41697b0bd6b4063de90fb74eacd327a7053f0823f1ee485ea8b451 diff --git a/media-gfx/ttygif/metadata.xml b/media-gfx/ttygif/metadata.xml new file mode 100644 index 000000000000..0bb66f2138d8 --- /dev/null +++ b/media-gfx/ttygif/metadata.xml @@ -0,0 +1,11 @@ +<?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> + <upstream> + <remote-id type="github">icholy/ttygif</remote-id> + </upstream> +</pkgmetadata> diff --git a/media-gfx/ttygif/ttygif-1.80_p20181218.ebuild b/media-gfx/ttygif/ttygif-1.80_p20181218.ebuild new file mode 100644 index 000000000000..32b4aa70ac51 --- /dev/null +++ b/media-gfx/ttygif/ttygif-1.80_p20181218.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit vcs-snapshot + +# Commit Date: Dec 18th 2018 +COMMIT="362bc381c1c2449509e732d68f07656caf46b420" + +DESCRIPTION="Convert terminal recordings to animated gifs" +HOMEPAGE="https://github.com/icholy/ttygif" +SRC_URI="https://github.com/icholy/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + +KEYWORDS="~amd64 ~x86" +LICENSE="MIT" +SLOT="0" + +DOCS=( LICENSE README.md ) + +RDEPEND=" + x11-apps/xwd + app-misc/ttyrec + media-gfx/imagemagick" + +src_install() { + dobin "${PN}" + einstalldocs +} |