* [gentoo-commits] repo/proj/guru:master commit in: app-text/lsp/
@ 2024-02-13 16:32 David Roman
0 siblings, 0 replies; 2+ messages in thread
From: David Roman @ 2024-02-13 16:32 UTC (permalink / raw
To: gentoo-commits
commit: 8d9a04fec590a141aca27fd9b80fbb3d4aa55afd
Author: Dirk Gouders <dirk <AT> gouders <DOT> net>
AuthorDate: Mon Feb 12 21:18:54 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Feb 12 21:18:54 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8d9a04fe
app-text/lsp: new package, add 0.5.0-rc4
Signed-off-by: Dirk Gouders <dirk <AT> gouders.net>
app-text/lsp/Manifest | 1 +
app-text/lsp/lsp-0.5.0_rc4.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
app-text/lsp/metadata.xml | 28 ++++++++++++++++++++++++++++
3 files changed, 67 insertions(+)
diff --git a/app-text/lsp/Manifest b/app-text/lsp/Manifest
new file mode 100644
index 0000000000..97b8f9f5b7
--- /dev/null
+++ b/app-text/lsp/Manifest
@@ -0,0 +1 @@
+DIST v0.5.0-rc4.tar.gz 60316 BLAKE2B db8b45b7f0e584f8be865fc7e0bb201bbddc780b5adfe21b9367d76f4d5a581382ff8bb8d76f68a6929cf66f16e8467e9eb2cad34385f8512e35e1acac21631d SHA512 7682f060b489cafa671d78bb9e6c130a317eaee08da6638c35ae422b7ce30436f06487e5dd2fce2055edb32a12cb63d7fefbfb29169a316105210609016a2f1c
diff --git a/app-text/lsp/lsp-0.5.0_rc4.ebuild b/app-text/lsp/lsp-0.5.0_rc4.ebuild
new file mode 100644
index 0000000000..f4743a069d
--- /dev/null
+++ b/app-text/lsp/lsp-0.5.0_rc4.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+MY_PV="${PV/_/-}"
+MY_P="lsp-${MY_PV}"
+S="${WORKDIR}/${MY_P}"
+
+DESCRIPTION="The least significant pager"
+HOMEPAGE="https://github.com/dgouders/lsp"
+SRC_URI="https://github.com/dgouders/lsp/archive/refs/tags/v${MY_PV}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+RDEPEND="
+ >=sys-apps/man-db-2.12.0
+ >=sys-libs/ncurses-6.4_p20230401
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+ meson_src_configure
+}
+
+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."
+}
diff --git a/app-text/lsp/metadata.xml b/app-text/lsp/metadata.xml
new file mode 100644
index 0000000000..524f5aa9ea
--- /dev/null
+++ b/app-text/lsp/metadata.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>dirk@gouders.net</email>
+ <description>Primary maintainer</description>
+ </maintainer>
+ <upstream>
+ <bugs-to>https://github.com/dgouders/lsp/issues</bugs-to>
+ <doc>https://github.com/dgouders/lsp/</doc>
+ <remote-id type="github">dgouders/lsp</remote-id>
+ </upstream>
+ <longdescription>
+ lsp(1) is a terminal pager with a focus on manual pages.
+
+ It offers some assistance in handling manual pages:
+
+ * Navigation to other referenced manual pages.
+ * Opening of any manual page by name.
+ * Maintainance of several open manual pages in a session.
+ * Experimental TOC mode that is helpful to show only sections and
+ subsections of manual pages.
+ * Creating a pseudo-file with the output of apropos.
+ This could be useful especially for novice users: this can be
+ used to search or read through all manual pages' short descriptions
+ and immediately open interesting ones.
+ </longdescription>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-text/lsp/
@ 2025-01-04 11:22 Florian Schmaus
0 siblings, 0 replies; 2+ messages in thread
From: Florian Schmaus @ 2025-01-04 11:22 UTC (permalink / raw
To: gentoo-commits
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."
+}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-01-04 11:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-13 16:32 [gentoo-commits] repo/proj/guru:master commit in: app-text/lsp/ David Roman
-- strict thread matches above, loose matches on Subject: below --
2025-01-04 11:22 Florian Schmaus
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox