Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/ansifilter/
Date: Thu, 25 Jan 2018 14:14:57
Message-Id: 1516889685.5296e9fab423b390cb916a3b927f8e0e3f09239a.kensington@gentoo
1 commit: 5296e9fab423b390cb916a3b927f8e0e3f09239a
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 25 14:10:30 2018 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 25 14:14:45 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5296e9fa
7
8 app-text/ansifilter: remove 2.8.1
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 app-text/ansifilter/Manifest | 1 -
13 app-text/ansifilter/ansifilter-2.8.1.ebuild | 57 -----------------------------
14 2 files changed, 58 deletions(-)
15
16 diff --git a/app-text/ansifilter/Manifest b/app-text/ansifilter/Manifest
17 index d35aeda6752..d17010a9fe8 100644
18 --- a/app-text/ansifilter/Manifest
19 +++ b/app-text/ansifilter/Manifest
20 @@ -1,2 +1 @@
21 -DIST ansifilter-2.8.1.tar.bz2 436461 BLAKE2B f4b059ed7c8cb2823c9793cffd49193160295b1be0a25981464979add2759116d62b7a938c599eb3a45ea7f647f2293f9bd67883e4b2010ff395d24d6bea9da5 SHA512 f736b1e9d975a17431a19c2a889ede1feab6b8967d6981fa08d4d1a541cdc1478258dbf6173b7d00f9aa476cf79cfd1c7321c9d017a8aa6ad7ac9133b33a0830
22 DIST ansifilter-2.9.tar.bz2 455885 BLAKE2B 0865e17f45d16657e78444e65bcde07f74ee9d8605e100ef34354fc874210fa6cc4d01162e234bfca9c486fac3c41be0d1e0caa014d9702d4a90798b1fa85636 SHA512 9fd086d9b5fecb7c1d42f96baa728b2b6c155505bfb42f92c1a79ce59571abff541c7d55e14b159ad0e7890434fdbc1b383bc76ab4c22a16d835e270b6095005
23
24 diff --git a/app-text/ansifilter/ansifilter-2.8.1.ebuild b/app-text/ansifilter/ansifilter-2.8.1.ebuild
25 deleted file mode 100644
26 index 47881d0b881..00000000000
27 --- a/app-text/ansifilter/ansifilter-2.8.1.ebuild
28 +++ /dev/null
29 @@ -1,57 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit toolchain-funcs qmake-utils
36 -
37 -DESCRIPTION="Handles text files containing ANSI terminal escape codes"
38 -HOMEPAGE="http://www.andre-simon.de/"
39 -SRC_URI="http://www.andre-simon.de/zip/${P}.tar.bz2"
40 -
41 -LICENSE="GPL-3+"
42 -SLOT="0"
43 -KEYWORDS="amd64 x86"
44 -IUSE="qt5"
45 -
46 -RDEPEND="
47 - qt5? (
48 - dev-qt/qtcore:5
49 - dev-qt/qtgui:5
50 - dev-qt/qtwidgets:5
51 - )"
52 -DEPEND="${RDEPEND}"
53 -
54 -src_prepare() {
55 - default
56 -
57 - # bug 431452
58 - rm src/qt-gui/moc_mydialog.cpp || die
59 -}
60 -
61 -src_configure() {
62 - if use qt5 ; then
63 - pushd src/qt-gui > /dev/null || die
64 - eqmake5
65 - popd > /dev/null || die
66 - fi
67 -}
68 -
69 -src_compile() {
70 - emake -f makefile CC="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS} -DNDEBUG -std=c++11"
71 -
72 - if use qt5 ; then
73 - pushd src/qt-gui > /dev/null || die
74 - emake
75 - popd > /dev/null || die
76 - fi
77 -}
78 -
79 -src_install() {
80 - dobin src/${PN}
81 - use qt5 && dobin src/qt-gui/${PN}-gui
82 -
83 - gunzip man/${PN}.1.gz
84 - doman man/${PN}.1
85 - einstalldocs
86 -}