Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/lesspipe/
Date: Wed, 27 Apr 2022 02:31:55
Message-Id: 1651026703.4cb673be9dfaf4c9cb570cd3f9cc18d293a38a1b.sam@gentoo
1 commit: 4cb673be9dfaf4c9cb570cd3f9cc18d293a38a1b
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 27 02:31:35 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 27 02:31:43 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cb673be
7
8 app-text/lesspipe: add 2.05
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 app-text/lesspipe/Manifest | 1 +
13 app-text/lesspipe/lesspipe-2.05.ebuild | 47 ++++++++++++++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/app-text/lesspipe/Manifest b/app-text/lesspipe/Manifest
17 index d7d1db048749..3d7322d22af7 100644
18 --- a/app-text/lesspipe/Manifest
19 +++ b/app-text/lesspipe/Manifest
20 @@ -1,2 +1,3 @@
21 DIST lesspipe-1.91.tar.gz 121965 BLAKE2B 93c169b2b1a81db7e7b569718a43152a8f2b9ea95258047a00ae4940509817a3eb861fdadb6bafc5861c49e805ce910348a57f634bdae57317811ac6fbfc6945 SHA512 d080ceaae019d8885a53c8abb26f4a159b78578f68c2b9a024960aa69509651e3b6638e78bd6e2e57c23d81123d9a3cab167736f253ba4276a3889890d594bd3
22 DIST lesspipe-2.04.tar.gz 166831 BLAKE2B c33620b1c2714b01a89eaaeaeccfd72e62fd5123270ec84d3e27e914bda8f734758b36ea850126aa1ecd6ab36b9442577ac591024c373bdf6540b95816ed750b SHA512 04312d21c4f45b1630efd597ffafd69fc46ceff1fd5872d296a7811940f9d34da805c4ef4fa543af839de7e8bb4225c6ef5e680e9675eae4f56de669ec975669
23 +DIST lesspipe-2.05.tar.gz 167135 BLAKE2B 6f54a68a3857fcafa19148ba798d6ac49b2693e547e88a4a4fb6a178768d75ba8ae08e808a9e08aabfe903538bd401e3bd25e22ec240bf3a52365df729d87b9e SHA512 b4220b28fb609060735663067f5a738cae32d12e90efc397db3749e4dcfa7bfc063a4458c1f39b8a43be3b04effdc00a25c4feebd6e9a3b23f0064b879bbb698
24
25 diff --git a/app-text/lesspipe/lesspipe-2.05.ebuild b/app-text/lesspipe/lesspipe-2.05.ebuild
26 new file mode 100644
27 index 000000000000..dc26753ae52b
28 --- /dev/null
29 +++ b/app-text/lesspipe/lesspipe-2.05.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit bash-completion-r1
37 +
38 +DESCRIPTION="A preprocessor for less"
39 +HOMEPAGE="https://github.com/wofr06/lesspipe"
40 +SRC_URI="https://github.com/wofr06/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
45 +
46 +# Please check again on bumps!
47 +# bug #734896
48 +RESTRICT="test"
49 +
50 +BDEPEND="dev-lang/perl"
51 +RDEPEND="${DEPEND}"
52 +
53 +src_configure() {
54 + # Not an autoconf script.
55 + ./configure --fixed || die
56 +}
57 +
58 +src_compile() {
59 + # Nothing to build (avoids the "all" target)
60 + :
61 +}
62 +
63 +src_install() {
64 + emake PREFIX="${EPREFIX}/usr" DESTDIR="${D}" install
65 + einstalldocs
66 +
67 + rm -r "${ED}"/etc/bash_completion.d || die
68 + newbashcomp less_completion less
69 +}
70 +
71 +pkg_preinst() {
72 + if [[ -z ${REPLACING_VERSIONS} ]] ; then
73 + elog "This package installs 'lesspipe.sh' which is distinct from 'lesspipe'."
74 + elog "The latter is the Gentoo-specific version. Make sure to update your"
75 + elog "LESSOPEN environment variable if you wish to use this copy."
76 + fi
77 +}