public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michael Palimaka" <kensington@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/ansifilter/
Date: Wed,  9 Aug 2017 11:15:32 +0000 (UTC)	[thread overview]
Message-ID: <1502277323.e4af56ac380e4572b1ec3674dc8a2482f8d63900.kensington@gentoo> (raw)

commit:     e4af56ac380e4572b1ec3674dc8a2482f8d63900
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Aug  9 11:15:01 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Aug  9 11:15:23 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4af56ac

app-text/ansifilter: version bump 2.8.1

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-text/ansifilter/Manifest                |  1 +
 app-text/ansifilter/ansifilter-2.8.1.ebuild | 57 +++++++++++++++++++++++++++++
 2 files changed, 58 insertions(+)

diff --git a/app-text/ansifilter/Manifest b/app-text/ansifilter/Manifest
index c4c11e14cb9..191454b1e30 100644
--- a/app-text/ansifilter/Manifest
+++ b/app-text/ansifilter/Manifest
@@ -1,3 +1,4 @@
 DIST ansifilter-2.4.tar.bz2 114180 SHA256 c57cb878afa7191c7b7db3c086a344b4234df814aed632596619a4bda5941d48 SHA512 2eaecd7dc6027c6976775d2a817b8fde0221fb1cce967bd4f6e272230b64e0bb77ed0cbddbc41533aa6087897b94903efa9633dffdd76df57ba029f6776ae6d2 WHIRLPOOL df5f96802c4b988ee3c3326dc0a6ecc2ab594fe766c6e5118d1695a05adf3969d51b0a89b1bfbc0b94cb84325131dc39622334c549a47e0ffa76c0e3fca7a997
 DIST ansifilter-2.5.tar.bz2 435332 SHA256 30d05ccfa9be98b0328ee29fe39473e55047f1d32a9a2460d3d4d1ff2475f0e2 SHA512 2fca95a5a47e72f9348beef8b09a7fd995f0b99e0d6605cf7694f8fd1ddba40c64e5c30b9134f55319c902d45011605ba30184c0205d41573ac77c3cd98debe7 WHIRLPOOL 5c3c3cd8f1cef99ad0d4ea5ce7635301776cb5ce14442d74a1949894c24becb4d3727344f7b1cf2e137bc8abfc8469c23d13e0055529c04f9aafeb991e7cf7f6
 DIST ansifilter-2.6.tar.bz2 436252 SHA256 4e3abd8c18197db85575c38418dbc8ee424d0caa0681589e5296fc8e72251175 SHA512 2b1aabb37eaee6bdd853dce7a1509e1c7df1a03c58e9f4f34dca6237e71115faff0ec6a6b788fa1035264b4bb9cb5e927f2d2c6d8eb870b23806f40a9d9129f3 WHIRLPOOL d12fdb240d613ba16b2c0c7eb3535dae33be6519a2135395473dd94126c963b634a47dff7bd214fb9168ff031d4a8cdc2d92b59c003e0f6bce363b840956b4b4
+DIST ansifilter-2.8.1.tar.bz2 436461 SHA256 65556f76c234e709e9c3d326042e88a769ebf456c2fbbc5e32ffb247214fc6c6 SHA512 f736b1e9d975a17431a19c2a889ede1feab6b8967d6981fa08d4d1a541cdc1478258dbf6173b7d00f9aa476cf79cfd1c7321c9d017a8aa6ad7ac9133b33a0830 WHIRLPOOL 233edb50e9ed1e1116a1a5875bce4ddd197b9d0b5cadc490d07b3f0b62c9e0de28eba3ac8e06846f58d4cbb2359d621d268eeec19c2e0c894390ef7bd71ca1b8

diff --git a/app-text/ansifilter/ansifilter-2.8.1.ebuild b/app-text/ansifilter/ansifilter-2.8.1.ebuild
new file mode 100644
index 00000000000..a4c7a3b32c7
--- /dev/null
+++ b/app-text/ansifilter/ansifilter-2.8.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs qmake-utils
+
+DESCRIPTION="Handles text files containing ANSI terminal escape codes"
+HOMEPAGE="http://www.andre-simon.de/"
+SRC_URI="http://www.andre-simon.de/zip/${P}.tar.bz2"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="qt5"
+
+RDEPEND="
+	qt5? (
+		dev-qt/qtcore:5
+		dev-qt/qtgui:5
+		dev-qt/qtwidgets:5
+	)"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+	default
+
+	# bug 431452
+	rm src/qt-gui/moc_mydialog.cpp || die
+}
+
+src_configure() {
+	if use qt5 ; then
+		pushd src/qt-gui > /dev/null || die
+		eqmake5
+		popd > /dev/null || die
+	fi
+}
+
+src_compile() {
+	emake -f makefile CC="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS} -DNDEBUG -std=c++11"
+
+	if use qt5 ; then
+		pushd src/qt-gui > /dev/null || die
+		emake
+		popd > /dev/null || die
+	fi
+}
+
+src_install() {
+	dobin src/${PN}
+	use qt5 && dobin src/qt-gui/${PN}-gui
+
+	gunzip man/${PN}.1.gz
+	doman man/${PN}.1
+	einstalldocs
+}


             reply	other threads:[~2017-08-09 11:15 UTC|newest]

