From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/lesspipe/
Date: Fri, 6 Oct 2023 00:32:13 +0000 (UTC) [thread overview]
Message-ID: <1696550282.5bb7c2d8219a00a4fbd0c10360331e615f9a3bdf.sam@gentoo> (raw)
commit: 5bb7c2d8219a00a4fbd0c10360331e615f9a3bdf
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 5 23:58:02 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Oct 5 23:58:02 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bb7c2d8
app-text/lesspipe: add 2.10
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-text/lesspipe/Manifest | 1 +
app-text/lesspipe/lesspipe-2.10.ebuild | 52 ++++++++++++++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/app-text/lesspipe/Manifest b/app-text/lesspipe/Manifest
index f8a4645c5cad..f423784b40a2 100644
--- a/app-text/lesspipe/Manifest
+++ b/app-text/lesspipe/Manifest
@@ -1,3 +1,4 @@
DIST lesspipe-2.06.tar.gz 168100 BLAKE2B a7447efa85cd422343f9dbb06001e85fa7b33c92db752f8248e4b4a0d9ecce4ef0241240d6993c5a71157c44da2f4ffc3efd41ac5e0a31e89ed5b80ac99f71fe SHA512 b2411c5e6b287fb67e1ea9b6d10377fe19b58e8c0f54587f825d1ee4c1a85f9a8ed3244a7cf339bcba960094e95821d9a56929951d862eb697f1d12fe55ef20d
DIST lesspipe-2.07.tar.gz 168973 BLAKE2B b9be5968d808dc57caa00551cdf663be75dff1c9662b585ddd2e1891f6f66fce0b71a468d9b9172af2833bd6ee255ad9b5fb917dac527eeb8b57427c568cd620 SHA512 6fa5debfa5b72fa5826294eca158a935a0b49dc431bd27eb7dc598315592d575ad302bb94fcdb86409dce1cb7055242ff10eb09cbf3708e472b8dbe8286d5511
DIST lesspipe-2.08.tar.gz 169527 BLAKE2B c1b1e4b9d3b24f7a9547f25a276bdee7aebf35777401441bb9bbefef3f3ff319ca8ef330c76e969811cbb2047a539aa4d2dbea5059c5ed06a69bea43d54f94a9 SHA512 309f69240308eab082ed9bff1bda1785eb8394022e576ff49656816cf793e0f3bb26bb0f41eff4c1437ed7719cbd810a83d75d8a1a08a11a8cf378c1741397bd
+DIST lesspipe-2.10.tar.gz 170918 BLAKE2B 156fe53975252ac6c59a637ffe0ee9862be0699f325a0b328e5c0f2cb5e6f7d8324481f3d3211cbb15a585a5dabde45adf87ac4e0af91cd34540359331684264 SHA512 3fe122cf0adf8dd3e0782ae65132c58d76f7131a2e8c30d9a10eb426c6f63e50b4b5e02b6792524a37b27ca572bd3e2661a6c82118e9c4ed5ecbccaf2c5a42e2
diff --git a/app-text/lesspipe/lesspipe-2.10.ebuild b/app-text/lesspipe/lesspipe-2.10.ebuild
new file mode 100644
index 000000000000..f3b596821f54
--- /dev/null
+++ b/app-text/lesspipe/lesspipe-2.10.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit edo bash-completion-r1
+
+DESCRIPTION="Preprocessor for less"
+HOMEPAGE="https://github.com/wofr06/lesspipe"
+SRC_URI="https://github.com/wofr06/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+IUSE="test"
+
+# Please check again on bumps!
+# bug #734896
+RESTRICT="!test? ( test ) test"
+
+RDEPEND="dev-lang/perl"
+BDEPEND="
+ ${RDEPEND}
+ virtual/pkgconfig
+ test? ( app-editors/vim )
+"
+
+src_configure() {
+ # Not an autoconf script.
+ edo ./configure --prefix="${EPREFIX}"/usr
+}
+
+src_compile() {
+ # Nothing to build (avoids the "all" target)
+ :
+}
+
+src_install() {
+ emake PREFIX="${EPREFIX}/usr" DESTDIR="${D}" install
+ einstalldocs
+
+ rm "${ED}"/usr/share/bash-completion/less_completion || die
+ newbashcomp less_completion less
+}
+
+pkg_preinst() {
+ if [[ -z ${REPLACING_VERSIONS} ]] ; then
+ elog "This package installs 'lesspipe.sh' which is distinct from 'lesspipe'."
+ elog "The latter is the Gentoo-specific version. Make sure to update your"
+ elog "LESSOPEN environment variable if you wish to use this copy."
+ fi
+}
next reply other threads:[~2023-10-06 0:32 UTC|newest]
Thread overview: 63+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-06 0:32 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-08-29 5:16 [gentoo-commits] repo/gentoo:master commit in: app-text/lesspipe/ Jakov Smolić
2024-06-27 2:58 Sam James
2024-06-25 4:46 Sam James
2024-06-25 4:41 Sam James
2024-06-02 5:35 Sam James
2024-05-07 18:31 Arthur Zamarin
2024-04-15 6:51 Sam James
2024-04-15 6:51 Sam James
2024-03-14 7:58 Arthur Zamarin
2024-03-14 6:26 Sam James
2024-01-17 0:02 Sam James
2024-01-17 0:02 Sam James
2023-12-14 8:32 Sam James
2023-12-14 8:32 Sam James
2023-08-21 3:50 Sam James
2023-08-19 15:37 Arthur Zamarin
2023-06-27 7:14 Sam James
2023-06-26 16:47 Sam James
2023-03-04 6:17 Arthur Zamarin
2023-01-10 15:11 Sam James
2022-09-25 4:35 Sam James
2022-09-25 4:35 Sam James
2022-08-27 11:25 Sam James
2022-08-18 3:10 Sam James
2022-06-13 16:29 Sam James
2022-06-13 7:07 Agostino Sarubbo
2022-04-27 2:31 Sam James
2022-03-15 20:19 Sam James
2022-03-02 2:19 Sam James
2022-03-02 2:19 Sam James
2022-02-23 3:08 Sam James
2022-02-23 3:08 Sam James
2022-02-23 3:08 Sam James
2022-01-20 12:08 Sam James
2022-01-20 12:08 Sam James
2022-01-05 2:44 Sam James
2021-12-29 5:35 Sam James
2021-12-13 7:02 Agostino Sarubbo
2021-12-13 6:57 Agostino Sarubbo
2021-12-05 3:35 Sam James
2021-11-11 3:49 Sam James
2021-10-26 4:35 Sam James
2021-08-26 18:48 Sam James
2021-08-26 18:48 Sam James
2021-08-16 2:43 Sam James
2021-08-16 2:43 Sam James
2021-08-09 3:48 Sam James
2021-08-09 3:47 Sam James
2021-08-08 9:32 Lars Wendler
2021-07-22 7:25 Lars Wendler
2021-05-14 20:07 Sam James
2021-05-14 20:06 Sam James
2021-05-14 20:06 Sam James
2021-05-14 20:05 Sam James
2020-12-27 14:01 Fabian Groffen
2020-08-26 15:21 Thomas Deutschmann
2019-08-11 1:13 Thomas Deutschmann
2018-04-06 13:11 Lars Wendler
2018-04-06 13:11 Lars Wendler
2017-11-14 12:42 Manuel Rüger
2017-10-26 20:30 Thomas Deutschmann
2016-04-06 22:09 Mike Frysinger
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=1696550282.5bb7c2d8219a00a4fbd0c10360331e615f9a3bdf.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