commit: d0bd8af7e7dd302292f98a438c4f38a9d0502470 Author: Dirk Gouders <dirk <AT> gouders <DOT> net> AuthorDate: Fri Jan 3 21:49:23 2025 +0000 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org> CommitDate: Fri Jan 3 21:53:14 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d0bd8af7
app-text/lsp: add live ebuild (branch next) Signed-off-by: Dirk Gouders <dirk <AT> gouders.net> app-text/lsp/lsp-9999.ebuild | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/app-text/lsp/lsp-9999.ebuild b/app-text/lsp/lsp-9999.ebuild new file mode 100644 index 000000000..631d337fc --- /dev/null +++ b/app-text/lsp/lsp-9999.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit git-r3 +inherit meson + +EGIT_REPO_URI="https://github.com/dgouders/lsp.git" +EGIT_BRANCH="next" + +DESCRIPTION="The least significant pager" +HOMEPAGE="https://github.com/dgouders/lsp" +LICENSE="GPL-2" +SLOT="0" + +RDEPEND=" + >=sys-apps/man-db-2.12.0 + >=sys-libs/ncurses-6.4_p20230401 +" +DEPEND="${RDEPEND}" + +pkg_postinst() { + elog "lsp(1) is still considered experimental." + elog "Testers and feedback are very welcome!" + elog "" + elog "One known problem are files with long lines." + elog "Movement within those files isn't accurate but" + elog "this will get fixed in the near future." + elog "" + elog "To enable lsp(1) to be automatically selected" + elog "as a pager, set either MANPAGER, GIT_PAGER and/or PAGER." +}