Thread overview: 100+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-09 11:15 Michael Palimaka [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-17  2:51 [gentoo-commits] repo/gentoo:master commit in: app-text/ansifilter/ Michał Górny
2024-10-16 21:28 Sam James
2024-09-28 14:39 Sam James
2024-09-28 14:17 Arthur Zamarin
2024-09-28 13:09 Michał Górny
2024-09-28 12:32 Arthur Zamarin
2024-09-28 11:41 Sam James
2024-09-28 10:44 Arthur Zamarin
2024-09-09 20:44 Arthur Zamarin
2024-09-06 11:46 Michał Górny
2024-02-14 16:17 Michał Górny
2024-02-14 16:17 Michał Górny
2024-02-14 16:17 Michał Górny
2024-02-02 20:17 Sam James
2023-11-30 22:06 James Le Cuirot
2023-10-09 20:02 Sam James
2023-10-09 16:21 Arthur Zamarin
2023-10-09 16:21 Arthur Zamarin
2023-10-09 16:21 Arthur Zamarin
2023-10-09  7:04 Sam James
2023-10-09  5:54 Sam James
2023-10-09  4:46 Sam James
2023-10-09  4:46 Sam James
2023-09-01  3:56 Sam James
2023-08-30  7:48 Sam James
2023-06-21  4:41 Arthur Zamarin
2023-06-20 14:20 Sam James
2023-06-19 21:28 Sam James
2023-06-19 13:31 Pacho Ramos
2023-06-18  3:12 Sam James
2022-12-02 10:20 WANG Xuerui
2022-07-28 13:59 Sam James
2022-05-13 20:28 Jakov Smolić
2022-01-24 19:19 Sam James
2021-11-14  3:45 Sam James
2021-08-02  9:34 Michael Palimaka
2021-08-02  3:18 Sam James
2021-07-26 11:17 Sam James
2021-07-17 23:18 Sam James
2021-07-17 23:14 Sam James
2021-07-17  7:44 Agostino Sarubbo
2021-07-17  7:42 Agostino Sarubbo
2021-07-16 21:44 Sam James
2021-02-25  4:19 Sam James
2021-02-08  9:29 Michael Palimaka
2020-12-25 23:50 Sam James
2020-11-28  7:43 Sam James
2020-11-26  8:14 Sam James
2020-11-26  5:41 Sam James
2020-11-25  7:44 Agostino Sarubbo
2020-11-25  7:24 Michael Palimaka
2020-11-24 12:57 Agostino Sarubbo
2020-11-24 12:54 Agostino Sarubbo
2020-10-10  7:56 Michael Palimaka
2020-07-16  3:39 Sam James
2020-06-26 20:21 Thomas Deutschmann
2020-03-28  3:04 Michael Palimaka
2020-03-20  9:04 Agostino Sarubbo
2020-03-20  8:59 Agostino Sarubbo
2020-02-10 10:59 Michael Palimaka
2020-02-10 10:56 Michael Palimaka
2020-01-21 10:42 Agostino Sarubbo
2020-01-20 12:58 Agostino Sarubbo
2019-11-25 10:19 Michael Palimaka
2019-08-06 11:27 Michael Palimaka
2019-08-06 10:40 Agostino Sarubbo
2019-08-06  9:39 Agostino Sarubbo
2019-04-28 13:18 Michael Palimaka
2019-02-22  6:58 Michael Palimaka
2019-02-22  6:58 Michael Palimaka
2018-12-20 10:41 Michael Palimaka
2018-11-08 13:08 Michael Palimaka
2018-11-05  7:37 Sergei Trofimovich
2018-05-26 10:16 Michael Palimaka
2018-05-26 10:16 Michael Palimaka
2018-03-10  0:21 Michael Palimaka
2018-01-25 14:14 Michael Palimaka
2018-01-25 14:14 Michael Palimaka
2017-12-02 12:54 Michael Palimaka
2017-09-15 12:11 Michael Palimaka
2017-09-15 12:11 Michael Palimaka
2017-07-27 14:36 Michael Palimaka
2017-06-24  3:22 Michael Palimaka
2017-06-13 11:39 Michael Palimaka
2017-02-13  8:03 Michael Palimaka
2017-02-12 15:44 Agostino Sarubbo
2017-02-12 14:48 Agostino Sarubbo
2017-01-04  6:57 Michael Palimaka
2016-10-27 18:49 Michael Palimaka
2016-10-27 18:49 Michael Palimaka
2016-09-28 11:37 Michael Palimaka
2016-09-17 18:39 Michael Palimaka
2016-09-14 15:38 Michael Palimaka
2016-09-14 15:38 Michael Palimaka
2016-08-31 19:58 Michael Palimaka
2016-08-31 19:58 Michael Palimaka
2016-04-12  5:57 Tim Harder
2016-01-16  5:43 Tim Harder
2016-01-16  5:43 Tim Harder

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1502277323.e4af56ac380e4572b1ec3674dc8a2482f8d63900.kensington@gentoo \
    --to=kensington@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox