Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/chafa/
Date: Sun, 18 Jul 2021 11:06:21
Message-Id: 1626606363.529299608d3a92b882fda9bc4286fc5efc1c7e58.soap@gentoo
1 commit: 529299608d3a92b882fda9bc4286fc5efc1c7e58
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Sun Jul 18 11:06:03 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 18 11:06:03 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52929960
7
8 media-gfx/chafa: Version bump to 1.6.1
9
10 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 media-gfx/chafa/Manifest | 1 +
14 media-gfx/chafa/chafa-1.6.1.ebuild | 36 ++++++++++++++++++++++++++++++++++++
15 2 files changed, 37 insertions(+)
16
17 diff --git a/media-gfx/chafa/Manifest b/media-gfx/chafa/Manifest
18 index 7cedc3a6ba4..9b46610ff30 100644
19 --- a/media-gfx/chafa/Manifest
20 +++ b/media-gfx/chafa/Manifest
21 @@ -1 +1,2 @@
22 DIST chafa-1.6.0.tar.xz 417888 BLAKE2B f9837a9062396f92974088ea2e59e050089b462442ac01af17dc7f47f4c3a24542facd4c977cac2ee9db3c4af9bae2349cea9186f9d0362cf7bb74f4e83d345b SHA512 47843b8bf1b0555ae3570f688229e9f848e2e30c80aa277278230196f6fdb583b7f9170d1740171f2f4c5d5d915e00df407722067bcf6f2dc888804b7bd074da
23 +DIST chafa-1.6.1.tar.xz 418720 BLAKE2B 5f6c42311d81bf508f5ec890d72508fd2255e226102b8a7c5c71a9bc1293cd75b08c6b640ca4e6fe9ae34ad47e4e408e25a1aeed7057a5bd823550bea4526f4a SHA512 96cf772638e1a6874d94636a69d6c76d1040d956a16be851ea818292f5b2252867acd0891fede3e030de591b5567d820cf062c5a103a0943a0ea2f2ba34eea77
24
25 diff --git a/media-gfx/chafa/chafa-1.6.1.ebuild b/media-gfx/chafa/chafa-1.6.1.ebuild
26 new file mode 100644
27 index 00000000000..0949da594e0
28 --- /dev/null
29 +++ b/media-gfx/chafa/chafa-1.6.1.ebuild
30 @@ -0,0 +1,36 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DESCRIPTION="versatile and fast Unicode/ASCII/ANSI graphics renderer"
37 +HOMEPAGE="https://hpjansson.org/chafa/ https://github.com/hpjansson/chafa"
38 +SRC_URI="https://hpjansson.org/chafa/releases/${P}.tar.xz"
39 +
40 +LICENSE="LGPL-3+"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~arm64 ~x86"
43 +IUSE="+tools"
44 +
45 +RDEPEND="
46 + dev-libs/glib:2
47 + media-gfx/imagemagick:0=
48 + tools? ( >=media-libs/freetype-2.0.0 )
49 +"
50 +DEPEND="${RDEPEND}"
51 +BDEPEND="virtual/pkgconfig"
52 +
53 +src_configure() {
54 + econf \
55 + --disable-man \
56 + $(use_with tools)
57 +}
58 +
59 +src_install() {
60 + local DOCS=( AUTHORS NEWS README TODO )
61 + default
62 +
63 + use tools && doman docs/chafa.1
64 +
65 + find "${ED}" -name '*.la' -delete || die
66 +}