public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: app-shells/mrsh/
@ 2021-10-03  6:55 Arthur Zamarin
  0 siblings, 0 replies; 3+ messages in thread
From: Arthur Zamarin @ 2021-10-03  6:55 UTC (permalink / raw
  To: gentoo-commits

commit:     017a2d6445386de433d33662fa8167bb05a6f255
Author:     Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Sat Oct  2 15:38:40 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Oct  2 15:38:54 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=017a2d64

app-shells/mrsh: New Package

Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>

 app-shells/mrsh/mrsh-9999.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/app-shells/mrsh/mrsh-9999.ebuild b/app-shells/mrsh/mrsh-9999.ebuild
new file mode 100644
index 000000000..e113ed018
--- /dev/null
+++ b/app-shells/mrsh/mrsh-9999.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit git-r3 meson
+
+DESCRIPTION="minimal strictly POSIX compliant shell"
+HOMEPAGE="https://mrsh.sh/"
+EGIT_REPO_URI="https://git.sr.ht/~emersion/mrsh"
+LICENSE="MIT"
+SLOT="0"
+
+IUSE="libedit +readline"
+DEPEND="
+	libedit? ( dev-libs/libedit )
+	readline? ( sys-libs/readline:= )
+"
+RDEPEND="${DEPEND}"
+REQUIRED_USE="?? ( libedit readline )"
+
+RESTRICT="test"
+
+src_configure() {
+	local emesonargs=(
+		-Dwerror=false
+		-Dauto_features=disabled
+	)
+
+	if use readline || use libedit; then
+		emesonargs+=(
+			-Dreadline=enabled
+			-Dreadline-provider=$(usev readline || usev libedit)
+		)
+	fi
+
+	meson_src_configure
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/mrsh/
@ 2021-10-03  6:55 Arthur Zamarin
  0 siblings, 0 replies; 3+ messages in thread
From: Arthur Zamarin @ 2021-10-03  6:55 UTC (permalink / raw
  To: gentoo-commits

commit:     121a406ae7a807f057d366611084e7ba2ddd828e
Author:     Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Sat Oct  2 19:36:10 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Oct  2 19:36:18 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=121a406a

app-shells/mrsh: Address review from arthurzam@

Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>

 app-shells/mrsh/metadata.xml     | 8 ++++++++
 app-shells/mrsh/mrsh-9999.ebuild | 5 +++--
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/app-shells/mrsh/metadata.xml b/app-shells/mrsh/metadata.xml
new file mode 100644
index 000000000..c698af234
--- /dev/null
+++ b/app-shells/mrsh/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>contact@hacktivis.me</email>
+		<name>Haelwenn (lanodan) Monnier</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/app-shells/mrsh/mrsh-9999.ebuild b/app-shells/mrsh/mrsh-9999.ebuild
index e113ed018..6cfbfdd03 100644
--- a/app-shells/mrsh/mrsh-9999.ebuild
+++ b/app-shells/mrsh/mrsh-9999.ebuild
@@ -11,13 +11,14 @@ EGIT_REPO_URI="https://git.sr.ht/~emersion/mrsh"
 LICENSE="MIT"
 SLOT="0"
 
-IUSE="libedit +readline"
+IUSE="+readline libedit"
+REQUIRED_USE="?? ( libedit readline )"
+
 DEPEND="
 	libedit? ( dev-libs/libedit )
 	readline? ( sys-libs/readline:= )
 "
 RDEPEND="${DEPEND}"
-REQUIRED_USE="?? ( libedit readline )"
 
 RESTRICT="test"
 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-shells/mrsh/
@ 2024-06-08 13:21 Julien Roy
  0 siblings, 0 replies; 3+ messages in thread
From: Julien Roy @ 2024-06-08 13:21 UTC (permalink / raw
  To: gentoo-commits

commit:     d96066301198636e3ad53e4e288822993ebbd957
Author:     Joe Kappus <joe <AT> wt <DOT> gd>
AuthorDate: Sat Jun  8 07:55:43 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat Jun  8 07:55:43 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d9606630

app-shells/mrsh: update HOMEPAGE

Signed-off-by: Joe Kappus <joe <AT> wt.gd>

 app-shells/mrsh/mrsh-9999.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-shells/mrsh/mrsh-9999.ebuild b/app-shells/mrsh/mrsh-9999.ebuild
index 6cfbfdd03..253162e40 100644
--- a/app-shells/mrsh/mrsh-9999.ebuild
+++ b/app-shells/mrsh/mrsh-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -6,7 +6,7 @@ EAPI=8
 inherit git-r3 meson
 
 DESCRIPTION="minimal strictly POSIX compliant shell"
-HOMEPAGE="https://mrsh.sh/"
+HOMEPAGE="https://git.sr.ht/~emersion/mrsh"
 EGIT_REPO_URI="https://git.sr.ht/~emersion/mrsh"
 LICENSE="MIT"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-06-08 13:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-03  6:55 [gentoo-commits] repo/proj/guru:master commit in: app-shells/mrsh/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2024-06-08 13:21 Julien Roy
2021-10-03  6:55 Arthur Zamarin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox