public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/multitail/
Date: Sun,  1 Dec 2024 12:42:29 +0000 (UTC)	[thread overview]
Message-ID: <1733056812.63c7f0b1daa118b47323bee1a13090684b515852.sam@gentoo> (raw)

commit:     63c7f0b1daa118b47323bee1a13090684b515852
Author:     Henning Schild <henning <AT> hennsch <DOT> de>
AuthorDate: Mon Sep  9 20:25:51 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec  1 12:40:12 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63c7f0b1

app-text/multitail: add 7.1.5

Again a new LICENSE, this time MIT.

Signed-off-by: Henning Schild <henning <AT> hennsch.de>
Closes: https://github.com/gentoo/gentoo/pull/38537
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-text/multitail/Manifest               |  1 +
 app-text/multitail/multitail-7.1.5.ebuild | 62 +++++++++++++++++++++++++++++++
 2 files changed, 63 insertions(+)

diff --git a/app-text/multitail/Manifest b/app-text/multitail/Manifest
index c919a3bd1dc8..ae9999ba7816 100644
--- a/app-text/multitail/Manifest
+++ b/app-text/multitail/Manifest
@@ -1,2 +1,3 @@
 DIST multitail-7.0.0.tar.gz 152425 BLAKE2B 1afbee9501926b860bd063768e6d20b7e6fe97b7ca8eaeb279639f3ef4f32d3c694650e2471abab067add04fbd1ce7b94dfc2f709baca460e9a36a34cb0746d2 SHA512 325abc2ec3e55f274b8f080c54e878ee301af1df5761def95b5fee0abe65cc999a2db0184e1d7a7378c048b1766e03f9553262d3bba88c8fad87c4952d1d59ae
 DIST multitail-7.1.2.tar.gz 153409 BLAKE2B 852f7a0f22581b043c65f24bc1a19ffb0e7fa8c91d8152b58a1127a51b1833cded0b22c5430f96417af277927daefeb73d5acef38bdbc54898cc48ec0a4e9436 SHA512 6f006d68a6c0fcfec9f6aada4a1ad0a031b61ea46c60231faa6fd7ea934f6f74ca30f12f8983658c9ae6ae2e08bade9159e3426ed47cd9171d0b190ec9f3e5b5
+DIST multitail-7.1.5.tar.gz 152590 BLAKE2B 40bb8123aa091aecc64e603d40120d97b118185b8c461e46c087e9491cc32ce8779530881eb1fe27aae0cbb17f08ce679ad4a8c045e2506e9f3705596f2f4301 SHA512 7b52eaa9c99e8747f841b23ad3f7154d8cb65c5f4bd2f89fc80d37b6a2fecdacfd7657c5ba37356e67fd03f7992556af648b7d26bb730f7e8966d0230182a8a6

diff --git a/app-text/multitail/multitail-7.1.5.ebuild b/app-text/multitail/multitail-7.1.5.ebuild
new file mode 100644
index 000000000000..be9322af7832
--- /dev/null
+++ b/app-text/multitail/multitail-7.1.5.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake optfeature
+
+DESCRIPTION="Tail with multiple windows"
+HOMEPAGE="https://www.vanheusden.com/multitail/ https://github.com/folkertvanheusden/multitail/"
+SRC_URI="https://github.com/folkertvanheusden/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug examples unicode"
+
+RDEPEND="sys-libs/ncurses:=[unicode(+)?]"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-7.0.0-gentoo.patch
+)
+
+src_prepare() {
+	cmake_src_prepare
+	# cmake looks for licence.txt to install it, which does not exist in the package
+	cp LICENSE license.txt || die
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DUTF8_SUPPORT=$(usex unicode)
+	)
+	CMAKE_BUILD_TYPE=$(usex debug Debug)
+
+	cmake_src_configure
+}
+
+src_install() {
+	cmake_src_install
+
+	insinto /etc
+	doins multitail.conf
+
+	rm -rf "${ED}"/usr/{ect,etc} || die
+	rm -rf "${ED}"/usr/share/doc/multitail-VERSION=${PV} || die
+
+	local DOCS=( README.md thanks.txt )
+	local HTML_DOCS=( manual.html )
+	einstalldocs
+
+	if use examples; then
+		docompress -x /usr/share/doc/${PF}/examples
+		docinto examples
+		dodoc conversion-scripts/{colors-example.{pl,sh},convert-{geoip,simple}.pl}
+	fi
+}
+
+pkg_postinst() {
+	optfeature "send a buffer to the X clipboard" x11-misc/xclip
+}


             reply	other threads:[~2024-12-01 12:42 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-01 12:42 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-12-01 12:42 [gentoo-commits] repo/gentoo:master commit in: app-text/multitail/ Sam James
2024-10-13 11:06 Sam James
2024-09-29 20:50 Jakov Smolić
2024-09-29 19:37 Sam James
2024-09-29 19:37 Sam James
2024-04-06 12:59 Arthur Zamarin
2022-12-23  7:07 Sam James
2022-12-23  3:23 Sam James
2022-12-23  3:23 Sam James
2022-12-23  3:23 Sam James
2022-12-23  3:23 Sam James
2022-12-23  3:22 Sam James
2022-07-28 12:00 Sam James
2022-01-22  7:13 Georgy Yakovlev
2021-01-02  6:47 Sam James
2020-09-26 19:40 Aaron Bauman
2020-09-13  8:44 Sergei Trofimovich
2020-09-11 17:32 Sergei Trofimovich
2020-09-09 21:35 Sergei Trofimovich
2020-09-07  0:50 Thomas Deutschmann
2020-09-06 16:02 David Seifert
2020-09-06 16:02 David Seifert
2017-01-29 15:24 Fabian Groffen
2015-10-31  9:00 Justin Lecher
2015-09-24  7:59 Agostino Sarubbo
2015-09-21 11:27 Agostino Sarubbo
2015-09-06 13:25 Agostino Sarubbo
2015-08-26 10:43 Agostino Sarubbo
2015-08-18  5:49 Jeroen Roovers
2015-08-16 10:52 Justin Lecher

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=1733056812.63c7f0b1daa118b47323bee1a13090684b515852.sam@gentoo \
    --to=sam@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