Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/chafa/
Date: Fri, 02 Oct 2020 13:57:23
Message-Id: 1601647030.8768d8be0554eb5330d51b39f31c8ab212322c57.juippis@gentoo
1 commit: 8768d8be0554eb5330d51b39f31c8ab212322c57
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Fri Sep 18 07:38:53 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 2 13:57:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8768d8be
7
8 media-gfx/chafa: drop old
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
12 Closes: https://github.com/gentoo/gentoo/pull/17582
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 media-gfx/chafa/Manifest | 1 -
16 media-gfx/chafa/chafa-1.4.0.ebuild | 41 --------------------------------------
17 2 files changed, 42 deletions(-)
18
19 diff --git a/media-gfx/chafa/Manifest b/media-gfx/chafa/Manifest
20 index 1e527519b08..c8d6ff58a27 100644
21 --- a/media-gfx/chafa/Manifest
22 +++ b/media-gfx/chafa/Manifest
23 @@ -1,2 +1 @@
24 -DIST chafa-1.4.0.tar.xz 388932 BLAKE2B 0ccaae1495bd410b05d291ebcf2b6266374f013536ec1b953d6127e63c20b11ff78e96772309caeb5c4bbfc40729f60291b0ab3d2395824801aec7763c1ac2b3 SHA512 e464750296db0eca5d718ff70dbb51529abcd4ff3d5bdd15f20f10ff0207f282e8b59799476fc05718efb48b81b331ae1518d450efd6b62b98a41049e1c6e9d5
25 DIST chafa-1.4.1.tar.xz 389428 BLAKE2B 8ed6c6d57953d784763f10c274bd8b7acf7857b095bae58c476d2e17418a7112f1ec000d667eebfc2eda712c9588e686ad4021da017f4d187a5461c0435c5476 SHA512 f0bd1911fd544f93afadbb2105f151dc77e31a2f3af4c7f8441a06f547a7ebe0674664721b18c3a35a7c4e745dda666713adc1dfbe5e97dfdc54856a13bd5063
26
27 diff --git a/media-gfx/chafa/chafa-1.4.0.ebuild b/media-gfx/chafa/chafa-1.4.0.ebuild
28 deleted file mode 100644
29 index 1a2aba13891..00000000000
30 --- a/media-gfx/chafa/chafa-1.4.0.ebuild
31 +++ /dev/null
32 @@ -1,41 +0,0 @@
33 -# Copyright 1999-2020 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -DESCRIPTION="versatile and fast Unicode/ASCII/ANSI graphics renderer"
39 -HOMEPAGE="https://hpjansson.org/chafa/ https://github.com/hpjansson/chafa"
40 -SRC_URI="https://hpjansson.org/chafa/releases/${P}.tar.xz"
41 -
42 -LICENSE="LGPL-3+"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="static-libs +tools"
46 -
47 -RDEPEND="
48 - dev-libs/glib:2
49 - media-gfx/imagemagick:0=
50 - tools? ( >=media-libs/freetype-2.0.0 )
51 -"
52 -DEPEND="${RDEPEND}"
53 -BDEPEND="virtual/pkgconfig"
54 -
55 -src_configure() {
56 - local econfargs=(
57 - $(use_enable static-libs static)
58 - # install manpage manually
59 - --disable-man
60 - $(use_with tools)
61 - )
62 -
63 - econf "${econfargs[@]}"
64 -}
65 -
66 -src_install() {
67 - local DOCS=( AUTHORS NEWS README TODO )
68 - default
69 -
70 - use tools && doman docs/chafa.1
71 -
72 - find "${ED}"/usr/lib* -name '*.la' -delete || die
73 -}