* [gentoo-commits] repo/gentoo:master commit in: app-misc/ledit/
@ 2019-07-05 20:17 Michał Górny
0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2019-07-05 20:17 UTC (permalink / raw
To: gentoo-commits
commit: a50786bd3e18274da494d0ae2f88c6e41a8e3460
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 14 08:39:47 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jul 5 20:17:03 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a50786bd
app-misc/ledit: Replace STRIP_MASK with RESTRICT=strip
Closes: https://bugs.gentoo.org/651426
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/11676
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-misc/ledit/ledit-2.03.ebuild | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/app-misc/ledit/ledit-2.03.ebuild b/app-misc/ledit/ledit-2.03.ebuild
index caec36f6240..4810b328c9a 100644
--- a/app-misc/ledit/ledit-2.03.ebuild
+++ b/app-misc/ledit/ledit-2.03.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -18,15 +18,12 @@ RDEPEND="${DEPEND}"
SLOT="0"
LICENSE="BSD"
KEYWORDS="amd64 ppc x86 ~x86-fbsd"
+RESTRICT="!ocamlopt? ( strip )"
src_compile() {
emake -j1 all
if use ocamlopt; then
emake -j1 ledit.opt
- else
- # If using bytecode we dont want to strip the binary as it would remove the
- # bytecode and only leave ocamlrun...
- export STRIP_MASK="*/bin/*"
fi
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/ledit/
@ 2019-12-13 15:06 Ulrich Müller
0 siblings, 0 replies; 7+ messages in thread
From: Ulrich Müller @ 2019-12-13 15:06 UTC (permalink / raw
To: gentoo-commits
commit: 52f850c9495db2d90aa1c7c0508cf8f343982869
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 13 14:57:46 2019 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Fri Dec 13 14:57:46 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52f850c9
app-misc/ledit: Assign RESTRICT only once.
Rearrange variables to be in canonical order.
Closes: https://bugs.gentoo.org/699196
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-misc/ledit/ledit-2.03.ebuild | 14 ++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)
diff --git a/app-misc/ledit/ledit-2.03.ebuild b/app-misc/ledit/ledit-2.03.ebuild
index ecbb81e1366..0cc52ce565a 100644
--- a/app-misc/ledit/ledit-2.03.ebuild
+++ b/app-misc/ledit/ledit-2.03.ebuild
@@ -4,22 +4,20 @@
EAPI=5
inherit eutils
-RESTRICT="installsources"
-IUSE="+ocamlopt"
-
DESCRIPTION="A line editor to be used with interactive commands"
SRC_URI="http://pauillac.inria.fr/~ddr/ledit/distrib/src/${P}.tgz"
HOMEPAGE="http://pauillac.inria.fr/~ddr/ledit/"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="amd64 ppc x86"
+IUSE="+ocamlopt"
+RESTRICT="installsources !ocamlopt? ( strip )"
+
DEPEND=">=dev-lang/ocaml-3.09:=[ocamlopt?]
dev-ml/camlp5:="
RDEPEND="${DEPEND}"
-SLOT="0"
-LICENSE="BSD"
-KEYWORDS="amd64 ppc x86"
-RESTRICT="!ocamlopt? ( strip )"
-
src_compile() {
emake -j1 all
if use ocamlopt; then
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/ledit/
@ 2020-04-01 14:38 Joonas Niilola
0 siblings, 0 replies; 7+ messages in thread
From: Joonas Niilola @ 2020-04-01 14:38 UTC (permalink / raw
To: gentoo-commits
commit: 2b68d6d20c7935eb3da1411f04fcbdbb76f761c6
Author: Łukasz Zubkowicz <lukasek86 <AT> gmail <DOT> com>
AuthorDate: Sun Mar 8 12:29:56 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Apr 1 14:37:33 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b68d6d2
app-misc/ledit: version bump to 2.04
Closes: https://bugs.gentoo.org/705584
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Łukasz Zubkowicz <lukasek86 <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/14865
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
app-misc/ledit/Manifest | 1 +
app-misc/ledit/ledit-2.04.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/app-misc/ledit/Manifest b/app-misc/ledit/Manifest
index 1303c66dfbe..f20d2f02f04 100644
--- a/app-misc/ledit/Manifest
+++ b/app-misc/ledit/Manifest
@@ -1 +1,2 @@
DIST ledit-2.03.tgz 24319 BLAKE2B d0a9dfbcb21b54075b61db34035291eaf3df4a337ea9fcf24b8b163d8a45c00b667dd311f39765dc904cbae1ec34e8773dea4c7ec6753796e768a8ee4cbbb927 SHA512 94281ea31d02c046db73bed42a1835826f063ff5d1ff4c374356e37fdf6b1a018f95a6372ece0eec53193aaf2e95c234c509ac178541bfe48dbc6f223f34f661
+DIST ledit-2.04.tgz 24430 BLAKE2B 782f39606e6151307c30a665cfb6e641647fe861718ae304171db07ac82c27ee5ca9503229a27857723de98c15ac350f60be8df2e4b4fe7dc475ef2271dcf591 SHA512 56fed04fa6306b5550dc6ab4f000553d5b01eddbdeccaafad51160ba9e2c12de5faab08cb8463cad2952501c73dff0e2e214f52a30a74da20f18af153206b807
diff --git a/app-misc/ledit/ledit-2.04.ebuild b/app-misc/ledit/ledit-2.04.ebuild
new file mode 100644
index 00000000000..e987e9a7848
--- /dev/null
+++ b/app-misc/ledit/ledit-2.04.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A line editor to be used with interactive commands"
+SRC_URI="http://pauillac.inria.fr/~ddr/ledit/distrib/src/${P}.tgz"
+HOMEPAGE="http://pauillac.inria.fr/~ddr/ledit/"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="+ocamlopt"
+RESTRICT="installsources !ocamlopt? ( strip )"
+
+DEPEND=">=dev-lang/ocaml-3.09:=[ocamlopt?]
+ dev-ml/camlp5:="
+RDEPEND="${DEPEND}"
+
+# For explanation please follow the link below.
+# https://github.com/gentoo/gentoo/pull/14865#issuecomment-605697524
+QA_FLAGS_IGNORED="/usr/bin/ledit"
+
+src_compile() {
+ emake -j1 all
+ if use ocamlopt; then
+ emake -j1 ledit.opt
+ fi
+}
+
+src_install() {
+ if use ocamlopt; then
+ newbin ledit.opt ledit
+ else
+ newbin ledit.out ledit
+ fi
+ doman ledit.1
+ dodoc CHANGES README
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/ledit/
@ 2020-04-01 14:38 Joonas Niilola
0 siblings, 0 replies; 7+ messages in thread
From: Joonas Niilola @ 2020-04-01 14:38 UTC (permalink / raw
To: gentoo-commits
commit: 6cd7e2f90bfeadf877936a50237d9348818dee09
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 1 13:40:44 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Apr 1 14:37:33 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cd7e2f9
app-misc/ledit: follow ebuild skel
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
app-misc/ledit/ledit-2.04.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/app-misc/ledit/ledit-2.04.ebuild b/app-misc/ledit/ledit-2.04.ebuild
index e987e9a7848..2236980b1f7 100644
--- a/app-misc/ledit/ledit-2.04.ebuild
+++ b/app-misc/ledit/ledit-2.04.ebuild
@@ -4,13 +4,14 @@
EAPI=7
DESCRIPTION="A line editor to be used with interactive commands"
-SRC_URI="http://pauillac.inria.fr/~ddr/ledit/distrib/src/${P}.tgz"
HOMEPAGE="http://pauillac.inria.fr/~ddr/ledit/"
+SRC_URI="http://pauillac.inria.fr/~ddr/ledit/distrib/src/${P}.tgz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="+ocamlopt"
+
RESTRICT="installsources !ocamlopt? ( strip )"
DEPEND=">=dev-lang/ocaml-3.09:=[ocamlopt?]
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/ledit/
@ 2021-01-04 3:31 Sam James
0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2021-01-04 3:31 UTC (permalink / raw
To: gentoo-commits
commit: 088afcc274e9c5a6d7e1b136a013a8081f84ab9b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 4 03:30:17 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 4 03:30:17 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=088afcc2
app-misc/ledit: Stabilize 2.04 amd64, #763468
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-misc/ledit/ledit-2.04.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-misc/ledit/ledit-2.04.ebuild b/app-misc/ledit/ledit-2.04.ebuild
index 2236980b1f7..57a72a2f43c 100644
--- a/app-misc/ledit/ledit-2.04.ebuild
+++ b/app-misc/ledit/ledit-2.04.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -9,7 +9,7 @@ SRC_URI="http://pauillac.inria.fr/~ddr/ledit/distrib/src/${P}.tgz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
IUSE="+ocamlopt"
RESTRICT="installsources !ocamlopt? ( strip )"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/ledit/
@ 2021-01-07 11:15 Sam James
0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2021-01-07 11:15 UTC (permalink / raw
To: gentoo-commits
commit: 828f237072070cfaaaab4685121d93192dfd4800
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 7 11:14:38 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 7 11:15:16 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=828f2370
app-misc/ledit: Stabilize 2.04 ppc, #763468
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-misc/ledit/ledit-2.04.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-misc/ledit/ledit-2.04.ebuild b/app-misc/ledit/ledit-2.04.ebuild
index 78bc95f9701..beed0d23e1e 100644
--- a/app-misc/ledit/ledit-2.04.ebuild
+++ b/app-misc/ledit/ledit-2.04.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://pauillac.inria.fr/~ddr/ledit/distrib/src/${P}.tgz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
IUSE="+ocamlopt"
RESTRICT="installsources !ocamlopt? ( strip )"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/ledit/
@ 2021-01-07 11:33 Sam James
0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2021-01-07 11:33 UTC (permalink / raw
To: gentoo-commits
commit: 176195451873110aea2013db7bda0f2ecafea697
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 7 11:17:13 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 7 11:33:12 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17619545
app-misc/ledit: cleanup old
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-misc/ledit/Manifest | 1 -
app-misc/ledit/ledit-2.03.ebuild | 36 ------------------------------------
2 files changed, 37 deletions(-)
diff --git a/app-misc/ledit/Manifest b/app-misc/ledit/Manifest
index f20d2f02f04..8a708e3eb87 100644
--- a/app-misc/ledit/Manifest
+++ b/app-misc/ledit/Manifest
@@ -1,2 +1 @@
-DIST ledit-2.03.tgz 24319 BLAKE2B d0a9dfbcb21b54075b61db34035291eaf3df4a337ea9fcf24b8b163d8a45c00b667dd311f39765dc904cbae1ec34e8773dea4c7ec6753796e768a8ee4cbbb927 SHA512 94281ea31d02c046db73bed42a1835826f063ff5d1ff4c374356e37fdf6b1a018f95a6372ece0eec53193aaf2e95c234c509ac178541bfe48dbc6f223f34f661
DIST ledit-2.04.tgz 24430 BLAKE2B 782f39606e6151307c30a665cfb6e641647fe861718ae304171db07ac82c27ee5ca9503229a27857723de98c15ac350f60be8df2e4b4fe7dc475ef2271dcf591 SHA512 56fed04fa6306b5550dc6ab4f000553d5b01eddbdeccaafad51160ba9e2c12de5faab08cb8463cad2952501c73dff0e2e214f52a30a74da20f18af153206b807
diff --git a/app-misc/ledit/ledit-2.03.ebuild b/app-misc/ledit/ledit-2.03.ebuild
deleted file mode 100644
index 0cc52ce565a..00000000000
--- a/app-misc/ledit/ledit-2.03.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils
-
-DESCRIPTION="A line editor to be used with interactive commands"
-SRC_URI="http://pauillac.inria.fr/~ddr/ledit/distrib/src/${P}.tgz"
-HOMEPAGE="http://pauillac.inria.fr/~ddr/ledit/"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="+ocamlopt"
-RESTRICT="installsources !ocamlopt? ( strip )"
-
-DEPEND=">=dev-lang/ocaml-3.09:=[ocamlopt?]
- dev-ml/camlp5:="
-RDEPEND="${DEPEND}"
-
-src_compile() {
- emake -j1 all
- if use ocamlopt; then
- emake -j1 ledit.opt
- fi
-}
-
-src_install() {
- if use ocamlopt; then
- newbin ledit.opt ledit
- else
- newbin ledit.out ledit
- fi
- doman ledit.1
- dodoc CHANGES README
-}
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2021-01-07 11:33 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-07 11:15 [gentoo-commits] repo/gentoo:master commit in: app-misc/ledit/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2021-01-07 11:33 Sam James
2021-01-04 3:31 Sam James
2020-04-01 14:38 Joonas Niilola
2020-04-01 14:38 Joonas Niilola
2019-12-13 15:06 Ulrich Müller
2019-07-05 20:17 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox