public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-process/
@ 2021-12-05  3:22 Maciej Barć
  0 siblings, 0 replies; 5+ messages in thread
From: Maciej Barć @ 2021-12-05  3:22 UTC (permalink / raw
  To: gentoo-commits

commit:     6d6e05018185c1a71576b41743cbb7378cedeb68
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  5 02:36:48 2021 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Dec  5 03:22:29 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d6e0501

dev-ml/ocaml-process: new package; add version 0.2.1

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

 dev-ml/ocaml-process/Manifest                   |  1 +
 dev-ml/ocaml-process/metadata.xml               | 13 +++++++++++
 dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild | 29 +++++++++++++++++++++++++
 3 files changed, 43 insertions(+)

diff --git a/dev-ml/ocaml-process/Manifest b/dev-ml/ocaml-process/Manifest
new file mode 100644
index 000000000000..03a2a410140d
--- /dev/null
+++ b/dev-ml/ocaml-process/Manifest
@@ -0,0 +1 @@
+DIST ocaml-process-0.2.1.tar.gz 5904 BLAKE2B 90a03e53e79adae559bbdcf4717db53d5e79cf22a22e7d6daad4c123a8b275f7b984ed40b7132653c31bb9b1d7c39c1918e0455597f70103ddb18b89ecf00d9a SHA512 0ca352a273797218e1785e1f6ed024448461cefeb54f143574230c844747a81355b97dd19fe9ddfe31d1a69c03dccf895fadc086f61a3d7a9f5397538432db92

diff --git a/dev-ml/ocaml-process/metadata.xml b/dev-ml/ocaml-process/metadata.xml
new file mode 100644
index 000000000000..0f616a0514e6
--- /dev/null
+++ b/dev-ml/ocaml-process/metadata.xml
@@ -0,0 +1,13 @@
+<?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>
+  <upstream>
+    <bugs-to>https://github.com/dsheets/ocaml-process/issues/</bugs-to>
+    <remote-id type="github">dsheets/ocaml-process</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild b/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild
new file mode 100644
index 000000000000..66969b86741b
--- /dev/null
+++ b/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit findlib
+
+DESCRIPTION="Easy process control for OCaml"
+HOMEPAGE="https://github.com/dsheets/ocaml-process"
+SRC_URI="https://github.com/dsheets/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ocamlopt test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+	dev-ml/ocamlbuild
+	test? ( dev-ml/alcotest )
+"
+
+src_install() {
+	findlib_src_install
+}
+
+src_test() {
+	emake -j1 test
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-process/
@ 2022-01-24 18:49 Alfredo Tupone
  0 siblings, 0 replies; 5+ messages in thread
From: Alfredo Tupone @ 2022-01-24 18:49 UTC (permalink / raw
  To: gentoo-commits

commit:     621e8c678667a09e33566e23ef25332bca6b17d2
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 24 18:49:45 2022 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Mon Jan 24 18:49:45 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=621e8c67

dev-ml/ocaml-process: fix build without ocamlopt

Closes: https://bugs.gentoo.org/829086
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild b/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild
index 66969b86741b..de33c2c8fc59 100644
--- a/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild
+++ b/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -20,10 +20,19 @@ BDEPEND="
 	test? ( dev-ml/alcotest )
 "
 
+src_compile() {
+	exts=.cma
+	use ocamlopt && exts+=' .cmx .cmxa'
+	export pkgs
+	emake TARGETS=${exts}
+}
+
 src_install() {
-	findlib_src_install
+	local archive=''
+	use ocamlopt && archive='_build/lib/process.a'
+	findlib_src_install TARGETS=${exts} ARCHIVES=${archives}
 }
 
 src_test() {
-	emake -j1 test
+	emake -j1 TARGETS=${exts} test
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-process/
@ 2022-01-25 19:14 Alfredo Tupone
  0 siblings, 0 replies; 5+ messages in thread
From: Alfredo Tupone @ 2022-01-25 19:14 UTC (permalink / raw
  To: gentoo-commits

commit:     00bdf68890fcae050410698bfdb5bb25b1f3e6b1
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 25 19:14:43 2022 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Tue Jan 25 19:14:43 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00bdf688

dev-ml/ocaml-process: fix ocamlopt build

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild b/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild
index de33c2c8fc59..2979a23b9a6f 100644
--- a/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild
+++ b/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild
@@ -24,13 +24,13 @@ src_compile() {
 	exts=.cma
 	use ocamlopt && exts+=' .cmx .cmxa'
 	export pkgs
-	emake TARGETS=${exts}
+	emake TARGETS="${exts}"
 }
 
 src_install() {
 	local archive=''
 	use ocamlopt && archive='_build/lib/process.a'
-	findlib_src_install TARGETS=${exts} ARCHIVES=${archives}
+	findlib_src_install TARGETS="${exts}" ARCHIVES=${archives}
 }
 
 src_test() {


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-process/
@ 2023-01-07 20:52 Maciej Barć
  0 siblings, 0 replies; 5+ messages in thread
From: Maciej Barć @ 2023-01-07 20:52 UTC (permalink / raw
  To: gentoo-commits

commit:     03ec5e0a93aef83ea87b9dc666a0bd7f954ac8d4
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  7 20:28:37 2023 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sat Jan  7 20:52:34 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03ec5e0a

dev-ml/ocaml-process: fix a spelling mistake in make opts

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

 ...rocess-0.2.1.ebuild => ocaml-process-0.2.1-r1.ebuild} | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild b/dev-ml/ocaml-process/ocaml-process-0.2.1-r1.ebuild
similarity index 77%
rename from dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild
rename to dev-ml/ocaml-process/ocaml-process-0.2.1-r1.ebuild
index 2979a23b9a6f..591c51a1167c 100644
--- a/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild
+++ b/dev-ml/ocaml-process/ocaml-process-0.2.1-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit findlib
 
@@ -27,12 +27,12 @@ src_compile() {
 	emake TARGETS="${exts}"
 }
 
-src_install() {
-	local archive=''
-	use ocamlopt && archive='_build/lib/process.a'
-	findlib_src_install TARGETS="${exts}" ARCHIVES=${archives}
-}
-
 src_test() {
 	emake -j1 TARGETS=${exts} test
 }
+
+src_install() {
+	local archives=''
+	use ocamlopt && archives='_build/lib/process.a'
+	findlib_src_install TARGETS="${exts}" ARCHIVES="${archives}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-process/
@ 2023-01-21 20:55 Alfredo Tupone
  0 siblings, 0 replies; 5+ messages in thread
From: Alfredo Tupone @ 2023-01-21 20:55 UTC (permalink / raw
  To: gentoo-commits

commit:     7c72668b78dd8de6b3600bb2cc089c559b8efa46
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 21 20:54:46 2023 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sat Jan 21 20:55:24 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c72668b

dev-ml/ocaml-process: fix test

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

 dev-ml/ocaml-process/ocaml-process-0.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/ocaml-process/ocaml-process-0.2.1-r1.ebuild b/dev-ml/ocaml-process/ocaml-process-0.2.1-r1.ebuild
index 591c51a1167c..14bb568133ff 100644
--- a/dev-ml/ocaml-process/ocaml-process-0.2.1-r1.ebuild
+++ b/dev-ml/ocaml-process/ocaml-process-0.2.1-r1.ebuild
@@ -28,7 +28,7 @@ src_compile() {
 }
 
 src_test() {
-	emake -j1 TARGETS=${exts} test
+	emake -j1 TARGETS="${exts}" test
 }
 
 src_install() {


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

end of thread, other threads:[~2023-01-21 20:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-07 20:52 [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-process/ Maciej Barć
  -- strict thread matches above, loose matches on Subject: below --
2023-01-21 20:55 Alfredo Tupone
2022-01-25 19:14 Alfredo Tupone
2022-01-24 18:49 Alfredo Tupone
2021-12-05  3:22 Maciej Barć

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