public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2015-11-05  8:47 Alexis Ballier
  0 siblings, 0 replies; 31+ messages in thread
From: Alexis Ballier @ 2015-11-05  8:47 UTC (permalink / raw
  To: gentoo-commits

commit:     319246f68987611f4e3287937719ee1ad89096c5
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Nov  5 08:47:33 2015 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Nov  5 08:47:33 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=319246f6

dev-ml/utop: Bump to 1.18.1

Package-Manager: portage-2.2.24
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 dev-ml/utop/Manifest           |  1 +
 dev-ml/utop/utop-1.18.1.ebuild | 59 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index 8a2c4d6..3f74eef 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,3 +1,4 @@
 DIST utop-1.11.tar.gz 102730 SHA256 07dff727de3db9b9014f7ece3e94f044b50f9f0896e982c99efaa5199d4ccf2d SHA512 b26513f081e1ef6a139d74ca63b7d96a16d89a03d2dd42ccb4bc21463104184147c636bf26e44116fbba2330b8116ff9ee884fcc042fac89356f65ac2b133a92 WHIRLPOOL 4f0ca27eae1d2bc5a382d35b4bcfd4ad0ab581727df700047a9b71dc15a8b609ee5262911216456cea7f7e7b45a3f441fe80288a67e18283eb13e11d2f9a12b0
 DIST utop-1.16.tar.gz 99563 SHA256 f2d0a2cc8ab74dbbec3e9b3f83eea097a8da482c3831392741657b16093a129d SHA512 a374d1974bd1c6a30544938dc3d19d10e38363f0ad51563fd151752cc2b2cbe4e9a0a782263daf93b58631d7c105f81f52767341a684e3efed2397056c7b993a WHIRLPOOL f53700540f3a068f0dba72b7511d607fafb5505b2cabeaad2ede8c69eba2c7d2c3949f266c23b35deab1500075ba7c727a9db7178ae72395f4c67a9d92dc3d65
+DIST utop-1.18.1.tar.gz 101718 SHA256 a8dae3d520a28eb0a57620d53901f523ee3da0a54bffb0e6364aa3da9c50f242 SHA512 d828f4b76dd3deba5d07d86fcc3d2e4513d35514517c56618c499f2405a7f8df7912097064f71b2591a3eb9da6890d90f2e11a8f38cf850391d09094c68e0fdc WHIRLPOOL f8c1ead6bc53133361bee5190c0deded86ac058be8ed4a8237820e6fcb534b24ff9281249bfc76ec620085c2ea61858e7a639e5cc4f6d823a1c5fef5c7315444
 DIST utop-1.18.tar.gz 101673 SHA256 157f3883a3daf379ba7d67118e1e2a4d2d73e9c3461fe82219dff4fe662272a1 SHA512 b352ad9a91c1ad5214a7689ca2d71ae41c2891ea240d41620ce2778f10380116709e2d2575f56d972bb038eb0c2333253c2fd3482be1eb145b976a2922175086 WHIRLPOOL ffa1c46f90b66dca4c2c3d95a9abac4ba4a2087b2121a4eb7b3daeccae550db82f0894dedcc9169d5ec9fec83ccd2de727374664bb0f49ea4151fad28018e68a

diff --git a/dev-ml/utop/utop-1.18.1.ebuild b/dev-ml/utop/utop-1.18.1.ebuild
new file mode 100644
index 0000000..8da80eb
--- /dev/null
+++ b/dev-ml/utop/utop-1.18.1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+OASIS_BUILD_DOCS=1
+inherit oasis elisp-common
+
+DESCRIPTION="A new toplevel for OCaml with completion and colorization"
+HOMEPAGE="https://github.com/diml/utop"
+SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="camlp4 emacs"
+
+DEPEND=">=dev-ml/lwt-2.4.0:=[react]
+	>=dev-ml/lambda-term-1.2:=
+	>=dev-ml/zed-1.2:=
+	>=dev-ml/cppo-1.0.1:=
+	emacs? ( virtual/emacs )
+	camlp4? ( || ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 ) )"
+RDEPEND="${DEPEND}"
+
+DOCS=( "CHANGES.md" "README.md" )
+SITEFILE="50${PN}-gentoo.el"
+
+src_prepare() {
+	sed -i "s/(\"utop.el.*)//" setup.ml
+}
+
+src_configure() {
+	oasis_configure_opts="$(use_enable camlp4)" \
+		oasis_src_configure
+}
+src_compile() {
+	oasis_src_compile
+	if use emacs; then
+		elisp-compile src/top/*.el
+	fi
+}
+
+src_install() {
+	oasis_src_install
+	if use emacs; then
+		elisp-install "${PN}" src/top/*.el src/top/*.elc || die
+		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
+	fi
+}
+
+pkg_postinst() {
+	use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+	use emacs && elisp-site-regen
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2016-03-04 11:32 Alexis Ballier
  0 siblings, 0 replies; 31+ messages in thread
From: Alexis Ballier @ 2016-03-04 11:32 UTC (permalink / raw
  To: gentoo-commits

commit:     4cb4f3396831a26100eeb5815b606f15c9a2fc73
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  4 11:31:05 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Mar  4 11:32:34 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cb4f339

dev-ml/utop: bump to 1.18.2

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 dev-ml/utop/Manifest           |  1 +
 dev-ml/utop/utop-1.18.2.ebuild | 59 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index 3f74eef..67667a9 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,4 +1,5 @@
 DIST utop-1.11.tar.gz 102730 SHA256 07dff727de3db9b9014f7ece3e94f044b50f9f0896e982c99efaa5199d4ccf2d SHA512 b26513f081e1ef6a139d74ca63b7d96a16d89a03d2dd42ccb4bc21463104184147c636bf26e44116fbba2330b8116ff9ee884fcc042fac89356f65ac2b133a92 WHIRLPOOL 4f0ca27eae1d2bc5a382d35b4bcfd4ad0ab581727df700047a9b71dc15a8b609ee5262911216456cea7f7e7b45a3f441fe80288a67e18283eb13e11d2f9a12b0
 DIST utop-1.16.tar.gz 99563 SHA256 f2d0a2cc8ab74dbbec3e9b3f83eea097a8da482c3831392741657b16093a129d SHA512 a374d1974bd1c6a30544938dc3d19d10e38363f0ad51563fd151752cc2b2cbe4e9a0a782263daf93b58631d7c105f81f52767341a684e3efed2397056c7b993a WHIRLPOOL f53700540f3a068f0dba72b7511d607fafb5505b2cabeaad2ede8c69eba2c7d2c3949f266c23b35deab1500075ba7c727a9db7178ae72395f4c67a9d92dc3d65
 DIST utop-1.18.1.tar.gz 101718 SHA256 a8dae3d520a28eb0a57620d53901f523ee3da0a54bffb0e6364aa3da9c50f242 SHA512 d828f4b76dd3deba5d07d86fcc3d2e4513d35514517c56618c499f2405a7f8df7912097064f71b2591a3eb9da6890d90f2e11a8f38cf850391d09094c68e0fdc WHIRLPOOL f8c1ead6bc53133361bee5190c0deded86ac058be8ed4a8237820e6fcb534b24ff9281249bfc76ec620085c2ea61858e7a639e5cc4f6d823a1c5fef5c7315444
+DIST utop-1.18.2.tar.gz 101774 SHA256 f55c218d6a58577adaec2aaa68f01af653d96db7aea21bc483f89b97d4efbb38 SHA512 7c5365d2effe74c4db17ec2c3696db3c88582c3cdc64a4750fe308f1b33d8ff95d14fa039aa38ca92592aa2ff6bd99f88efcb8327a441ff0f111c99e56397b3f WHIRLPOOL 39abfaa7881e34a6ed1cbcbcd700186910e6db7b980354f7f14442512c8ae2977234fbeb3164703fedf6bf5ed59a164ece716e7fcf942624a2f3c83b6d14da87
 DIST utop-1.18.tar.gz 101673 SHA256 157f3883a3daf379ba7d67118e1e2a4d2d73e9c3461fe82219dff4fe662272a1 SHA512 b352ad9a91c1ad5214a7689ca2d71ae41c2891ea240d41620ce2778f10380116709e2d2575f56d972bb038eb0c2333253c2fd3482be1eb145b976a2922175086 WHIRLPOOL ffa1c46f90b66dca4c2c3d95a9abac4ba4a2087b2121a4eb7b3daeccae550db82f0894dedcc9169d5ec9fec83ccd2de727374664bb0f49ea4151fad28018e68a

diff --git a/dev-ml/utop/utop-1.18.2.ebuild b/dev-ml/utop/utop-1.18.2.ebuild
new file mode 100644
index 0000000..8da80eb
--- /dev/null
+++ b/dev-ml/utop/utop-1.18.2.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+OASIS_BUILD_DOCS=1
+inherit oasis elisp-common
+
+DESCRIPTION="A new toplevel for OCaml with completion and colorization"
+HOMEPAGE="https://github.com/diml/utop"
+SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="camlp4 emacs"
+
+DEPEND=">=dev-ml/lwt-2.4.0:=[react]
+	>=dev-ml/lambda-term-1.2:=
+	>=dev-ml/zed-1.2:=
+	>=dev-ml/cppo-1.0.1:=
+	emacs? ( virtual/emacs )
+	camlp4? ( || ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 ) )"
+RDEPEND="${DEPEND}"
+
+DOCS=( "CHANGES.md" "README.md" )
+SITEFILE="50${PN}-gentoo.el"
+
+src_prepare() {
+	sed -i "s/(\"utop.el.*)//" setup.ml
+}
+
+src_configure() {
+	oasis_configure_opts="$(use_enable camlp4)" \
+		oasis_src_configure
+}
+src_compile() {
+	oasis_src_compile
+	if use emacs; then
+		elisp-compile src/top/*.el
+	fi
+}
+
+src_install() {
+	oasis_src_install
+	if use emacs; then
+		elisp-install "${PN}" src/top/*.el src/top/*.elc || die
+		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
+	fi
+}
+
+pkg_postinst() {
+	use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+	use emacs && elisp-site-regen
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2016-04-13  8:30 Alexis Ballier
  0 siblings, 0 replies; 31+ messages in thread
From: Alexis Ballier @ 2016-04-13  8:30 UTC (permalink / raw
  To: gentoo-commits

commit:     effcb687e1573f281aad3747b612e393dc291aab
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 13 08:06:14 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Apr 13 08:30:11 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=effcb687

dev-ml/utop: bump to 1.19

Package-Manager: portage-2.2.28

 dev-ml/utop/Manifest         |  1 +
 dev-ml/utop/utop-1.19.ebuild | 59 ++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index 929f82a..39d3145 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1 +1,2 @@
 DIST utop-1.18.2.tar.gz 101774 SHA256 f55c218d6a58577adaec2aaa68f01af653d96db7aea21bc483f89b97d4efbb38 SHA512 7c5365d2effe74c4db17ec2c3696db3c88582c3cdc64a4750fe308f1b33d8ff95d14fa039aa38ca92592aa2ff6bd99f88efcb8327a441ff0f111c99e56397b3f WHIRLPOOL 39abfaa7881e34a6ed1cbcbcd700186910e6db7b980354f7f14442512c8ae2977234fbeb3164703fedf6bf5ed59a164ece716e7fcf942624a2f3c83b6d14da87
+DIST utop-1.19.tar.gz 104253 SHA256 fbfd0fd0d45f4bd85c11c4c96ba8f8d12cb89378c05a61bae9ae35b87eced11e SHA512 d2943f47f8e2e508a33e09b60aef03e43ae82ae90e2d9378887b109178dbea9e64cc989042c8f9b68dce5ba33bb0b6483cd3920a35939f6aa89458a2d84847df WHIRLPOOL f62e29c2da97c39d73d5ee287bdf690dbaf3f4aa8aa544ecf8e1db77096dbe4672584fe899f5a1c7f0cd3f4693f582f1693744b4e41a1daa69f80782b1c43fb9

diff --git a/dev-ml/utop/utop-1.19.ebuild b/dev-ml/utop/utop-1.19.ebuild
new file mode 100644
index 0000000..8da80eb
--- /dev/null
+++ b/dev-ml/utop/utop-1.19.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+OASIS_BUILD_DOCS=1
+inherit oasis elisp-common
+
+DESCRIPTION="A new toplevel for OCaml with completion and colorization"
+HOMEPAGE="https://github.com/diml/utop"
+SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="camlp4 emacs"
+
+DEPEND=">=dev-ml/lwt-2.4.0:=[react]
+	>=dev-ml/lambda-term-1.2:=
+	>=dev-ml/zed-1.2:=
+	>=dev-ml/cppo-1.0.1:=
+	emacs? ( virtual/emacs )
+	camlp4? ( || ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 ) )"
+RDEPEND="${DEPEND}"
+
+DOCS=( "CHANGES.md" "README.md" )
+SITEFILE="50${PN}-gentoo.el"
+
+src_prepare() {
+	sed -i "s/(\"utop.el.*)//" setup.ml
+}
+
+src_configure() {
+	oasis_configure_opts="$(use_enable camlp4)" \
+		oasis_src_configure
+}
+src_compile() {
+	oasis_src_compile
+	if use emacs; then
+		elisp-compile src/top/*.el
+	fi
+}
+
+src_install() {
+	oasis_src_install
+	if use emacs; then
+		elisp-install "${PN}" src/top/*.el src/top/*.elc || die
+		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
+	fi
+}
+
+pkg_postinst() {
+	use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+	use emacs && elisp-site-regen
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2016-04-13  8:30 Alexis Ballier
  0 siblings, 0 replies; 31+ messages in thread
From: Alexis Ballier @ 2016-04-13  8:30 UTC (permalink / raw
  To: gentoo-commits

commit:     afca81753088370a78a3b74c5e9e1da0a1638c29
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 13 08:04:27 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Apr 13 08:30:09 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afca8175

dev-ml/utop: remove old

Package-Manager: portage-2.2.28

 dev-ml/utop/Manifest           |  4 ---
 dev-ml/utop/utop-1.11.ebuild   | 53 -------------------------------------
 dev-ml/utop/utop-1.16.ebuild   | 59 ------------------------------------------
 dev-ml/utop/utop-1.18.1.ebuild | 59 ------------------------------------------
 dev-ml/utop/utop-1.18.ebuild   | 59 ------------------------------------------
 5 files changed, 234 deletions(-)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index 67667a9..929f82a 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,5 +1 @@
-DIST utop-1.11.tar.gz 102730 SHA256 07dff727de3db9b9014f7ece3e94f044b50f9f0896e982c99efaa5199d4ccf2d SHA512 b26513f081e1ef6a139d74ca63b7d96a16d89a03d2dd42ccb4bc21463104184147c636bf26e44116fbba2330b8116ff9ee884fcc042fac89356f65ac2b133a92 WHIRLPOOL 4f0ca27eae1d2bc5a382d35b4bcfd4ad0ab581727df700047a9b71dc15a8b609ee5262911216456cea7f7e7b45a3f441fe80288a67e18283eb13e11d2f9a12b0
-DIST utop-1.16.tar.gz 99563 SHA256 f2d0a2cc8ab74dbbec3e9b3f83eea097a8da482c3831392741657b16093a129d SHA512 a374d1974bd1c6a30544938dc3d19d10e38363f0ad51563fd151752cc2b2cbe4e9a0a782263daf93b58631d7c105f81f52767341a684e3efed2397056c7b993a WHIRLPOOL f53700540f3a068f0dba72b7511d607fafb5505b2cabeaad2ede8c69eba2c7d2c3949f266c23b35deab1500075ba7c727a9db7178ae72395f4c67a9d92dc3d65
-DIST utop-1.18.1.tar.gz 101718 SHA256 a8dae3d520a28eb0a57620d53901f523ee3da0a54bffb0e6364aa3da9c50f242 SHA512 d828f4b76dd3deba5d07d86fcc3d2e4513d35514517c56618c499f2405a7f8df7912097064f71b2591a3eb9da6890d90f2e11a8f38cf850391d09094c68e0fdc WHIRLPOOL f8c1ead6bc53133361bee5190c0deded86ac058be8ed4a8237820e6fcb534b24ff9281249bfc76ec620085c2ea61858e7a639e5cc4f6d823a1c5fef5c7315444
 DIST utop-1.18.2.tar.gz 101774 SHA256 f55c218d6a58577adaec2aaa68f01af653d96db7aea21bc483f89b97d4efbb38 SHA512 7c5365d2effe74c4db17ec2c3696db3c88582c3cdc64a4750fe308f1b33d8ff95d14fa039aa38ca92592aa2ff6bd99f88efcb8327a441ff0f111c99e56397b3f WHIRLPOOL 39abfaa7881e34a6ed1cbcbcd700186910e6db7b980354f7f14442512c8ae2977234fbeb3164703fedf6bf5ed59a164ece716e7fcf942624a2f3c83b6d14da87
-DIST utop-1.18.tar.gz 101673 SHA256 157f3883a3daf379ba7d67118e1e2a4d2d73e9c3461fe82219dff4fe662272a1 SHA512 b352ad9a91c1ad5214a7689ca2d71ae41c2891ea240d41620ce2778f10380116709e2d2575f56d972bb038eb0c2333253c2fd3482be1eb145b976a2922175086 WHIRLPOOL ffa1c46f90b66dca4c2c3d95a9abac4ba4a2087b2121a4eb7b3daeccae550db82f0894dedcc9169d5ec9fec83ccd2de727374664bb0f49ea4151fad28018e68a

diff --git a/dev-ml/utop/utop-1.11.ebuild b/dev-ml/utop/utop-1.11.ebuild
deleted file mode 100644
index 59f2291..0000000
--- a/dev-ml/utop/utop-1.11.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-inherit oasis elisp-common
-
-DESCRIPTION="A new toplevel for OCaml with completion and colorization"
-HOMEPAGE="https://github.com/diml/utop"
-SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="emacs"
-
-DEPEND=">=dev-ml/lwt-2.4.0:=[react]
-	>=dev-ml/lambda-term-1.2:=
-	>=dev-ml/zed-1.2:=
-	emacs? ( virtual/emacs )"
-RDEPEND="${DEPEND}"
-
-DOCS=( "CHANGES.md" "README.md" )
-SITEFILE="50${PN}-gentoo.el"
-
-src_prepare() {
-	sed -i "s/(\"utop.el.*)//" setup.ml
-}
-
-src_compile() {
-	oasis_src_compile
-	if use emacs; then
-		elisp-compile src/top/*.el
-	fi
-}
-
-src_install() {
-	oasis_src_install
-	if use emacs; then
-		elisp-install "${PN}" src/top/*.el src/top/*.elc || die
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
-	fi
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}

diff --git a/dev-ml/utop/utop-1.16.ebuild b/dev-ml/utop/utop-1.16.ebuild
deleted file mode 100644
index cef6f65..0000000
--- a/dev-ml/utop/utop-1.16.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-inherit oasis elisp-common
-
-DESCRIPTION="A new toplevel for OCaml with completion and colorization"
-HOMEPAGE="https://github.com/diml/utop"
-SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="camlp4 emacs"
-
-DEPEND=">=dev-ml/lwt-2.4.0:=[react]
-	>=dev-ml/lambda-term-1.2:=
-	>=dev-ml/zed-1.2:=
-	>=dev-ml/cppo-1.0.1:=
-	emacs? ( virtual/emacs )
-	camlp4? ( || ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 ) )"
-RDEPEND="${DEPEND}"
-
-DOCS=( "CHANGES.md" "README.md" )
-SITEFILE="50${PN}-gentoo.el"
-
-src_prepare() {
-	sed -i "s/(\"utop.el.*)//" setup.ml
-}
-
-src_configure() {
-	oasis_configure_opts="$(use_enable camlp4)" \
-		oasis_src_configure
-}
-src_compile() {
-	oasis_src_compile
-	if use emacs; then
-		elisp-compile src/top/*.el
-	fi
-}
-
-src_install() {
-	oasis_src_install
-	if use emacs; then
-		elisp-install "${PN}" src/top/*.el src/top/*.elc || die
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
-	fi
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}

diff --git a/dev-ml/utop/utop-1.18.1.ebuild b/dev-ml/utop/utop-1.18.1.ebuild
deleted file mode 100644
index 8da80eb..0000000
--- a/dev-ml/utop/utop-1.18.1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-inherit oasis elisp-common
-
-DESCRIPTION="A new toplevel for OCaml with completion and colorization"
-HOMEPAGE="https://github.com/diml/utop"
-SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="camlp4 emacs"
-
-DEPEND=">=dev-ml/lwt-2.4.0:=[react]
-	>=dev-ml/lambda-term-1.2:=
-	>=dev-ml/zed-1.2:=
-	>=dev-ml/cppo-1.0.1:=
-	emacs? ( virtual/emacs )
-	camlp4? ( || ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 ) )"
-RDEPEND="${DEPEND}"
-
-DOCS=( "CHANGES.md" "README.md" )
-SITEFILE="50${PN}-gentoo.el"
-
-src_prepare() {
-	sed -i "s/(\"utop.el.*)//" setup.ml
-}
-
-src_configure() {
-	oasis_configure_opts="$(use_enable camlp4)" \
-		oasis_src_configure
-}
-src_compile() {
-	oasis_src_compile
-	if use emacs; then
-		elisp-compile src/top/*.el
-	fi
-}
-
-src_install() {
-	oasis_src_install
-	if use emacs; then
-		elisp-install "${PN}" src/top/*.el src/top/*.elc || die
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
-	fi
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}

diff --git a/dev-ml/utop/utop-1.18.ebuild b/dev-ml/utop/utop-1.18.ebuild
deleted file mode 100644
index 8da80eb..0000000
--- a/dev-ml/utop/utop-1.18.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-inherit oasis elisp-common
-
-DESCRIPTION="A new toplevel for OCaml with completion and colorization"
-HOMEPAGE="https://github.com/diml/utop"
-SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="camlp4 emacs"
-
-DEPEND=">=dev-ml/lwt-2.4.0:=[react]
-	>=dev-ml/lambda-term-1.2:=
-	>=dev-ml/zed-1.2:=
-	>=dev-ml/cppo-1.0.1:=
-	emacs? ( virtual/emacs )
-	camlp4? ( || ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 ) )"
-RDEPEND="${DEPEND}"
-
-DOCS=( "CHANGES.md" "README.md" )
-SITEFILE="50${PN}-gentoo.el"
-
-src_prepare() {
-	sed -i "s/(\"utop.el.*)//" setup.ml
-}
-
-src_configure() {
-	oasis_configure_opts="$(use_enable camlp4)" \
-		oasis_src_configure
-}
-src_compile() {
-	oasis_src_compile
-	if use emacs; then
-		elisp-compile src/top/*.el
-	fi
-}
-
-src_install() {
-	oasis_src_install
-	if use emacs; then
-		elisp-install "${PN}" src/top/*.el src/top/*.elc || die
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
-	fi
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2016-04-20  7:59 Alexis Ballier
  0 siblings, 0 replies; 31+ messages in thread
From: Alexis Ballier @ 2016-04-20  7:59 UTC (permalink / raw
  To: gentoo-commits

commit:     4862a77006f0811c0a1f00b6cf1f7592e79e7743
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 20 07:59:08 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Apr 20 07:59:19 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4862a770

dev-ml/utop: bump to 1.19.1

Package-Manager: portage-2.2.28

 dev-ml/utop/Manifest           |  1 +
 dev-ml/utop/utop-1.19.1.ebuild | 59 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index 39d3145..f1e0162 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,2 +1,3 @@
 DIST utop-1.18.2.tar.gz 101774 SHA256 f55c218d6a58577adaec2aaa68f01af653d96db7aea21bc483f89b97d4efbb38 SHA512 7c5365d2effe74c4db17ec2c3696db3c88582c3cdc64a4750fe308f1b33d8ff95d14fa039aa38ca92592aa2ff6bd99f88efcb8327a441ff0f111c99e56397b3f WHIRLPOOL 39abfaa7881e34a6ed1cbcbcd700186910e6db7b980354f7f14442512c8ae2977234fbeb3164703fedf6bf5ed59a164ece716e7fcf942624a2f3c83b6d14da87
+DIST utop-1.19.1.tar.gz 104347 SHA256 dbda26873180dcd17be33be4fc600794f20454ff5ec080d0b1b7e6b0e5ded636 SHA512 1caf208b96bdae214a969e2551be428dfe9ba3ded4adb2a0ac38f2ef1a066f63fa3e4ad70fb960525c829ddf78911574b9192eba66465cb471692e975e9a2c93 WHIRLPOOL 95bb9123630272216245ea8d2f8131320f4864906a30af7be451962272fca5a83efb8adef5e507d7f49be995190c9b552b0660915755641dee9f818746c03e2c
 DIST utop-1.19.tar.gz 104253 SHA256 fbfd0fd0d45f4bd85c11c4c96ba8f8d12cb89378c05a61bae9ae35b87eced11e SHA512 d2943f47f8e2e508a33e09b60aef03e43ae82ae90e2d9378887b109178dbea9e64cc989042c8f9b68dce5ba33bb0b6483cd3920a35939f6aa89458a2d84847df WHIRLPOOL f62e29c2da97c39d73d5ee287bdf690dbaf3f4aa8aa544ecf8e1db77096dbe4672584fe899f5a1c7f0cd3f4693f582f1693744b4e41a1daa69f80782b1c43fb9

diff --git a/dev-ml/utop/utop-1.19.1.ebuild b/dev-ml/utop/utop-1.19.1.ebuild
new file mode 100644
index 0000000..8da80eb
--- /dev/null
+++ b/dev-ml/utop/utop-1.19.1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+OASIS_BUILD_DOCS=1
+inherit oasis elisp-common
+
+DESCRIPTION="A new toplevel for OCaml with completion and colorization"
+HOMEPAGE="https://github.com/diml/utop"
+SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="camlp4 emacs"
+
+DEPEND=">=dev-ml/lwt-2.4.0:=[react]
+	>=dev-ml/lambda-term-1.2:=
+	>=dev-ml/zed-1.2:=
+	>=dev-ml/cppo-1.0.1:=
+	emacs? ( virtual/emacs )
+	camlp4? ( || ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 ) )"
+RDEPEND="${DEPEND}"
+
+DOCS=( "CHANGES.md" "README.md" )
+SITEFILE="50${PN}-gentoo.el"
+
+src_prepare() {
+	sed -i "s/(\"utop.el.*)//" setup.ml
+}
+
+src_configure() {
+	oasis_configure_opts="$(use_enable camlp4)" \
+		oasis_src_configure
+}
+src_compile() {
+	oasis_src_compile
+	if use emacs; then
+		elisp-compile src/top/*.el
+	fi
+}
+
+src_install() {
+	oasis_src_install
+	if use emacs; then
+		elisp-install "${PN}" src/top/*.el src/top/*.elc || die
+		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
+	fi
+}
+
+pkg_postinst() {
+	use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+	use emacs && elisp-site-regen
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2016-04-30 17:17 Alexis Ballier
  0 siblings, 0 replies; 31+ messages in thread
From: Alexis Ballier @ 2016-04-30 17:17 UTC (permalink / raw
  To: gentoo-commits

commit:     0298fbdab399338b06881993005b0ed6dab8c287
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 30 17:17:30 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Apr 30 17:17:43 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0298fbda

dev-ml/utop: bump to 1.19.2

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 dev-ml/utop/Manifest           |  1 +
 dev-ml/utop/utop-1.19.2.ebuild | 59 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index f1e0162..67411ff 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,3 +1,4 @@
 DIST utop-1.18.2.tar.gz 101774 SHA256 f55c218d6a58577adaec2aaa68f01af653d96db7aea21bc483f89b97d4efbb38 SHA512 7c5365d2effe74c4db17ec2c3696db3c88582c3cdc64a4750fe308f1b33d8ff95d14fa039aa38ca92592aa2ff6bd99f88efcb8327a441ff0f111c99e56397b3f WHIRLPOOL 39abfaa7881e34a6ed1cbcbcd700186910e6db7b980354f7f14442512c8ae2977234fbeb3164703fedf6bf5ed59a164ece716e7fcf942624a2f3c83b6d14da87
 DIST utop-1.19.1.tar.gz 104347 SHA256 dbda26873180dcd17be33be4fc600794f20454ff5ec080d0b1b7e6b0e5ded636 SHA512 1caf208b96bdae214a969e2551be428dfe9ba3ded4adb2a0ac38f2ef1a066f63fa3e4ad70fb960525c829ddf78911574b9192eba66465cb471692e975e9a2c93 WHIRLPOOL 95bb9123630272216245ea8d2f8131320f4864906a30af7be451962272fca5a83efb8adef5e507d7f49be995190c9b552b0660915755641dee9f818746c03e2c
+DIST utop-1.19.2.tar.gz 104616 SHA256 509ab26f13cf5d0cf401fb0a313751ed19727b6dff65ef7df81ac05cf15cbe43 SHA512 4160b0576b1e860a54ecf8487bb9cd7259cc434d06a4da409671337bcc8342e4738cd5fa864ece54fa2b9f811597e8462556cf81d184d9d9c81e4463d76559c6 WHIRLPOOL aa608b95d8846fb48cafcea5d34a4a4fb984bf2265387378be1f3496afc63cbfcca6c2ca319503e7a942b81d1937acd44a9478256a652a32a12f584ca785f7d1
 DIST utop-1.19.tar.gz 104253 SHA256 fbfd0fd0d45f4bd85c11c4c96ba8f8d12cb89378c05a61bae9ae35b87eced11e SHA512 d2943f47f8e2e508a33e09b60aef03e43ae82ae90e2d9378887b109178dbea9e64cc989042c8f9b68dce5ba33bb0b6483cd3920a35939f6aa89458a2d84847df WHIRLPOOL f62e29c2da97c39d73d5ee287bdf690dbaf3f4aa8aa544ecf8e1db77096dbe4672584fe899f5a1c7f0cd3f4693f582f1693744b4e41a1daa69f80782b1c43fb9

diff --git a/dev-ml/utop/utop-1.19.2.ebuild b/dev-ml/utop/utop-1.19.2.ebuild
new file mode 100644
index 0000000..8da80eb
--- /dev/null
+++ b/dev-ml/utop/utop-1.19.2.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+OASIS_BUILD_DOCS=1
+inherit oasis elisp-common
+
+DESCRIPTION="A new toplevel for OCaml with completion and colorization"
+HOMEPAGE="https://github.com/diml/utop"
+SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="camlp4 emacs"
+
+DEPEND=">=dev-ml/lwt-2.4.0:=[react]
+	>=dev-ml/lambda-term-1.2:=
+	>=dev-ml/zed-1.2:=
+	>=dev-ml/cppo-1.0.1:=
+	emacs? ( virtual/emacs )
+	camlp4? ( || ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 ) )"
+RDEPEND="${DEPEND}"
+
+DOCS=( "CHANGES.md" "README.md" )
+SITEFILE="50${PN}-gentoo.el"
+
+src_prepare() {
+	sed -i "s/(\"utop.el.*)//" setup.ml
+}
+
+src_configure() {
+	oasis_configure_opts="$(use_enable camlp4)" \
+		oasis_src_configure
+}
+src_compile() {
+	oasis_src_compile
+	if use emacs; then
+		elisp-compile src/top/*.el
+	fi
+}
+
+src_install() {
+	oasis_src_install
+	if use emacs; then
+		elisp-install "${PN}" src/top/*.el src/top/*.elc || die
+		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
+	fi
+}
+
+pkg_postinst() {
+	use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+	use emacs && elisp-site-regen
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2016-06-23 11:32 Alexis Ballier
  0 siblings, 0 replies; 31+ messages in thread
From: Alexis Ballier @ 2016-06-23 11:32 UTC (permalink / raw
  To: gentoo-commits

commit:     3aae6ad8f990fcd55ceb46ae4de20a67ebf12ef0
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 23 11:32:14 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Jun 23 11:32:21 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3aae6ad8

dev-ml/utop: drop backward compat dep for camlp4

Package-Manager: portage-2.3.0_rc1

 dev-ml/utop/{utop-1.19.2.ebuild => utop-1.19.2-r1.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/utop/utop-1.19.2.ebuild b/dev-ml/utop/utop-1.19.2-r1.ebuild
similarity index 91%
rename from dev-ml/utop/utop-1.19.2.ebuild
rename to dev-ml/utop/utop-1.19.2-r1.ebuild
index 8da80eb..c451a6b 100644
--- a/dev-ml/utop/utop-1.19.2.ebuild
+++ b/dev-ml/utop/utop-1.19.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -21,7 +21,7 @@ DEPEND=">=dev-ml/lwt-2.4.0:=[react]
 	>=dev-ml/zed-1.2:=
 	>=dev-ml/cppo-1.0.1:=
 	emacs? ( virtual/emacs )
-	camlp4? ( || ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 ) )"
+	camlp4? ( dev-ml/camlp4:= )"
 RDEPEND="${DEPEND}"
 
 DOCS=( "CHANGES.md" "README.md" )


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2016-06-23 11:33 Alexis Ballier
  0 siblings, 0 replies; 31+ messages in thread
From: Alexis Ballier @ 2016-06-23 11:33 UTC (permalink / raw
  To: gentoo-commits

commit:     b39b106dc50c5ec0eaa7540fac688a25d08e0b3f
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 23 11:32:59 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Jun 23 11:32:59 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b39b106d

dev-ml/utop: remove old

Package-Manager: portage-2.3.0_rc1

 dev-ml/utop/Manifest           |  3 ---
 dev-ml/utop/utop-1.18.2.ebuild | 59 ------------------------------------------
 dev-ml/utop/utop-1.19.1.ebuild | 59 ------------------------------------------
 dev-ml/utop/utop-1.19.ebuild   | 59 ------------------------------------------
 4 files changed, 180 deletions(-)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index 67411ff..25af6ba 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,4 +1 @@
-DIST utop-1.18.2.tar.gz 101774 SHA256 f55c218d6a58577adaec2aaa68f01af653d96db7aea21bc483f89b97d4efbb38 SHA512 7c5365d2effe74c4db17ec2c3696db3c88582c3cdc64a4750fe308f1b33d8ff95d14fa039aa38ca92592aa2ff6bd99f88efcb8327a441ff0f111c99e56397b3f WHIRLPOOL 39abfaa7881e34a6ed1cbcbcd700186910e6db7b980354f7f14442512c8ae2977234fbeb3164703fedf6bf5ed59a164ece716e7fcf942624a2f3c83b6d14da87
-DIST utop-1.19.1.tar.gz 104347 SHA256 dbda26873180dcd17be33be4fc600794f20454ff5ec080d0b1b7e6b0e5ded636 SHA512 1caf208b96bdae214a969e2551be428dfe9ba3ded4adb2a0ac38f2ef1a066f63fa3e4ad70fb960525c829ddf78911574b9192eba66465cb471692e975e9a2c93 WHIRLPOOL 95bb9123630272216245ea8d2f8131320f4864906a30af7be451962272fca5a83efb8adef5e507d7f49be995190c9b552b0660915755641dee9f818746c03e2c
 DIST utop-1.19.2.tar.gz 104616 SHA256 509ab26f13cf5d0cf401fb0a313751ed19727b6dff65ef7df81ac05cf15cbe43 SHA512 4160b0576b1e860a54ecf8487bb9cd7259cc434d06a4da409671337bcc8342e4738cd5fa864ece54fa2b9f811597e8462556cf81d184d9d9c81e4463d76559c6 WHIRLPOOL aa608b95d8846fb48cafcea5d34a4a4fb984bf2265387378be1f3496afc63cbfcca6c2ca319503e7a942b81d1937acd44a9478256a652a32a12f584ca785f7d1
-DIST utop-1.19.tar.gz 104253 SHA256 fbfd0fd0d45f4bd85c11c4c96ba8f8d12cb89378c05a61bae9ae35b87eced11e SHA512 d2943f47f8e2e508a33e09b60aef03e43ae82ae90e2d9378887b109178dbea9e64cc989042c8f9b68dce5ba33bb0b6483cd3920a35939f6aa89458a2d84847df WHIRLPOOL f62e29c2da97c39d73d5ee287bdf690dbaf3f4aa8aa544ecf8e1db77096dbe4672584fe899f5a1c7f0cd3f4693f582f1693744b4e41a1daa69f80782b1c43fb9

diff --git a/dev-ml/utop/utop-1.18.2.ebuild b/dev-ml/utop/utop-1.18.2.ebuild
deleted file mode 100644
index 8da80eb..0000000
--- a/dev-ml/utop/utop-1.18.2.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-inherit oasis elisp-common
-
-DESCRIPTION="A new toplevel for OCaml with completion and colorization"
-HOMEPAGE="https://github.com/diml/utop"
-SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="camlp4 emacs"
-
-DEPEND=">=dev-ml/lwt-2.4.0:=[react]
-	>=dev-ml/lambda-term-1.2:=
-	>=dev-ml/zed-1.2:=
-	>=dev-ml/cppo-1.0.1:=
-	emacs? ( virtual/emacs )
-	camlp4? ( || ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 ) )"
-RDEPEND="${DEPEND}"
-
-DOCS=( "CHANGES.md" "README.md" )
-SITEFILE="50${PN}-gentoo.el"
-
-src_prepare() {
-	sed -i "s/(\"utop.el.*)//" setup.ml
-}
-
-src_configure() {
-	oasis_configure_opts="$(use_enable camlp4)" \
-		oasis_src_configure
-}
-src_compile() {
-	oasis_src_compile
-	if use emacs; then
-		elisp-compile src/top/*.el
-	fi
-}
-
-src_install() {
-	oasis_src_install
-	if use emacs; then
-		elisp-install "${PN}" src/top/*.el src/top/*.elc || die
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
-	fi
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}

diff --git a/dev-ml/utop/utop-1.19.1.ebuild b/dev-ml/utop/utop-1.19.1.ebuild
deleted file mode 100644
index 8da80eb..0000000
--- a/dev-ml/utop/utop-1.19.1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-inherit oasis elisp-common
-
-DESCRIPTION="A new toplevel for OCaml with completion and colorization"
-HOMEPAGE="https://github.com/diml/utop"
-SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="camlp4 emacs"
-
-DEPEND=">=dev-ml/lwt-2.4.0:=[react]
-	>=dev-ml/lambda-term-1.2:=
-	>=dev-ml/zed-1.2:=
-	>=dev-ml/cppo-1.0.1:=
-	emacs? ( virtual/emacs )
-	camlp4? ( || ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 ) )"
-RDEPEND="${DEPEND}"
-
-DOCS=( "CHANGES.md" "README.md" )
-SITEFILE="50${PN}-gentoo.el"
-
-src_prepare() {
-	sed -i "s/(\"utop.el.*)//" setup.ml
-}
-
-src_configure() {
-	oasis_configure_opts="$(use_enable camlp4)" \
-		oasis_src_configure
-}
-src_compile() {
-	oasis_src_compile
-	if use emacs; then
-		elisp-compile src/top/*.el
-	fi
-}
-
-src_install() {
-	oasis_src_install
-	if use emacs; then
-		elisp-install "${PN}" src/top/*.el src/top/*.elc || die
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
-	fi
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}

diff --git a/dev-ml/utop/utop-1.19.ebuild b/dev-ml/utop/utop-1.19.ebuild
deleted file mode 100644
index 8da80eb..0000000
--- a/dev-ml/utop/utop-1.19.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-inherit oasis elisp-common
-
-DESCRIPTION="A new toplevel for OCaml with completion and colorization"
-HOMEPAGE="https://github.com/diml/utop"
-SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="camlp4 emacs"
-
-DEPEND=">=dev-ml/lwt-2.4.0:=[react]
-	>=dev-ml/lambda-term-1.2:=
-	>=dev-ml/zed-1.2:=
-	>=dev-ml/cppo-1.0.1:=
-	emacs? ( virtual/emacs )
-	camlp4? ( || ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 ) )"
-RDEPEND="${DEPEND}"
-
-DOCS=( "CHANGES.md" "README.md" )
-SITEFILE="50${PN}-gentoo.el"
-
-src_prepare() {
-	sed -i "s/(\"utop.el.*)//" setup.ml
-}
-
-src_configure() {
-	oasis_configure_opts="$(use_enable camlp4)" \
-		oasis_src_configure
-}
-src_compile() {
-	oasis_src_compile
-	if use emacs; then
-		elisp-compile src/top/*.el
-	fi
-}
-
-src_install() {
-	oasis_src_install
-	if use emacs; then
-		elisp-install "${PN}" src/top/*.el src/top/*.elc || die
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
-	fi
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2016-08-16 10:46 Alexis Ballier
  0 siblings, 0 replies; 31+ messages in thread
From: Alexis Ballier @ 2016-08-16 10:46 UTC (permalink / raw
  To: gentoo-commits

commit:     f216a6d03e19c7d6f2461cb7c4ffddc35b5b8811
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 16 10:33:45 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Aug 16 10:45:56 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f216a6d0

dev-ml/utop: bump to 1.19.3

Package-Manager: portage-2.3.0

 dev-ml/utop/Manifest           |  1 +
 dev-ml/utop/utop-1.19.3.ebuild | 59 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index 25af6ba..130679b 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1 +1,2 @@
 DIST utop-1.19.2.tar.gz 104616 SHA256 509ab26f13cf5d0cf401fb0a313751ed19727b6dff65ef7df81ac05cf15cbe43 SHA512 4160b0576b1e860a54ecf8487bb9cd7259cc434d06a4da409671337bcc8342e4738cd5fa864ece54fa2b9f811597e8462556cf81d184d9d9c81e4463d76559c6 WHIRLPOOL aa608b95d8846fb48cafcea5d34a4a4fb984bf2265387378be1f3496afc63cbfcca6c2ca319503e7a942b81d1937acd44a9478256a652a32a12f584ca785f7d1
+DIST utop-1.19.3.tar.gz 105213 SHA256 9dbca07b8c55700473cca1d9dd975abb9c6cd03e715dec4857f1249bee16e09b SHA512 97b3fec8b6f930efa742230058eba6fb846900d71e5758903dcefe03fa08e93b54e32642a5b8b6ad02aed7e81ccd6146e87a92805eb74aa4fae275a1188818cd WHIRLPOOL 470e5739639440b11905fbd4f755643aa3117f9fe76690723df7e2fba07e1bdcfcb7ad796a9dc2d00b3be3a6f0eba1afa335ce826a8c715ac40681ad38165599

diff --git a/dev-ml/utop/utop-1.19.3.ebuild b/dev-ml/utop/utop-1.19.3.ebuild
new file mode 100644
index 0000000..c451a6b
--- /dev/null
+++ b/dev-ml/utop/utop-1.19.3.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+OASIS_BUILD_DOCS=1
+inherit oasis elisp-common
+
+DESCRIPTION="A new toplevel for OCaml with completion and colorization"
+HOMEPAGE="https://github.com/diml/utop"
+SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="camlp4 emacs"
+
+DEPEND=">=dev-ml/lwt-2.4.0:=[react]
+	>=dev-ml/lambda-term-1.2:=
+	>=dev-ml/zed-1.2:=
+	>=dev-ml/cppo-1.0.1:=
+	emacs? ( virtual/emacs )
+	camlp4? ( dev-ml/camlp4:= )"
+RDEPEND="${DEPEND}"
+
+DOCS=( "CHANGES.md" "README.md" )
+SITEFILE="50${PN}-gentoo.el"
+
+src_prepare() {
+	sed -i "s/(\"utop.el.*)//" setup.ml
+}
+
+src_configure() {
+	oasis_configure_opts="$(use_enable camlp4)" \
+		oasis_src_configure
+}
+src_compile() {
+	oasis_src_compile
+	if use emacs; then
+		elisp-compile src/top/*.el
+	fi
+}
+
+src_install() {
+	oasis_src_install
+	if use emacs; then
+		elisp-install "${PN}" src/top/*.el src/top/*.elc || die
+		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
+	fi
+}
+
+pkg_postinst() {
+	use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+	use emacs && elisp-site-regen
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2016-10-14 13:16 Alexis Ballier
  0 siblings, 0 replies; 31+ messages in thread
From: Alexis Ballier @ 2016-10-14 13:16 UTC (permalink / raw
  To: gentoo-commits

commit:     e4d0e6835b9033f275683d20659b2e907ed6a000
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 14 13:16:36 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Oct 14 13:16:36 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4d0e683

dev-ml/utop: do not try to install an emacs file that doesnt exist, bug #586512

Package-Manager: portage-2.3.2

 dev-ml/utop/utop-1.19.3.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-ml/utop/utop-1.19.3.ebuild b/dev-ml/utop/utop-1.19.3.ebuild
index c451a6b..f53ad90 100644
--- a/dev-ml/utop/utop-1.19.3.ebuild
+++ b/dev-ml/utop/utop-1.19.3.ebuild
@@ -46,7 +46,6 @@ src_install() {
 	oasis_src_install
 	if use emacs; then
 		elisp-install "${PN}" src/top/*.el src/top/*.elc || die
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
 	fi
 }
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2016-10-14 13:16 Alexis Ballier
  0 siblings, 0 replies; 31+ messages in thread
From: Alexis Ballier @ 2016-10-14 13:16 UTC (permalink / raw
  To: gentoo-commits

commit:     94e42a80a94f6c6bffffd97572e56a1025bc16b0
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 14 13:12:34 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Oct 14 13:12:34 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94e42a80

dev-ml/utop: remove old

Package-Manager: portage-2.3.2

 dev-ml/utop/Manifest              |  1 -
 dev-ml/utop/utop-1.19.2-r1.ebuild | 59 ---------------------------------------
 2 files changed, 60 deletions(-)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index 130679b..4ee8df4 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,2 +1 @@
-DIST utop-1.19.2.tar.gz 104616 SHA256 509ab26f13cf5d0cf401fb0a313751ed19727b6dff65ef7df81ac05cf15cbe43 SHA512 4160b0576b1e860a54ecf8487bb9cd7259cc434d06a4da409671337bcc8342e4738cd5fa864ece54fa2b9f811597e8462556cf81d184d9d9c81e4463d76559c6 WHIRLPOOL aa608b95d8846fb48cafcea5d34a4a4fb984bf2265387378be1f3496afc63cbfcca6c2ca319503e7a942b81d1937acd44a9478256a652a32a12f584ca785f7d1
 DIST utop-1.19.3.tar.gz 105213 SHA256 9dbca07b8c55700473cca1d9dd975abb9c6cd03e715dec4857f1249bee16e09b SHA512 97b3fec8b6f930efa742230058eba6fb846900d71e5758903dcefe03fa08e93b54e32642a5b8b6ad02aed7e81ccd6146e87a92805eb74aa4fae275a1188818cd WHIRLPOOL 470e5739639440b11905fbd4f755643aa3117f9fe76690723df7e2fba07e1bdcfcb7ad796a9dc2d00b3be3a6f0eba1afa335ce826a8c715ac40681ad38165599

diff --git a/dev-ml/utop/utop-1.19.2-r1.ebuild b/dev-ml/utop/utop-1.19.2-r1.ebuild
deleted file mode 100644
index c451a6b..00000000
--- a/dev-ml/utop/utop-1.19.2-r1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-inherit oasis elisp-common
-
-DESCRIPTION="A new toplevel for OCaml with completion and colorization"
-HOMEPAGE="https://github.com/diml/utop"
-SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="camlp4 emacs"
-
-DEPEND=">=dev-ml/lwt-2.4.0:=[react]
-	>=dev-ml/lambda-term-1.2:=
-	>=dev-ml/zed-1.2:=
-	>=dev-ml/cppo-1.0.1:=
-	emacs? ( virtual/emacs )
-	camlp4? ( dev-ml/camlp4:= )"
-RDEPEND="${DEPEND}"
-
-DOCS=( "CHANGES.md" "README.md" )
-SITEFILE="50${PN}-gentoo.el"
-
-src_prepare() {
-	sed -i "s/(\"utop.el.*)//" setup.ml
-}
-
-src_configure() {
-	oasis_configure_opts="$(use_enable camlp4)" \
-		oasis_src_configure
-}
-src_compile() {
-	oasis_src_compile
-	if use emacs; then
-		elisp-compile src/top/*.el
-	fi
-}
-
-src_install() {
-	oasis_src_install
-	if use emacs; then
-		elisp-install "${PN}" src/top/*.el src/top/*.elc || die
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
-	fi
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2017-04-20 13:24 Alexis Ballier
  0 siblings, 0 replies; 31+ messages in thread
From: Alexis Ballier @ 2017-04-20 13:24 UTC (permalink / raw
  To: gentoo-commits

commit:     3e4846b1f73c4291b695dbacc1c7170d310ccaeb
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 20 13:19:40 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Apr 20 13:24:05 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e4846b1

dev-ml/utop: switch to lwt_react deps

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-ml/utop/utop-1.19.3.ebuild | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-ml/utop/utop-1.19.3.ebuild b/dev-ml/utop/utop-1.19.3.ebuild
index a15d4f9ab3f..e3ea9211b86 100644
--- a/dev-ml/utop/utop-1.19.3.ebuild
+++ b/dev-ml/utop/utop-1.19.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -15,7 +15,9 @@ SLOT="0/${PV}"
 KEYWORDS="~amd64"
 IUSE="camlp4 emacs"
 
-DEPEND=">=dev-ml/lwt-2.4.0:=[react]
+DEPEND="
+	>=dev-ml/lwt-2.4.0:=
+	dev-ml/lwt_react:=
 	>=dev-ml/lambda-term-1.2:=
 	>=dev-ml/zed-1.2:=
 	>=dev-ml/cppo-1.0.1:=


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2017-05-30  7:00 Alexis Ballier
  0 siblings, 0 replies; 31+ messages in thread
From: Alexis Ballier @ 2017-05-30  7:00 UTC (permalink / raw
  To: gentoo-commits

commit:     f10c5c7ed05f66a90d053c5ca7c9c65690592e40
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon May 29 08:01:21 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue May 30 06:56:24 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f10c5c7e

dev-ml/utop: bump to 2.0.0

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/utop/Manifest          |  1 +
 dev-ml/utop/utop-2.0.0.ebuild | 40 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index 4ee8df4766e..cbde3cb1891 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1 +1,2 @@
 DIST utop-1.19.3.tar.gz 105213 SHA256 9dbca07b8c55700473cca1d9dd975abb9c6cd03e715dec4857f1249bee16e09b SHA512 97b3fec8b6f930efa742230058eba6fb846900d71e5758903dcefe03fa08e93b54e32642a5b8b6ad02aed7e81ccd6146e87a92805eb74aa4fae275a1188818cd WHIRLPOOL 470e5739639440b11905fbd4f755643aa3117f9fe76690723df7e2fba07e1bdcfcb7ad796a9dc2d00b3be3a6f0eba1afa335ce826a8c715ac40681ad38165599
+DIST utop-2.0.0.tar.gz 57421 SHA256 0a69e5ec055db223cf878d7fdda3b389dc5d42649cc99b5877db507767ce52b6 SHA512 12def269f18be292645d6339f80ffe85823d8095940acb57a03f99ea3f2fe2559662921e3a38d6381ec7246245164b5e2c6b5fc843bdb4fd07ad2377c73da207 WHIRLPOOL 8baf739295132c785d55001bba2aabe24e0f4b3e78214be3a3ac19ffa8baa80ab513d31225500f2dc18018284267be6a235d012f32d7e6c68c829e98358f1410

diff --git a/dev-ml/utop/utop-2.0.0.ebuild b/dev-ml/utop/utop-2.0.0.ebuild
new file mode 100644
index 00000000000..8418100ed7f
--- /dev/null
+++ b/dev-ml/utop/utop-2.0.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit findlib
+
+DESCRIPTION="A new toplevel for OCaml with completion and colorization"
+HOMEPAGE="https://github.com/diml/utop"
+SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+	dev-lang/ocaml:=
+	>=dev-ml/lwt-2.4.0:=
+	dev-ml/lwt_react:=
+	>=dev-ml/lambda-term-1.2:=
+	>=dev-ml/zed-1.2:=
+	>=dev-ml/cppo-1.0.1:=
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+	dev-ml/opam
+	dev-ml/jbuilder"
+
+DOCS=( "CHANGES.md" "README.md" )
+SITEFILE="50${PN}-gentoo.el"
+
+src_install() {
+	opam-installer -i \
+		--prefix="${ED}/usr" \
+		--libdir="${D}/$(ocamlc -where)" \
+		--docdir="${ED}/usr/share/doc/${PF}" \
+		--mandir="${ED}/usr/share/man" \
+		${PN}.install || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2017-05-30  7:00 Alexis Ballier
  0 siblings, 0 replies; 31+ messages in thread
From: Alexis Ballier @ 2017-05-30  7:00 UTC (permalink / raw
  To: gentoo-commits

commit:     4bb0bb204f39a992d3fbffe4d0e252e0c15931c0
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon May 29 12:58:21 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue May 30 06:56:25 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bb0bb20

dev-ml/utop: add missing := dep on findlib

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/utop/utop-2.0.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-ml/utop/utop-2.0.0.ebuild b/dev-ml/utop/utop-2.0.0.ebuild
index 8418100ed7f..3bfacb103f4 100644
--- a/dev-ml/utop/utop-2.0.0.ebuild
+++ b/dev-ml/utop/utop-2.0.0.ebuild
@@ -21,6 +21,7 @@ DEPEND="
 	>=dev-ml/lambda-term-1.2:=
 	>=dev-ml/zed-1.2:=
 	>=dev-ml/cppo-1.0.1:=
+	dev-ml/findlib:=
 "
 RDEPEND="${DEPEND}"
 DEPEND="${DEPEND}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2017-05-30 18:08 Alexis Ballier
  0 siblings, 0 replies; 31+ messages in thread
From: Alexis Ballier @ 2017-05-30 18:08 UTC (permalink / raw
  To: gentoo-commits

commit:     110cc72b82a2706237d5d9ae5ea6e3fc50c75fcd
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue May 30 14:37:45 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue May 30 18:08:29 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=110cc72b

dev-ml/utop: bump to 2.0.1

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/utop/Manifest          |  1 +
 dev-ml/utop/utop-2.0.1.ebuild | 41 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index cbde3cb1891..5810adf7392 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,2 +1,3 @@
 DIST utop-1.19.3.tar.gz 105213 SHA256 9dbca07b8c55700473cca1d9dd975abb9c6cd03e715dec4857f1249bee16e09b SHA512 97b3fec8b6f930efa742230058eba6fb846900d71e5758903dcefe03fa08e93b54e32642a5b8b6ad02aed7e81ccd6146e87a92805eb74aa4fae275a1188818cd WHIRLPOOL 470e5739639440b11905fbd4f755643aa3117f9fe76690723df7e2fba07e1bdcfcb7ad796a9dc2d00b3be3a6f0eba1afa335ce826a8c715ac40681ad38165599
 DIST utop-2.0.0.tar.gz 57421 SHA256 0a69e5ec055db223cf878d7fdda3b389dc5d42649cc99b5877db507767ce52b6 SHA512 12def269f18be292645d6339f80ffe85823d8095940acb57a03f99ea3f2fe2559662921e3a38d6381ec7246245164b5e2c6b5fc843bdb4fd07ad2377c73da207 WHIRLPOOL 8baf739295132c785d55001bba2aabe24e0f4b3e78214be3a3ac19ffa8baa80ab513d31225500f2dc18018284267be6a235d012f32d7e6c68c829e98358f1410
+DIST utop-2.0.1.tar.gz 57523 SHA256 5a93793a3a33724716bdb8e6829eaa85a792c5f5939eb86f5d8bbf1df85f42ec SHA512 66e7858a44ddd038f08073f9530c790f3ad44134899793c9f5e689d0e1786d2e2751bf38c6be33979292942b00dd6ff2db421025e12f49e05c4a694df36d23e3 WHIRLPOOL bfb06654e52f124739eeeb1568157d6377f8749eddaaf5c0761056da5754a486f9db0f89a21d60c1030be88400bd1cf5782c58337421c56412ea8b5b7631ed9f

diff --git a/dev-ml/utop/utop-2.0.1.ebuild b/dev-ml/utop/utop-2.0.1.ebuild
new file mode 100644
index 00000000000..3bfacb103f4
--- /dev/null
+++ b/dev-ml/utop/utop-2.0.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit findlib
+
+DESCRIPTION="A new toplevel for OCaml with completion and colorization"
+HOMEPAGE="https://github.com/diml/utop"
+SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+	dev-lang/ocaml:=
+	>=dev-ml/lwt-2.4.0:=
+	dev-ml/lwt_react:=
+	>=dev-ml/lambda-term-1.2:=
+	>=dev-ml/zed-1.2:=
+	>=dev-ml/cppo-1.0.1:=
+	dev-ml/findlib:=
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+	dev-ml/opam
+	dev-ml/jbuilder"
+
+DOCS=( "CHANGES.md" "README.md" )
+SITEFILE="50${PN}-gentoo.el"
+
+src_install() {
+	opam-installer -i \
+		--prefix="${ED}/usr" \
+		--libdir="${D}/$(ocamlc -where)" \
+		--docdir="${ED}/usr/share/doc/${PF}" \
+		--mandir="${ED}/usr/share/man" \
+		${PN}.install || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2017-05-31 18:00 Alexis Ballier
  0 siblings, 0 replies; 31+ messages in thread
From: Alexis Ballier @ 2017-05-31 18:00 UTC (permalink / raw
  To: gentoo-commits

commit:     b5e2039b2781d02df1a5fbf5e6748d5db1686a3a
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed May 31 17:59:53 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed May 31 18:00:33 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5e2039b

dev-ml/utop: remove old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/utop/Manifest           |  2 --
 dev-ml/utop/metadata.xml       |  3 ---
 dev-ml/utop/utop-1.19.3.ebuild | 59 ------------------------------------------
 dev-ml/utop/utop-2.0.0.ebuild  | 41 -----------------------------
 4 files changed, 105 deletions(-)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index 5810adf7392..9f035a497e8 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,3 +1 @@
-DIST utop-1.19.3.tar.gz 105213 SHA256 9dbca07b8c55700473cca1d9dd975abb9c6cd03e715dec4857f1249bee16e09b SHA512 97b3fec8b6f930efa742230058eba6fb846900d71e5758903dcefe03fa08e93b54e32642a5b8b6ad02aed7e81ccd6146e87a92805eb74aa4fae275a1188818cd WHIRLPOOL 470e5739639440b11905fbd4f755643aa3117f9fe76690723df7e2fba07e1bdcfcb7ad796a9dc2d00b3be3a6f0eba1afa335ce826a8c715ac40681ad38165599
-DIST utop-2.0.0.tar.gz 57421 SHA256 0a69e5ec055db223cf878d7fdda3b389dc5d42649cc99b5877db507767ce52b6 SHA512 12def269f18be292645d6339f80ffe85823d8095940acb57a03f99ea3f2fe2559662921e3a38d6381ec7246245164b5e2c6b5fc843bdb4fd07ad2377c73da207 WHIRLPOOL 8baf739295132c785d55001bba2aabe24e0f4b3e78214be3a3ac19ffa8baa80ab513d31225500f2dc18018284267be6a235d012f32d7e6c68c829e98358f1410
 DIST utop-2.0.1.tar.gz 57523 SHA256 5a93793a3a33724716bdb8e6829eaa85a792c5f5939eb86f5d8bbf1df85f42ec SHA512 66e7858a44ddd038f08073f9530c790f3ad44134899793c9f5e689d0e1786d2e2751bf38c6be33979292942b00dd6ff2db421025e12f49e05c4a694df36d23e3 WHIRLPOOL bfb06654e52f124739eeeb1568157d6377f8749eddaaf5c0761056da5754a486f9db0f89a21d60c1030be88400bd1cf5782c58337421c56412ea8b5b7631ed9f

diff --git a/dev-ml/utop/metadata.xml b/dev-ml/utop/metadata.xml
index 8bec45448d6..7c8000acfe7 100644
--- a/dev-ml/utop/metadata.xml
+++ b/dev-ml/utop/metadata.xml
@@ -5,9 +5,6 @@
     <email>ml@gentoo.org</email>
     <name>Gentoo ML Project</name>
   </maintainer>
-  <use>
-    <flag name="camlp4">Enables camlp4 support.</flag>
-  </use>
   <upstream>
     <remote-id type="github">diml/utop</remote-id>
   </upstream>

diff --git a/dev-ml/utop/utop-1.19.3.ebuild b/dev-ml/utop/utop-1.19.3.ebuild
deleted file mode 100644
index e3ea9211b86..00000000000
--- a/dev-ml/utop/utop-1.19.3.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-inherit oasis elisp-common
-
-DESCRIPTION="A new toplevel for OCaml with completion and colorization"
-HOMEPAGE="https://github.com/diml/utop"
-SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="camlp4 emacs"
-
-DEPEND="
-	>=dev-ml/lwt-2.4.0:=
-	dev-ml/lwt_react:=
-	>=dev-ml/lambda-term-1.2:=
-	>=dev-ml/zed-1.2:=
-	>=dev-ml/cppo-1.0.1:=
-	emacs? ( virtual/emacs )
-	camlp4? ( dev-ml/camlp4:= )"
-RDEPEND="${DEPEND}"
-
-DOCS=( "CHANGES.md" "README.md" )
-SITEFILE="50${PN}-gentoo.el"
-
-src_prepare() {
-	sed -i "s/(\"utop.el.*)//" setup.ml
-}
-
-src_configure() {
-	oasis_configure_opts="$(use_enable camlp4)" \
-		oasis_src_configure
-}
-src_compile() {
-	oasis_src_compile
-	if use emacs; then
-		elisp-compile src/top/*.el
-	fi
-}
-
-src_install() {
-	oasis_src_install
-	if use emacs; then
-		elisp-install "${PN}" src/top/*.el src/top/*.elc || die
-	fi
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}

diff --git a/dev-ml/utop/utop-2.0.0.ebuild b/dev-ml/utop/utop-2.0.0.ebuild
deleted file mode 100644
index 3bfacb103f4..00000000000
--- a/dev-ml/utop/utop-2.0.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit findlib
-
-DESCRIPTION="A new toplevel for OCaml with completion and colorization"
-HOMEPAGE="https://github.com/diml/utop"
-SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
-	dev-lang/ocaml:=
-	>=dev-ml/lwt-2.4.0:=
-	dev-ml/lwt_react:=
-	>=dev-ml/lambda-term-1.2:=
-	>=dev-ml/zed-1.2:=
-	>=dev-ml/cppo-1.0.1:=
-	dev-ml/findlib:=
-"
-RDEPEND="${DEPEND}"
-DEPEND="${DEPEND}
-	dev-ml/opam
-	dev-ml/jbuilder"
-
-DOCS=( "CHANGES.md" "README.md" )
-SITEFILE="50${PN}-gentoo.el"
-
-src_install() {
-	opam-installer -i \
-		--prefix="${ED}/usr" \
-		--libdir="${D}/$(ocamlc -where)" \
-		--docdir="${ED}/usr/share/doc/${PF}" \
-		--mandir="${ED}/usr/share/man" \
-		${PN}.install || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2017-05-31 18:00 Alexis Ballier
  0 siblings, 0 replies; 31+ messages in thread
From: Alexis Ballier @ 2017-05-31 18:00 UTC (permalink / raw
  To: gentoo-commits

commit:     9ef1df60aafb9dfad9a035203efa879ca00f7820
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed May 31 18:00:24 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed May 31 18:00:33 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ef1df60

dev-ml/utop: bump findlib dep, bug #620264

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/utop/utop-2.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/utop/utop-2.0.1.ebuild b/dev-ml/utop/utop-2.0.1.ebuild
index 3bfacb103f4..90056da08e8 100644
--- a/dev-ml/utop/utop-2.0.1.ebuild
+++ b/dev-ml/utop/utop-2.0.1.ebuild
@@ -21,7 +21,7 @@ DEPEND="
 	>=dev-ml/lambda-term-1.2:=
 	>=dev-ml/zed-1.2:=
 	>=dev-ml/cppo-1.0.1:=
-	dev-ml/findlib:=
+	>=dev-ml/findlib-1.7.2:=
 "
 RDEPEND="${DEPEND}"
 DEPEND="${DEPEND}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2021-12-08  2:13 Maciej Barć
  0 siblings, 0 replies; 31+ messages in thread
From: Maciej Barć @ 2021-12-08  2:13 UTC (permalink / raw
  To: gentoo-commits

commit:     7f54a890eef40aca225338e6eb8fa71ab881712f
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Wed Dec  8 00:15:20 2021 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Wed Dec  8 02:13:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f54a890

dev-ml/utop: new package; add version 2.8.0

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-ml/utop/Manifest          |  1 +
 dev-ml/utop/metadata.xml      | 19 +++++++++++++++++++
 dev-ml/utop/utop-2.8.0.ebuild | 27 +++++++++++++++++++++++++++
 3 files changed, 47 insertions(+)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
new file mode 100644
index 000000000000..0820c2287818
--- /dev/null
+++ b/dev-ml/utop/Manifest
@@ -0,0 +1 @@
+DIST utop-2.8.0.tar.gz 414059 BLAKE2B f94cc9a2e87d5341b1d7231574b1e0d8b179e600640281529ecfd2ce8827b9145d73030ea1ec59b20430d34155087f6d910c698c75d7566145c9db3a3ecbf872 SHA512 cf323249aa9a747081b3e39e8e8b99b69557082beb244dd0a28d64c6d11e3c03427c22da4fd364e9ae7f5d83d12ca3d2d48b9f4b6697ec704d486f3c23163dba

diff --git a/dev-ml/utop/metadata.xml b/dev-ml/utop/metadata.xml
new file mode 100644
index 000000000000..575a666b2394
--- /dev/null
+++ b/dev-ml/utop/metadata.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+  <maintainer type="project">
+    <email>ml@gentoo.org</email>
+    <name>ML</name>
+  </maintainer>
+  <longdescription>
+    utop is an improved toplevel (i.e., Read-Eval-Print Loop or REPL) for
+    OCaml. It can run in a terminal or in Emacs. It supports line edition,
+    history, real-time and context sensitive completion, colors, and more.
+    It integrates with the Tuareg mode in Emacs.
+  </longdescription>
+  <upstream>
+    <bugs-to>https://github.com/ocaml-community/utop/issues/</bugs-to>
+    <remote-id type="github">ocaml-community/utop</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/dev-ml/utop/utop-2.8.0.ebuild b/dev-ml/utop/utop-2.8.0.ebuild
new file mode 100644
index 000000000000..d5b493a8c2cf
--- /dev/null
+++ b/dev-ml/utop/utop-2.8.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit dune
+
+DESCRIPTION="Universal toplevel for OCaml"
+HOMEPAGE="https://github.com/ocaml-community/utop"
+SRC_URI="https://github.com/ocaml-community/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ocamlopt"
+
+RDEPEND="
+	dev-ml/camomile:=
+	dev-ml/lambda-term:=
+	dev-ml/lwt:=
+	dev-ml/react:=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	dev-ml/cppo
+	dev-ml/findlib
+"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2021-12-10  1:06 Maciej Barć
  0 siblings, 0 replies; 31+ messages in thread
From: Maciej Barć @ 2021-12-10  1:06 UTC (permalink / raw
  To: gentoo-commits

commit:     0a722a36b0a9ec5870e5c3097149591b71626828
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 10 01:06:43 2021 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Fri Dec 10 01:06:56 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a722a36

dev-ml/utop: bump to 2.9.0

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-ml/utop/Manifest          |  1 +
 dev-ml/utop/utop-2.9.0.ebuild | 27 +++++++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index 0820c2287818..3d7f3f9b4889 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1 +1,2 @@
 DIST utop-2.8.0.tar.gz 414059 BLAKE2B f94cc9a2e87d5341b1d7231574b1e0d8b179e600640281529ecfd2ce8827b9145d73030ea1ec59b20430d34155087f6d910c698c75d7566145c9db3a3ecbf872 SHA512 cf323249aa9a747081b3e39e8e8b99b69557082beb244dd0a28d64c6d11e3c03427c22da4fd364e9ae7f5d83d12ca3d2d48b9f4b6697ec704d486f3c23163dba
+DIST utop-2.9.0.tar.gz 414953 BLAKE2B 96fbf38d4a638137b73264bc523b8a81e47ddd609a7987073313f4b1d628e4e84c31f98195105911dd0930b8d27007cf5cc1633771bc6d2e975bd169e1e3ba9c SHA512 dd3f52fb915493cb32b5ee722361e884a481d04ef175d5bdf58f4032b70826c38b2f5279b7c64b78961170a86bc80fbd59f03026fac99bb5da2b46a8f341aa45

diff --git a/dev-ml/utop/utop-2.9.0.ebuild b/dev-ml/utop/utop-2.9.0.ebuild
new file mode 100644
index 000000000000..d5b493a8c2cf
--- /dev/null
+++ b/dev-ml/utop/utop-2.9.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit dune
+
+DESCRIPTION="Universal toplevel for OCaml"
+HOMEPAGE="https://github.com/ocaml-community/utop"
+SRC_URI="https://github.com/ocaml-community/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ocamlopt"
+
+RDEPEND="
+	dev-ml/camomile:=
+	dev-ml/lambda-term:=
+	dev-ml/lwt:=
+	dev-ml/react:=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	dev-ml/cppo
+	dev-ml/findlib
+"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2022-05-22  0:45 Maciej Barć
  0 siblings, 0 replies; 31+ messages in thread
From: Maciej Barć @ 2022-05-22  0:45 UTC (permalink / raw
  To: gentoo-commits

commit:     0a5f15553efea6c0f2e12c8429b9df800d3d0b30
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun May 22 00:45:41 2022 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun May 22 00:45:46 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a5f1555

dev-ml/utop: bump to 2.9.1

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-ml/utop/Manifest          |  1 +
 dev-ml/utop/utop-2.9.1.ebuild | 27 +++++++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index 3d7f3f9b4889..d37e92506871 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,2 +1,3 @@
 DIST utop-2.8.0.tar.gz 414059 BLAKE2B f94cc9a2e87d5341b1d7231574b1e0d8b179e600640281529ecfd2ce8827b9145d73030ea1ec59b20430d34155087f6d910c698c75d7566145c9db3a3ecbf872 SHA512 cf323249aa9a747081b3e39e8e8b99b69557082beb244dd0a28d64c6d11e3c03427c22da4fd364e9ae7f5d83d12ca3d2d48b9f4b6697ec704d486f3c23163dba
 DIST utop-2.9.0.tar.gz 414953 BLAKE2B 96fbf38d4a638137b73264bc523b8a81e47ddd609a7987073313f4b1d628e4e84c31f98195105911dd0930b8d27007cf5cc1633771bc6d2e975bd169e1e3ba9c SHA512 dd3f52fb915493cb32b5ee722361e884a481d04ef175d5bdf58f4032b70826c38b2f5279b7c64b78961170a86bc80fbd59f03026fac99bb5da2b46a8f341aa45
+DIST utop-2.9.1.tar.gz 421430 BLAKE2B c90a7fe54c5fbf15ce209e9bf850031e0368104c1f8f61a2d982b2b43d87b4bb95c91e3af6da16ae27ebfab71f2b9907e7dec68d34f619597fe8db45ff363bf4 SHA512 10942a4c7d2e13081f2e02c29b767863176fe90ca5baf48d3be47bb0871a12840d873e5d3eb7d7dd9b0362e849f70afb913ff50c07e66c6b7f221c8bb98fa469

diff --git a/dev-ml/utop/utop-2.9.1.ebuild b/dev-ml/utop/utop-2.9.1.ebuild
new file mode 100644
index 000000000000..55ec4f6fd152
--- /dev/null
+++ b/dev-ml/utop/utop-2.9.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit dune
+
+DESCRIPTION="Universal toplevel for OCaml"
+HOMEPAGE="https://github.com/ocaml-community/utop"
+SRC_URI="https://github.com/ocaml-community/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ocamlopt"
+
+RDEPEND="
+	dev-ml/camomile:=
+	dev-ml/lambda-term:=
+	dev-ml/lwt:=
+	dev-ml/react:=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	dev-ml/cppo
+	dev-ml/findlib
+"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2022-07-04 15:14 Maciej Barć
  0 siblings, 0 replies; 31+ messages in thread
From: Maciej Barć @ 2022-07-04 15:14 UTC (permalink / raw
  To: gentoo-commits

commit:     c6f38e0711159034a5e89ae1c9cf2b5ee552b73e
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  4 15:11:48 2022 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Jul  4 15:11:48 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6f38e07

dev-ml/utop: bump to 2.9.2

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-ml/utop/Manifest          |  1 +
 dev-ml/utop/utop-2.9.2.ebuild | 63 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 64 insertions(+)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index d37e92506871..a5a7cf9c9f12 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,3 +1,4 @@
 DIST utop-2.8.0.tar.gz 414059 BLAKE2B f94cc9a2e87d5341b1d7231574b1e0d8b179e600640281529ecfd2ce8827b9145d73030ea1ec59b20430d34155087f6d910c698c75d7566145c9db3a3ecbf872 SHA512 cf323249aa9a747081b3e39e8e8b99b69557082beb244dd0a28d64c6d11e3c03427c22da4fd364e9ae7f5d83d12ca3d2d48b9f4b6697ec704d486f3c23163dba
 DIST utop-2.9.0.tar.gz 414953 BLAKE2B 96fbf38d4a638137b73264bc523b8a81e47ddd609a7987073313f4b1d628e4e84c31f98195105911dd0930b8d27007cf5cc1633771bc6d2e975bd169e1e3ba9c SHA512 dd3f52fb915493cb32b5ee722361e884a481d04ef175d5bdf58f4032b70826c38b2f5279b7c64b78961170a86bc80fbd59f03026fac99bb5da2b46a8f341aa45
 DIST utop-2.9.1.tar.gz 421430 BLAKE2B c90a7fe54c5fbf15ce209e9bf850031e0368104c1f8f61a2d982b2b43d87b4bb95c91e3af6da16ae27ebfab71f2b9907e7dec68d34f619597fe8db45ff363bf4 SHA512 10942a4c7d2e13081f2e02c29b767863176fe90ca5baf48d3be47bb0871a12840d873e5d3eb7d7dd9b0362e849f70afb913ff50c07e66c6b7f221c8bb98fa469
+DIST utop-2.9.2.tar.gz 421512 BLAKE2B 235b4739e644877e4b9eef432a00ba053f42f2b4d4fdd9b0bd925af736d9a351c8f9373031bc4fc23835872034d48a27b8eac99d286f57cb975d2b1368f420c8 SHA512 14dd690b459cfea90c565b397b5d914add7e92b152b476ab58576dc827fa204b3d721955bfc3508bcb953778a8d6fb3b299b0293f8ddf64b3f0155fc9a0e7fda

diff --git a/dev-ml/utop/utop-2.9.2.ebuild b/dev-ml/utop/utop-2.9.2.ebuild
new file mode 100644
index 000000000000..cd05e5fc7a0c
--- /dev/null
+++ b/dev-ml/utop/utop-2.9.2.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit dune elisp-common
+
+DESCRIPTION="Universal toplevel for OCaml"
+HOMEPAGE="https://github.com/ocaml-community/utop"
+SRC_URI="https://github.com/ocaml-community/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="emacs +ocamlopt"
+
+ELISP_DEPEND="
+	emacs? (
+		>=app-editors/emacs-24:*
+		>=app-emacs/tuareg-mode-2.2.0
+	)
+"
+DEPEND="
+	dev-ml/camomile:=
+	dev-ml/lambda-term:=
+	dev-ml/lwt:=
+	dev-ml/react:=
+"
+RDEPEND="
+	${DEPEND}
+	${ELISP_DEPEND}
+"
+BDEPEND="
+	dev-ml/cppo
+	dev-ml/findlib
+	${ELISP_DEPEND}
+"
+
+SITEFILE="50${PN}-gentoo.el"
+
+src_compile() {
+	dune_src_compile
+
+	use emacs &&
+		BYTECOMPFLAGS="-L src/top" elisp-compile src/top/*.el
+}
+
+src_install() {
+	dune_src_install
+
+	if use emacs ; then
+		elisp-install ${PN} src/top/*.el{,c}
+		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+	fi
+}
+
+pkg_postinst() {
+	use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+	use emacs && elisp-site-regen
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2022-07-04 15:14 Maciej Barć
  0 siblings, 0 replies; 31+ messages in thread
From: Maciej Barć @ 2022-07-04 15:14 UTC (permalink / raw
  To: gentoo-commits

commit:     e31b4bbd141fe2f3bba9d72257b30b9ffb39c8f0
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  4 15:12:37 2022 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Jul  4 15:12:37 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e31b4bbd

dev-ml/utop: drop old 2.8.0-r1

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-ml/utop/Manifest             |  1 -
 dev-ml/utop/utop-2.8.0-r1.ebuild | 63 ----------------------------------------
 2 files changed, 64 deletions(-)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index a5a7cf9c9f12..8d4858a721cf 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,4 +1,3 @@
-DIST utop-2.8.0.tar.gz 414059 BLAKE2B f94cc9a2e87d5341b1d7231574b1e0d8b179e600640281529ecfd2ce8827b9145d73030ea1ec59b20430d34155087f6d910c698c75d7566145c9db3a3ecbf872 SHA512 cf323249aa9a747081b3e39e8e8b99b69557082beb244dd0a28d64c6d11e3c03427c22da4fd364e9ae7f5d83d12ca3d2d48b9f4b6697ec704d486f3c23163dba
 DIST utop-2.9.0.tar.gz 414953 BLAKE2B 96fbf38d4a638137b73264bc523b8a81e47ddd609a7987073313f4b1d628e4e84c31f98195105911dd0930b8d27007cf5cc1633771bc6d2e975bd169e1e3ba9c SHA512 dd3f52fb915493cb32b5ee722361e884a481d04ef175d5bdf58f4032b70826c38b2f5279b7c64b78961170a86bc80fbd59f03026fac99bb5da2b46a8f341aa45
 DIST utop-2.9.1.tar.gz 421430 BLAKE2B c90a7fe54c5fbf15ce209e9bf850031e0368104c1f8f61a2d982b2b43d87b4bb95c91e3af6da16ae27ebfab71f2b9907e7dec68d34f619597fe8db45ff363bf4 SHA512 10942a4c7d2e13081f2e02c29b767863176fe90ca5baf48d3be47bb0871a12840d873e5d3eb7d7dd9b0362e849f70afb913ff50c07e66c6b7f221c8bb98fa469
 DIST utop-2.9.2.tar.gz 421512 BLAKE2B 235b4739e644877e4b9eef432a00ba053f42f2b4d4fdd9b0bd925af736d9a351c8f9373031bc4fc23835872034d48a27b8eac99d286f57cb975d2b1368f420c8 SHA512 14dd690b459cfea90c565b397b5d914add7e92b152b476ab58576dc827fa204b3d721955bfc3508bcb953778a8d6fb3b299b0293f8ddf64b3f0155fc9a0e7fda

diff --git a/dev-ml/utop/utop-2.8.0-r1.ebuild b/dev-ml/utop/utop-2.8.0-r1.ebuild
deleted file mode 100644
index cd05e5fc7a0c..000000000000
--- a/dev-ml/utop/utop-2.8.0-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit dune elisp-common
-
-DESCRIPTION="Universal toplevel for OCaml"
-HOMEPAGE="https://github.com/ocaml-community/utop"
-SRC_URI="https://github.com/ocaml-community/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE="emacs +ocamlopt"
-
-ELISP_DEPEND="
-	emacs? (
-		>=app-editors/emacs-24:*
-		>=app-emacs/tuareg-mode-2.2.0
-	)
-"
-DEPEND="
-	dev-ml/camomile:=
-	dev-ml/lambda-term:=
-	dev-ml/lwt:=
-	dev-ml/react:=
-"
-RDEPEND="
-	${DEPEND}
-	${ELISP_DEPEND}
-"
-BDEPEND="
-	dev-ml/cppo
-	dev-ml/findlib
-	${ELISP_DEPEND}
-"
-
-SITEFILE="50${PN}-gentoo.el"
-
-src_compile() {
-	dune_src_compile
-
-	use emacs &&
-		BYTECOMPFLAGS="-L src/top" elisp-compile src/top/*.el
-}
-
-src_install() {
-	dune_src_install
-
-	if use emacs ; then
-		elisp-install ${PN} src/top/*.el{,c}
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-	fi
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2023-01-13  2:30 Maciej Barć
  0 siblings, 0 replies; 31+ messages in thread
From: Maciej Barć @ 2023-01-13  2:30 UTC (permalink / raw
  To: gentoo-commits

commit:     af5c6638cedbb02493cd9da901db39aa29d81296
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 13 01:57:35 2023 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Fri Jan 13 02:01:07 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af5c6638

dev-ml/utop: bump to 2.11.0

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-ml/utop/Manifest           |  1 +
 dev-ml/utop/utop-2.11.0.ebuild | 63 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 64 insertions(+)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index 8d4858a721cf..53a099e600f4 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,3 +1,4 @@
+DIST utop-2.11.0.tar.gz 416351 BLAKE2B 14d407bd79f83b9b0307ec34ec9330e625e0e5fbc4b4091f98a45d90ff6225c292b6d764746273a5b7e7abda74c83852056f470d8f2f3b16fffc16569ecc6f98 SHA512 ebc27219b0345ab1478499221756806874c430f81aa9f40e7d482d0fd948750919d631b6159faec19fef0d23d14e6a115e6b21a5aa724ce1534e000e5d35bdae
 DIST utop-2.9.0.tar.gz 414953 BLAKE2B 96fbf38d4a638137b73264bc523b8a81e47ddd609a7987073313f4b1d628e4e84c31f98195105911dd0930b8d27007cf5cc1633771bc6d2e975bd169e1e3ba9c SHA512 dd3f52fb915493cb32b5ee722361e884a481d04ef175d5bdf58f4032b70826c38b2f5279b7c64b78961170a86bc80fbd59f03026fac99bb5da2b46a8f341aa45
 DIST utop-2.9.1.tar.gz 421430 BLAKE2B c90a7fe54c5fbf15ce209e9bf850031e0368104c1f8f61a2d982b2b43d87b4bb95c91e3af6da16ae27ebfab71f2b9907e7dec68d34f619597fe8db45ff363bf4 SHA512 10942a4c7d2e13081f2e02c29b767863176fe90ca5baf48d3be47bb0871a12840d873e5d3eb7d7dd9b0362e849f70afb913ff50c07e66c6b7f221c8bb98fa469
 DIST utop-2.9.2.tar.gz 421512 BLAKE2B 235b4739e644877e4b9eef432a00ba053f42f2b4d4fdd9b0bd925af736d9a351c8f9373031bc4fc23835872034d48a27b8eac99d286f57cb975d2b1368f420c8 SHA512 14dd690b459cfea90c565b397b5d914add7e92b152b476ab58576dc827fa204b3d721955bfc3508bcb953778a8d6fb3b299b0293f8ddf64b3f0155fc9a0e7fda

diff --git a/dev-ml/utop/utop-2.11.0.ebuild b/dev-ml/utop/utop-2.11.0.ebuild
new file mode 100644
index 000000000000..a975e9bda1b7
--- /dev/null
+++ b/dev-ml/utop/utop-2.11.0.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit dune elisp-common
+
+DESCRIPTION="Universal toplevel for OCaml"
+HOMEPAGE="https://github.com/ocaml-community/utop"
+SRC_URI="https://github.com/ocaml-community/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="emacs +ocamlopt"
+
+ELISP_DEPEND="
+	emacs? (
+		>=app-editors/emacs-24:*
+		>=app-emacs/tuareg-mode-2.2.0
+	)
+"
+DEPEND="
+	dev-ml/camomile:=
+	dev-ml/lambda-term:=
+	dev-ml/lwt:=
+	dev-ml/react:=
+"
+RDEPEND="
+	${DEPEND}
+	${ELISP_DEPEND}
+"
+BDEPEND="
+	dev-ml/cppo
+	dev-ml/findlib
+	${ELISP_DEPEND}
+"
+
+SITEFILE="50${PN}-gentoo.el"
+
+src_compile() {
+	dune_src_compile
+
+	use emacs &&
+		BYTECOMPFLAGS="-L src/top" elisp-compile src/top/*.el
+}
+
+src_install() {
+	dune_src_install
+
+	if use emacs ; then
+		elisp-install ${PN} src/top/*.el{,c}
+		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+	fi
+}
+
+pkg_postinst() {
+	use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+	use emacs && elisp-site-regen
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2023-01-13 12:31 Maciej Barć
  0 siblings, 0 replies; 31+ messages in thread
From: Maciej Barć @ 2023-01-13 12:31 UTC (permalink / raw
  To: gentoo-commits

commit:     5785671efdbf5e6b7b0d72bc91dc7dfc6fa106b2
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 13 12:15:03 2023 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Fri Jan 13 12:31:19 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5785671e

dev-ml/utop: fix deps

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-ml/utop/{utop-2.11.0.ebuild => utop-2.11.0-r1.ebuild} | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-ml/utop/utop-2.11.0.ebuild b/dev-ml/utop/utop-2.11.0-r1.ebuild
similarity index 97%
rename from dev-ml/utop/utop-2.11.0.ebuild
rename to dev-ml/utop/utop-2.11.0-r1.ebuild
index a975e9bda1b7..0acedbdf1fad 100644
--- a/dev-ml/utop/utop-2.11.0.ebuild
+++ b/dev-ml/utop/utop-2.11.0-r1.ebuild
@@ -21,10 +21,11 @@ ELISP_DEPEND="
 	)
 "
 DEPEND="
-	dev-ml/camomile:=
 	dev-ml/lambda-term:=
+	dev-ml/logs:=
 	dev-ml/lwt:=
 	dev-ml/react:=
+	dev-ml/zed:=
 "
 RDEPEND="
 	${DEPEND}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2023-04-24 17:39 Maciej Barć
  0 siblings, 0 replies; 31+ messages in thread
From: Maciej Barć @ 2023-04-24 17:39 UTC (permalink / raw
  To: gentoo-commits

commit:     d800d9169b2518f6e56078e85589867e34c6baeb
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 24 17:02:11 2023 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Apr 24 17:39:48 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d800d916

dev-ml/utop: drop old 2.9.0-r1

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-ml/utop/Manifest             |  1 -
 dev-ml/utop/utop-2.9.0-r1.ebuild | 63 ----------------------------------------
 2 files changed, 64 deletions(-)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index 3d82bcbb5513..4ff1647b72f9 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,5 +1,4 @@
 DIST utop-2.11.0.tar.gz 416351 BLAKE2B 14d407bd79f83b9b0307ec34ec9330e625e0e5fbc4b4091f98a45d90ff6225c292b6d764746273a5b7e7abda74c83852056f470d8f2f3b16fffc16569ecc6f98 SHA512 ebc27219b0345ab1478499221756806874c430f81aa9f40e7d482d0fd948750919d631b6159faec19fef0d23d14e6a115e6b21a5aa724ce1534e000e5d35bdae
 DIST utop-2.12.1.tar.gz 416596 BLAKE2B a8a31c91fd4f989e3d89bc736caa7b611ba0ccc2de905adcd1cf59fff87770d5a00c2d7a43462940269ae8be2f5980fa5b8d2ec7ba547b937cc1e6a579621f2f SHA512 cc52bdb2a58141e6f7b678c93f69b0aa5ca4c628cb6841e02e6a783191a917bd838c06682d55f4f455a01a7004e43b5193d8574968b8400050b0f7b5a102ca3a
-DIST utop-2.9.0.tar.gz 414953 BLAKE2B 96fbf38d4a638137b73264bc523b8a81e47ddd609a7987073313f4b1d628e4e84c31f98195105911dd0930b8d27007cf5cc1633771bc6d2e975bd169e1e3ba9c SHA512 dd3f52fb915493cb32b5ee722361e884a481d04ef175d5bdf58f4032b70826c38b2f5279b7c64b78961170a86bc80fbd59f03026fac99bb5da2b46a8f341aa45
 DIST utop-2.9.1.tar.gz 421430 BLAKE2B c90a7fe54c5fbf15ce209e9bf850031e0368104c1f8f61a2d982b2b43d87b4bb95c91e3af6da16ae27ebfab71f2b9907e7dec68d34f619597fe8db45ff363bf4 SHA512 10942a4c7d2e13081f2e02c29b767863176fe90ca5baf48d3be47bb0871a12840d873e5d3eb7d7dd9b0362e849f70afb913ff50c07e66c6b7f221c8bb98fa469
 DIST utop-2.9.2.tar.gz 421512 BLAKE2B 235b4739e644877e4b9eef432a00ba053f42f2b4d4fdd9b0bd925af736d9a351c8f9373031bc4fc23835872034d48a27b8eac99d286f57cb975d2b1368f420c8 SHA512 14dd690b459cfea90c565b397b5d914add7e92b152b476ab58576dc827fa204b3d721955bfc3508bcb953778a8d6fb3b299b0293f8ddf64b3f0155fc9a0e7fda

diff --git a/dev-ml/utop/utop-2.9.0-r1.ebuild b/dev-ml/utop/utop-2.9.0-r1.ebuild
deleted file mode 100644
index cd05e5fc7a0c..000000000000
--- a/dev-ml/utop/utop-2.9.0-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit dune elisp-common
-
-DESCRIPTION="Universal toplevel for OCaml"
-HOMEPAGE="https://github.com/ocaml-community/utop"
-SRC_URI="https://github.com/ocaml-community/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE="emacs +ocamlopt"
-
-ELISP_DEPEND="
-	emacs? (
-		>=app-editors/emacs-24:*
-		>=app-emacs/tuareg-mode-2.2.0
-	)
-"
-DEPEND="
-	dev-ml/camomile:=
-	dev-ml/lambda-term:=
-	dev-ml/lwt:=
-	dev-ml/react:=
-"
-RDEPEND="
-	${DEPEND}
-	${ELISP_DEPEND}
-"
-BDEPEND="
-	dev-ml/cppo
-	dev-ml/findlib
-	${ELISP_DEPEND}
-"
-
-SITEFILE="50${PN}-gentoo.el"
-
-src_compile() {
-	dune_src_compile
-
-	use emacs &&
-		BYTECOMPFLAGS="-L src/top" elisp-compile src/top/*.el
-}
-
-src_install() {
-	dune_src_install
-
-	if use emacs ; then
-		elisp-install ${PN} src/top/*.el{,c}
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-	fi
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2023-04-24 17:39 Maciej Barć
  0 siblings, 0 replies; 31+ messages in thread
From: Maciej Barć @ 2023-04-24 17:39 UTC (permalink / raw
  To: gentoo-commits

commit:     b9869b7ed17d72348b6037d2f33e20d717c23ded
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 24 17:01:41 2023 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Apr 24 17:39:48 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9869b7e

dev-ml/utop: bump to 2.12.1

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-ml/utop/Manifest           |  1 +
 dev-ml/utop/utop-2.12.1.ebuild | 64 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 65 insertions(+)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index 53a099e600f4..3d82bcbb5513 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,4 +1,5 @@
 DIST utop-2.11.0.tar.gz 416351 BLAKE2B 14d407bd79f83b9b0307ec34ec9330e625e0e5fbc4b4091f98a45d90ff6225c292b6d764746273a5b7e7abda74c83852056f470d8f2f3b16fffc16569ecc6f98 SHA512 ebc27219b0345ab1478499221756806874c430f81aa9f40e7d482d0fd948750919d631b6159faec19fef0d23d14e6a115e6b21a5aa724ce1534e000e5d35bdae
+DIST utop-2.12.1.tar.gz 416596 BLAKE2B a8a31c91fd4f989e3d89bc736caa7b611ba0ccc2de905adcd1cf59fff87770d5a00c2d7a43462940269ae8be2f5980fa5b8d2ec7ba547b937cc1e6a579621f2f SHA512 cc52bdb2a58141e6f7b678c93f69b0aa5ca4c628cb6841e02e6a783191a917bd838c06682d55f4f455a01a7004e43b5193d8574968b8400050b0f7b5a102ca3a
 DIST utop-2.9.0.tar.gz 414953 BLAKE2B 96fbf38d4a638137b73264bc523b8a81e47ddd609a7987073313f4b1d628e4e84c31f98195105911dd0930b8d27007cf5cc1633771bc6d2e975bd169e1e3ba9c SHA512 dd3f52fb915493cb32b5ee722361e884a481d04ef175d5bdf58f4032b70826c38b2f5279b7c64b78961170a86bc80fbd59f03026fac99bb5da2b46a8f341aa45
 DIST utop-2.9.1.tar.gz 421430 BLAKE2B c90a7fe54c5fbf15ce209e9bf850031e0368104c1f8f61a2d982b2b43d87b4bb95c91e3af6da16ae27ebfab71f2b9907e7dec68d34f619597fe8db45ff363bf4 SHA512 10942a4c7d2e13081f2e02c29b767863176fe90ca5baf48d3be47bb0871a12840d873e5d3eb7d7dd9b0362e849f70afb913ff50c07e66c6b7f221c8bb98fa469
 DIST utop-2.9.2.tar.gz 421512 BLAKE2B 235b4739e644877e4b9eef432a00ba053f42f2b4d4fdd9b0bd925af736d9a351c8f9373031bc4fc23835872034d48a27b8eac99d286f57cb975d2b1368f420c8 SHA512 14dd690b459cfea90c565b397b5d914add7e92b152b476ab58576dc827fa204b3d721955bfc3508bcb953778a8d6fb3b299b0293f8ddf64b3f0155fc9a0e7fda

diff --git a/dev-ml/utop/utop-2.12.1.ebuild b/dev-ml/utop/utop-2.12.1.ebuild
new file mode 100644
index 000000000000..0acedbdf1fad
--- /dev/null
+++ b/dev-ml/utop/utop-2.12.1.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit dune elisp-common
+
+DESCRIPTION="Universal toplevel for OCaml"
+HOMEPAGE="https://github.com/ocaml-community/utop"
+SRC_URI="https://github.com/ocaml-community/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="emacs +ocamlopt"
+
+ELISP_DEPEND="
+	emacs? (
+		>=app-editors/emacs-24:*
+		>=app-emacs/tuareg-mode-2.2.0
+	)
+"
+DEPEND="
+	dev-ml/lambda-term:=
+	dev-ml/logs:=
+	dev-ml/lwt:=
+	dev-ml/react:=
+	dev-ml/zed:=
+"
+RDEPEND="
+	${DEPEND}
+	${ELISP_DEPEND}
+"
+BDEPEND="
+	dev-ml/cppo
+	dev-ml/findlib
+	${ELISP_DEPEND}
+"
+
+SITEFILE="50${PN}-gentoo.el"
+
+src_compile() {
+	dune_src_compile
+
+	use emacs &&
+		BYTECOMPFLAGS="-L src/top" elisp-compile src/top/*.el
+}
+
+src_install() {
+	dune_src_install
+
+	if use emacs ; then
+		elisp-install ${PN} src/top/*.el{,c}
+		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+	fi
+}
+
+pkg_postinst() {
+	use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+	use emacs && elisp-site-regen
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2023-04-24 17:39 Maciej Barć
  0 siblings, 0 replies; 31+ messages in thread
From: Maciej Barć @ 2023-04-24 17:39 UTC (permalink / raw
  To: gentoo-commits

commit:     581369b18d6f700389ac99bed2f51f604daa5030
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 24 17:02:18 2023 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Apr 24 17:39:48 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=581369b1

dev-ml/utop: drop old 2.9.1-r1

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-ml/utop/Manifest             |  1 -
 dev-ml/utop/utop-2.9.1-r1.ebuild | 63 ----------------------------------------
 2 files changed, 64 deletions(-)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index 4ff1647b72f9..b559bb3c828f 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,4 +1,3 @@
 DIST utop-2.11.0.tar.gz 416351 BLAKE2B 14d407bd79f83b9b0307ec34ec9330e625e0e5fbc4b4091f98a45d90ff6225c292b6d764746273a5b7e7abda74c83852056f470d8f2f3b16fffc16569ecc6f98 SHA512 ebc27219b0345ab1478499221756806874c430f81aa9f40e7d482d0fd948750919d631b6159faec19fef0d23d14e6a115e6b21a5aa724ce1534e000e5d35bdae
 DIST utop-2.12.1.tar.gz 416596 BLAKE2B a8a31c91fd4f989e3d89bc736caa7b611ba0ccc2de905adcd1cf59fff87770d5a00c2d7a43462940269ae8be2f5980fa5b8d2ec7ba547b937cc1e6a579621f2f SHA512 cc52bdb2a58141e6f7b678c93f69b0aa5ca4c628cb6841e02e6a783191a917bd838c06682d55f4f455a01a7004e43b5193d8574968b8400050b0f7b5a102ca3a
-DIST utop-2.9.1.tar.gz 421430 BLAKE2B c90a7fe54c5fbf15ce209e9bf850031e0368104c1f8f61a2d982b2b43d87b4bb95c91e3af6da16ae27ebfab71f2b9907e7dec68d34f619597fe8db45ff363bf4 SHA512 10942a4c7d2e13081f2e02c29b767863176fe90ca5baf48d3be47bb0871a12840d873e5d3eb7d7dd9b0362e849f70afb913ff50c07e66c6b7f221c8bb98fa469
 DIST utop-2.9.2.tar.gz 421512 BLAKE2B 235b4739e644877e4b9eef432a00ba053f42f2b4d4fdd9b0bd925af736d9a351c8f9373031bc4fc23835872034d48a27b8eac99d286f57cb975d2b1368f420c8 SHA512 14dd690b459cfea90c565b397b5d914add7e92b152b476ab58576dc827fa204b3d721955bfc3508bcb953778a8d6fb3b299b0293f8ddf64b3f0155fc9a0e7fda

diff --git a/dev-ml/utop/utop-2.9.1-r1.ebuild b/dev-ml/utop/utop-2.9.1-r1.ebuild
deleted file mode 100644
index cd05e5fc7a0c..000000000000
--- a/dev-ml/utop/utop-2.9.1-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit dune elisp-common
-
-DESCRIPTION="Universal toplevel for OCaml"
-HOMEPAGE="https://github.com/ocaml-community/utop"
-SRC_URI="https://github.com/ocaml-community/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE="emacs +ocamlopt"
-
-ELISP_DEPEND="
-	emacs? (
-		>=app-editors/emacs-24:*
-		>=app-emacs/tuareg-mode-2.2.0
-	)
-"
-DEPEND="
-	dev-ml/camomile:=
-	dev-ml/lambda-term:=
-	dev-ml/lwt:=
-	dev-ml/react:=
-"
-RDEPEND="
-	${DEPEND}
-	${ELISP_DEPEND}
-"
-BDEPEND="
-	dev-ml/cppo
-	dev-ml/findlib
-	${ELISP_DEPEND}
-"
-
-SITEFILE="50${PN}-gentoo.el"
-
-src_compile() {
-	dune_src_compile
-
-	use emacs &&
-		BYTECOMPFLAGS="-L src/top" elisp-compile src/top/*.el
-}
-
-src_install() {
-	dune_src_install
-
-	if use emacs ; then
-		elisp-install ${PN} src/top/*.el{,c}
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-	fi
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2023-08-05 16:53 Maciej Barć
  0 siblings, 0 replies; 31+ messages in thread
From: Maciej Barć @ 2023-08-05 16:53 UTC (permalink / raw
  To: gentoo-commits

commit:     40811958f0c00561db03c8240233b9542cd0b90b
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sat Aug  5 15:38:53 2023 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sat Aug  5 16:53:01 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40811958

dev-ml/utop: drop old 2.9.2

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-ml/utop/Manifest          |  1 -
 dev-ml/utop/utop-2.9.2.ebuild | 63 -------------------------------------------
 2 files changed, 64 deletions(-)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index b559bb3c828f..0c73adaed46e 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,3 +1,2 @@
 DIST utop-2.11.0.tar.gz 416351 BLAKE2B 14d407bd79f83b9b0307ec34ec9330e625e0e5fbc4b4091f98a45d90ff6225c292b6d764746273a5b7e7abda74c83852056f470d8f2f3b16fffc16569ecc6f98 SHA512 ebc27219b0345ab1478499221756806874c430f81aa9f40e7d482d0fd948750919d631b6159faec19fef0d23d14e6a115e6b21a5aa724ce1534e000e5d35bdae
 DIST utop-2.12.1.tar.gz 416596 BLAKE2B a8a31c91fd4f989e3d89bc736caa7b611ba0ccc2de905adcd1cf59fff87770d5a00c2d7a43462940269ae8be2f5980fa5b8d2ec7ba547b937cc1e6a579621f2f SHA512 cc52bdb2a58141e6f7b678c93f69b0aa5ca4c628cb6841e02e6a783191a917bd838c06682d55f4f455a01a7004e43b5193d8574968b8400050b0f7b5a102ca3a
-DIST utop-2.9.2.tar.gz 421512 BLAKE2B 235b4739e644877e4b9eef432a00ba053f42f2b4d4fdd9b0bd925af736d9a351c8f9373031bc4fc23835872034d48a27b8eac99d286f57cb975d2b1368f420c8 SHA512 14dd690b459cfea90c565b397b5d914add7e92b152b476ab58576dc827fa204b3d721955bfc3508bcb953778a8d6fb3b299b0293f8ddf64b3f0155fc9a0e7fda

diff --git a/dev-ml/utop/utop-2.9.2.ebuild b/dev-ml/utop/utop-2.9.2.ebuild
deleted file mode 100644
index cd05e5fc7a0c..000000000000
--- a/dev-ml/utop/utop-2.9.2.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit dune elisp-common
-
-DESCRIPTION="Universal toplevel for OCaml"
-HOMEPAGE="https://github.com/ocaml-community/utop"
-SRC_URI="https://github.com/ocaml-community/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE="emacs +ocamlopt"
-
-ELISP_DEPEND="
-	emacs? (
-		>=app-editors/emacs-24:*
-		>=app-emacs/tuareg-mode-2.2.0
-	)
-"
-DEPEND="
-	dev-ml/camomile:=
-	dev-ml/lambda-term:=
-	dev-ml/lwt:=
-	dev-ml/react:=
-"
-RDEPEND="
-	${DEPEND}
-	${ELISP_DEPEND}
-"
-BDEPEND="
-	dev-ml/cppo
-	dev-ml/findlib
-	${ELISP_DEPEND}
-"
-
-SITEFILE="50${PN}-gentoo.el"
-
-src_compile() {
-	dune_src_compile
-
-	use emacs &&
-		BYTECOMPFLAGS="-L src/top" elisp-compile src/top/*.el
-}
-
-src_install() {
-	dune_src_install
-
-	if use emacs ; then
-		elisp-install ${PN} src/top/*.el{,c}
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-	fi
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2023-08-27 12:42 Maciej Barć
  0 siblings, 0 replies; 31+ messages in thread
From: Maciej Barć @ 2023-08-27 12:42 UTC (permalink / raw
  To: gentoo-commits

commit:     15f40eae167fe52362d7486635b2d2c7af1bdb7f
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 27 12:36:14 2023 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Aug 27 12:42:46 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15f40eae

dev-ml/utop: drop old 2.11.0-r1

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-ml/utop/Manifest              |  1 -
 dev-ml/utop/utop-2.11.0-r1.ebuild | 64 ---------------------------------------
 2 files changed, 65 deletions(-)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index 0c73adaed46e..87f363967d57 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1,2 +1 @@
-DIST utop-2.11.0.tar.gz 416351 BLAKE2B 14d407bd79f83b9b0307ec34ec9330e625e0e5fbc4b4091f98a45d90ff6225c292b6d764746273a5b7e7abda74c83852056f470d8f2f3b16fffc16569ecc6f98 SHA512 ebc27219b0345ab1478499221756806874c430f81aa9f40e7d482d0fd948750919d631b6159faec19fef0d23d14e6a115e6b21a5aa724ce1534e000e5d35bdae
 DIST utop-2.12.1.tar.gz 416596 BLAKE2B a8a31c91fd4f989e3d89bc736caa7b611ba0ccc2de905adcd1cf59fff87770d5a00c2d7a43462940269ae8be2f5980fa5b8d2ec7ba547b937cc1e6a579621f2f SHA512 cc52bdb2a58141e6f7b678c93f69b0aa5ca4c628cb6841e02e6a783191a917bd838c06682d55f4f455a01a7004e43b5193d8574968b8400050b0f7b5a102ca3a

diff --git a/dev-ml/utop/utop-2.11.0-r1.ebuild b/dev-ml/utop/utop-2.11.0-r1.ebuild
deleted file mode 100644
index 0acedbdf1fad..000000000000
--- a/dev-ml/utop/utop-2.11.0-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit dune elisp-common
-
-DESCRIPTION="Universal toplevel for OCaml"
-HOMEPAGE="https://github.com/ocaml-community/utop"
-SRC_URI="https://github.com/ocaml-community/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE="emacs +ocamlopt"
-
-ELISP_DEPEND="
-	emacs? (
-		>=app-editors/emacs-24:*
-		>=app-emacs/tuareg-mode-2.2.0
-	)
-"
-DEPEND="
-	dev-ml/lambda-term:=
-	dev-ml/logs:=
-	dev-ml/lwt:=
-	dev-ml/react:=
-	dev-ml/zed:=
-"
-RDEPEND="
-	${DEPEND}
-	${ELISP_DEPEND}
-"
-BDEPEND="
-	dev-ml/cppo
-	dev-ml/findlib
-	${ELISP_DEPEND}
-"
-
-SITEFILE="50${PN}-gentoo.el"
-
-src_compile() {
-	dune_src_compile
-
-	use emacs &&
-		BYTECOMPFLAGS="-L src/top" elisp-compile src/top/*.el
-}
-
-src_install() {
-	dune_src_install
-
-	if use emacs ; then
-		elisp-install ${PN} src/top/*.el{,c}
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-	fi
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2024-07-13 11:37 Alfredo Tupone
  0 siblings, 0 replies; 31+ messages in thread
From: Alfredo Tupone @ 2024-07-13 11:37 UTC (permalink / raw
  To: gentoo-commits

commit:     0d2589fdfd4b93c0ba2f2c01b1f62ed3ffa23325
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 13 11:37:36 2024 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sat Jul 13 11:37:36 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d2589fd

dev-ml/utop: add 2.14.0

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-ml/utop/Manifest           |  1 +
 dev-ml/utop/utop-2.14.0.ebuild | 66 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 67 insertions(+)

diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
index 87f363967d57..5e5e78be39f5 100644
--- a/dev-ml/utop/Manifest
+++ b/dev-ml/utop/Manifest
@@ -1 +1,2 @@
 DIST utop-2.12.1.tar.gz 416596 BLAKE2B a8a31c91fd4f989e3d89bc736caa7b611ba0ccc2de905adcd1cf59fff87770d5a00c2d7a43462940269ae8be2f5980fa5b8d2ec7ba547b937cc1e6a579621f2f SHA512 cc52bdb2a58141e6f7b678c93f69b0aa5ca4c628cb6841e02e6a783191a917bd838c06682d55f4f455a01a7004e43b5193d8574968b8400050b0f7b5a102ca3a
+DIST utop-2.14.0.tar.gz 418609 BLAKE2B 726ff00d6ce13f6bb81b6e1ad82749094f25a6394f6552f2a976f270d182a7b600a9a17a1c692e56fa807332b25638a8cf0c2082c12ef93262ef5409633fba27 SHA512 16c724c0d54cd14d2126060f00e8b86fe3b886cffd7ff306a825d7f9e045b74ffc5830f659ccb151dfaa36c41c2966c26bc2c2e7567f9e1d725b33e9f677d19e

diff --git a/dev-ml/utop/utop-2.14.0.ebuild b/dev-ml/utop/utop-2.14.0.ebuild
new file mode 100644
index 000000000000..788125604fb3
--- /dev/null
+++ b/dev-ml/utop/utop-2.14.0.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit dune elisp-common
+
+DESCRIPTION="Universal toplevel for OCaml"
+HOMEPAGE="https://github.com/ocaml-community/utop"
+SRC_URI="https://github.com/ocaml-community/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="emacs +ocamlopt"
+
+ELISP_DEPEND="
+	emacs? (
+		>=app-editors/emacs-24:*
+		>=app-emacs/tuareg-mode-2.2.0
+	)
+"
+DEPEND="
+	>=dev-lang/ocaml-4.11
+	dev-ml/lambda-term:=[ocamlopt?]
+	dev-ml/logs:=[ocamlopt?]
+	dev-ml/lwt:=[ocamlopt?]
+	dev-ml/react:=
+	dev-ml/xdg:=[ocamlopt?]
+	dev-ml/zed:=[ocamlopt?]
+"
+RDEPEND="
+	${DEPEND}
+	${ELISP_DEPEND}
+"
+BDEPEND="
+	dev-ml/cppo
+	dev-ml/findlib
+	${ELISP_DEPEND}
+"
+
+SITEFILE="50${PN}-gentoo.el"
+
+src_compile() {
+	dune_src_compile
+
+	use emacs &&
+		BYTECOMPFLAGS="-L src/top" elisp-compile src/top/*.el
+}
+
+src_install() {
+	dune_src_install
+
+	if use emacs ; then
+		elisp-install ${PN} src/top/*.el{,c}
+		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+	fi
+}
+
+pkg_postinst() {
+	use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+	use emacs && elisp-site-regen
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/
@ 2024-08-01  8:12 Alfredo Tupone
  0 siblings, 0 replies; 31+ messages in thread
From: Alfredo Tupone @ 2024-08-01  8:12 UTC (permalink / raw
  To: gentoo-commits

commit:     15c8f56fce3f462e344554d34effeade612cbbac
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Thu Aug  1 08:10:55 2024 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Thu Aug  1 08:12:29 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15c8f56f

dev-ml/utop: add alcotest deps

Closes: https://bugs.gentoo.org/936002
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-ml/utop/{utop-2.14.0.ebuild => utop-2.14.0-r1.ebuild} | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-ml/utop/utop-2.14.0.ebuild b/dev-ml/utop/utop-2.14.0-r1.ebuild
similarity index 93%
rename from dev-ml/utop/utop-2.14.0.ebuild
rename to dev-ml/utop/utop-2.14.0-r1.ebuild
index 788125604fb3..5439a2c47f25 100644
--- a/dev-ml/utop/utop-2.14.0.ebuild
+++ b/dev-ml/utop/utop-2.14.0-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/ocaml-community/utop/archive/${PV}.tar.gz -> ${P}.ta
 LICENSE="BSD"
 SLOT="0/${PV}"
 KEYWORDS="~amd64 ~x86"
-IUSE="emacs +ocamlopt"
+IUSE="emacs +ocamlopt test"
 
 ELISP_DEPEND="
 	emacs? (
@@ -37,8 +37,11 @@ BDEPEND="
 	dev-ml/cppo
 	dev-ml/findlib
 	${ELISP_DEPEND}
+	test? ( dev-ml/alcotest )
 "
 
+RESTRICT="!test? ( test )"
+
 SITEFILE="50${PN}-gentoo.el"
 
 src_compile() {


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

end of thread, other threads:[~2024-08-01  8:12 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-20 13:24 [gentoo-commits] repo/gentoo:master commit in: dev-ml/utop/ Alexis Ballier
  -- strict thread matches above, loose matches on Subject: below --
2024-08-01  8:12 Alfredo Tupone
2024-07-13 11:37 Alfredo Tupone
2023-08-27 12:42 Maciej Barć
2023-08-05 16:53 Maciej Barć
2023-04-24 17:39 Maciej Barć
2023-04-24 17:39 Maciej Barć
2023-04-24 17:39 Maciej Barć
2023-01-13 12:31 Maciej Barć
2023-01-13  2:30 Maciej Barć
2022-07-04 15:14 Maciej Barć
2022-07-04 15:14 Maciej Barć
2022-05-22  0:45 Maciej Barć
2021-12-10  1:06 Maciej Barć
2021-12-08  2:13 Maciej Barć
2017-05-31 18:00 Alexis Ballier
2017-05-31 18:00 Alexis Ballier
2017-05-30 18:08 Alexis Ballier
2017-05-30  7:00 Alexis Ballier
2017-05-30  7:00 Alexis Ballier
2016-10-14 13:16 Alexis Ballier
2016-10-14 13:16 Alexis Ballier
2016-08-16 10:46 Alexis Ballier
2016-06-23 11:33 Alexis Ballier
2016-06-23 11:32 Alexis Ballier
2016-04-30 17:17 Alexis Ballier
2016-04-20  7:59 Alexis Ballier
2016-04-13  8:30 Alexis Ballier
2016-04-13  8:30 Alexis Ballier
2016-03-04 11:32 Alexis Ballier
2015-11-05  8:47 Alexis Ballier

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