public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2020-11-28 18:37 Aaron Bauman
  0 siblings, 0 replies; 25+ messages in thread
From: Aaron Bauman @ 2020-11-28 18:37 UTC (permalink / raw
  To: gentoo-commits

commit:     31681921a409373c688c83cab653e559e4e1203f
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 28 18:11:46 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sat Nov 28 18:37:16 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31681921

dev-ml/cudf: drop old

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 dev-ml/cudf/Manifest           |  1 -
 dev-ml/cudf/cudf-0.8-r1.ebuild | 67 ------------------------------------------
 2 files changed, 68 deletions(-)

diff --git a/dev-ml/cudf/Manifest b/dev-ml/cudf/Manifest
index 1eb1b7a575b..1b912da432c 100644
--- a/dev-ml/cudf/Manifest
+++ b/dev-ml/cudf/Manifest
@@ -1,2 +1 @@
-DIST cudf-0.8.tar.gz 55147 BLAKE2B c091a55e438979f73bfd5fd16f1e793ec984b24becc902e6eed856afea0f39586001174847b8626bbf162c2b51cbb98cdb60d9539c9aac0a1d651b693e686704 SHA512 cea9e51094076089b1beb657f6b2ccc6ac5f49660e06743f8ec646b277beb4c830f90156ae240a6903de55d09caee78fb0dc75efd76ca65fd2b40ab8756301e3
 DIST cudf-0.9.tar.gz 55124 BLAKE2B 013f97d13b732674a7d0f9188590bbb8150ae9dc32ce26b56fb04848629fb27a3c850aa327e687d6aa80eb62ba6f67af2fcf86a647520e73d7f76748871a79cc SHA512 4abdd1a5a3d616273abe9dda87450a922ecd69b64d32f34d8fa3086bbd07fd23ffb01c24b128bf4d1c0c817cfa1da8029e743d33b3ad6a04e7a8f706b098c427

diff --git a/dev-ml/cudf/cudf-0.8-r1.ebuild b/dev-ml/cudf/cudf-0.8-r1.ebuild
deleted file mode 100644
index 68264255481..00000000000
--- a/dev-ml/cudf/cudf-0.8-r1.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit multilib toolchain-funcs
-
-DESCRIPTION="Library to parse, pretty print, and evaluate CUDF documents"
-HOMEPAGE="http://www.mancoosi.org/cudf/"
-SRC_URI="https://gforge.inria.fr/frs/download.php/file/34659/${P}.tar.gz"
-
-LICENSE="LGPL-3"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
-IUSE="+ocamlopt test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	>=dev-lang/ocaml-3.12:=[ocamlopt?]
-	dev-ml/extlib:=
-	dev-libs/glib:2
-	dev-ml/camlp4:=
-	dev-ml/cppo:=
-"
-DEPEND="${RDEPEND}
-	test? ( dev-ml/ounit )
-	dev-ml/findlib
-	dev-ml/ocamlbuild
-	dev-lang/perl
-"
-
-src_prepare() {
-	sed -i \
-		-e 's|make|$(MAKE)|g' \
-		Makefile || die
-	sed -i \
-		-e 's|-lncurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0 libunwind)|g' \
-		c-lib/Makefile || die
-	sed -i \
-		-e 's|-lcurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0 libunwind)|g' \
-		c-lib/Makefile.variants || die
-
-	tc-export CC PKG_CONFIG
-
-	sed -i \
-		-e "s|-lncurses|$( $(tc-getPKG_CONFIG) --libs ncurses)|g" \
-		c-lib/cudf.pc.in || die
-}
-
-src_compile() {
-	emake -j1 all
-	emake c-lib
-	if use ocamlopt ; then
-		emake -j1 opt
-		emake c-lib-opt
-	fi
-}
-
-src_test() {
-	emake test
-	emake c-lib-test
-}
-
-src_install() {
-	emake DESTDIR="${ED}" LIBDIR="/usr/$(get_libdir)" install
-	dodoc BUGS ChangeLog README TODO
-}


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2024-07-06 14:28 Alfredo Tupone
  0 siblings, 0 replies; 25+ messages in thread
From: Alfredo Tupone @ 2024-07-06 14:28 UTC (permalink / raw
  To: gentoo-commits

commit:     abf23c51ac7d10eb80ef8c6c43493066a7918fdb
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  6 14:27:30 2024 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sat Jul  6 14:28:20 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abf23c51

dev-ml/cudf: make it work with ocaml-5

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

 .../cudf/{cudf-0.10.ebuild => cudf-0.10-r1.ebuild} | 48 +++++++++++++++-------
 dev-ml/cudf/cudf-0.10.ebuild                       |  6 +--
 2 files changed, 37 insertions(+), 17 deletions(-)

diff --git a/dev-ml/cudf/cudf-0.10.ebuild b/dev-ml/cudf/cudf-0.10-r1.ebuild
similarity index 59%
copy from dev-ml/cudf/cudf-0.10.ebuild
copy to dev-ml/cudf/cudf-0.10-r1.ebuild
index 00c999757bff..c77436962e30 100644
--- a/dev-ml/cudf/cudf-0.10.ebuild
+++ b/dev-ml/cudf/cudf-0.10-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit dune toolchain-funcs
 
@@ -10,20 +10,22 @@ DESCRIPTION="Library to parse, pretty print, and evaluate CUDF documents"
 HOMEPAGE="http://www.mancoosi.org/cudf/"
 SRC_URI="https://gitlab.com/irill/${PN}/-/archive/v${PV}/${MYP}.tar.bz2"
 
-LICENSE="LGPL-3"
+S="${WORKDIR}"/${MYP}
+
+LICENSE="LGPL-3+"
 SLOT="0/${PV}"
-KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
 IUSE="+ocamlopt llvm-libunwind test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="
-	>=dev-lang/ocaml-3.12:=[ocamlopt?]
 	dev-ml/extlib:=
 	dev-ml/findlib:=
 	dev-libs/glib:2
 	llvm-libunwind? ( sys-libs/llvm-libunwind:= )
 	!llvm-libunwind? ( sys-libs/libunwind:= )
 	sys-libs/ncurses:=
+	app-arch/zstd
 "
 DEPEND="${RDEPEND}
 	test? ( dev-ml/ounit2 )
@@ -34,21 +36,39 @@ BDEPEND="virtual/pkgconfig"
 
 QA_FLAGS_IGNORED='.*'
 
-S="${WORKDIR}"/${MYP}
-
 src_prepare() {
 	default
 
 	sed -i \
 		-e 's|make|$(MAKE)|g' \
 		Makefile || die
-	sed -i \
-		-e 's|-lncurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0) -lunwind|g' \
-		-e "s|ar r|$(tc-getAR) r|g" \
-		c-lib/Makefile || die
-	sed -i \
-		-e 's|-lcurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0) -lunwind|g' \
-		c-lib/Makefile.variants || die
+
+	if has_version ">=dev-lang/ocaml-5" ; then
+		sed -i \
+			-e 's|-lncurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0) -lunwind -lzstd|g' \
+			-e "s|ar r|$(tc-getAR) r|g" \
+			c-lib/Makefile || die
+		sed -i \
+			-e 's|-lcurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0) -lunwind -lzstd|g' \
+			c-lib/Makefile.variants || die
+		if use ocamlopt ; then
+			sed -i \
+				-e 's|-lunix|-lunixnat|g' \
+				c-lib/Makefile || die
+		else
+			sed -i \
+				-e 's|-lunix|-lunixbyt|g' \
+				c-lib/Makefile || die
+		fi
+	else
+		sed -i \
+			-e 's|-lncurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0) -lunwind|g' \
+			-e "s|ar r|$(tc-getAR) r|g" \
+			c-lib/Makefile || die
+		sed -i \
+			-e 's|-lcurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0) -lunwind|g' \
+			c-lib/Makefile.variants || die
+	fi
 
 	tc-export CC PKG_CONFIG
 

diff --git a/dev-ml/cudf/cudf-0.10.ebuild b/dev-ml/cudf/cudf-0.10.ebuild
index 00c999757bff..d4e45e0e014f 100644
--- a/dev-ml/cudf/cudf-0.10.ebuild
+++ b/dev-ml/cudf/cudf-0.10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -10,6 +10,8 @@ DESCRIPTION="Library to parse, pretty print, and evaluate CUDF documents"
 HOMEPAGE="http://www.mancoosi.org/cudf/"
 SRC_URI="https://gitlab.com/irill/${PN}/-/archive/v${PV}/${MYP}.tar.bz2"
 
+S="${WORKDIR}"/${MYP}
+
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
 KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86"
@@ -34,8 +36,6 @@ BDEPEND="virtual/pkgconfig"
 
 QA_FLAGS_IGNORED='.*'
 
-S="${WORKDIR}"/${MYP}
-
 src_prepare() {
 	default
 


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2023-03-30 17:40 Arthur Zamarin
  0 siblings, 0 replies; 25+ messages in thread
From: Arthur Zamarin @ 2023-03-30 17:40 UTC (permalink / raw
  To: gentoo-commits

commit:     e958a9ba94a5d13d4c3ba9de0c5c84baf9bd4c55
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 30 17:40:10 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 30 17:40:10 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e958a9ba

dev-ml/cudf: Stabilize 0.10 arm64, #901509

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

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

diff --git a/dev-ml/cudf/cudf-0.10.ebuild b/dev-ml/cudf/cudf-0.10.ebuild
index b8cc26842e4f..00c999757bff 100644
--- a/dev-ml/cudf/cudf-0.10.ebuild
+++ b/dev-ml/cudf/cudf-0.10.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://gitlab.com/irill/${PN}/-/archive/v${PV}/${MYP}.tar.bz2"
 
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
-KEYWORDS="amd64 arm ~arm64 ~ppc ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86"
 IUSE="+ocamlopt llvm-libunwind test"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2023-03-30 17:39 Arthur Zamarin
  0 siblings, 0 replies; 25+ messages in thread
From: Arthur Zamarin @ 2023-03-30 17:39 UTC (permalink / raw
  To: gentoo-commits

commit:     65f4a82979c15f152a059f57c8a912c5f063f560
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 30 17:39:49 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 30 17:39:49 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65f4a829

dev-ml/cudf: Stabilize 0.10 arm, #901509

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

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

diff --git a/dev-ml/cudf/cudf-0.10.ebuild b/dev-ml/cudf/cudf-0.10.ebuild
index c361f445d2b1..b8cc26842e4f 100644
--- a/dev-ml/cudf/cudf-0.10.ebuild
+++ b/dev-ml/cudf/cudf-0.10.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://gitlab.com/irill/${PN}/-/archive/v${PV}/${MYP}.tar.bz2"
 
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~riscv x86"
+KEYWORDS="amd64 arm ~arm64 ~ppc ppc64 ~riscv x86"
 IUSE="+ocamlopt llvm-libunwind test"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2023-03-26 16:16 Arthur Zamarin
  0 siblings, 0 replies; 25+ messages in thread
From: Arthur Zamarin @ 2023-03-26 16:16 UTC (permalink / raw
  To: gentoo-commits

commit:     ab91c353a994e8916a3d9d50ce2bea64013a21f8
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 26 16:16:50 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 26 16:16:50 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab91c353

dev-ml/cudf: Stabilize 0.10 x86, #901509

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

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

diff --git a/dev-ml/cudf/cudf-0.10.ebuild b/dev-ml/cudf/cudf-0.10.ebuild
index 0080379c48ce..c361f445d2b1 100644
--- a/dev-ml/cudf/cudf-0.10.ebuild
+++ b/dev-ml/cudf/cudf-0.10.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://gitlab.com/irill/${PN}/-/archive/v${PV}/${MYP}.tar.bz2"
 
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~riscv x86"
 IUSE="+ocamlopt llvm-libunwind test"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2023-03-17 16:29 Arthur Zamarin
  0 siblings, 0 replies; 25+ messages in thread
From: Arthur Zamarin @ 2023-03-17 16:29 UTC (permalink / raw
  To: gentoo-commits

commit:     efb4ab0d47728db83c90f189f58a6d9f9e6ef248
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 17 16:29:09 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 17 16:29:09 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efb4ab0d

dev-ml/cudf: Stabilize 0.10 ppc64, #901509

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

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

diff --git a/dev-ml/cudf/cudf-0.10.ebuild b/dev-ml/cudf/cudf-0.10.ebuild
index 35af527f4699..0080379c48ce 100644
--- a/dev-ml/cudf/cudf-0.10.ebuild
+++ b/dev-ml/cudf/cudf-0.10.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://gitlab.com/irill/${PN}/-/archive/v${PV}/${MYP}.tar.bz2"
 
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~riscv ~x86"
 IUSE="+ocamlopt llvm-libunwind test"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2023-01-31 17:40 Alfredo Tupone
  0 siblings, 0 replies; 25+ messages in thread
From: Alfredo Tupone @ 2023-01-31 17:40 UTC (permalink / raw
  To: gentoo-commits

commit:     b791dd2aef73b061a8cc8c099de90f39c36a777e
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 31 17:36:18 2023 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Tue Jan 31 17:39:22 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b791dd2a

dev-ml/cudf: fix install

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

 dev-ml/cudf/cudf-0.10.ebuild | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-ml/cudf/cudf-0.10.ebuild b/dev-ml/cudf/cudf-0.10.ebuild
index 4f7747d11caf..3f445d97a5b3 100644
--- a/dev-ml/cudf/cudf-0.10.ebuild
+++ b/dev-ml/cudf/cudf-0.10.ebuild
@@ -71,6 +71,9 @@ src_test() {
 }
 
 src_install() {
-	emake DESTDIR="${ED}" LIBDIR="/usr/$(get_libdir)" install
-	dodoc BUGS ChangeLog README TODO
+	dune_src_install
+	mv "${ED}"/usr/share/doc/${PF}/{cudf/README,} || die
+	rmdir "${ED}"/usr/share/doc/${PF}/cudf || die
+	emake DESTDIR="${ED}" -C c-lib/ LIBDIR="/usr/$(get_libdir)" -e install
+	dodoc BUGS ChangeLog
 }


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2023-01-31 11:15 Alfredo Tupone
  0 siblings, 0 replies; 25+ messages in thread
From: Alfredo Tupone @ 2023-01-31 11:15 UTC (permalink / raw
  To: gentoo-commits

commit:     343be8f19a552ceddd9c7d6a921c52a01451a5aa
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 31 11:15:40 2023 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Tue Jan 31 11:15:40 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=343be8f1

dev-ml/cudf: destabilize 0.10

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

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

diff --git a/dev-ml/cudf/cudf-0.10.ebuild b/dev-ml/cudf/cudf-0.10.ebuild
index f5c8c27e9d2a..4f7747d11caf 100644
--- a/dev-ml/cudf/cudf-0.10.ebuild
+++ b/dev-ml/cudf/cudf-0.10.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://gitlab.com/irill/${PN}/-/archive/v${PV}/${MYP}.tar.bz2"
 
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
-KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
 IUSE="+ocamlopt llvm-libunwind test"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2022-01-21  7:59 Alfredo Tupone
  0 siblings, 0 replies; 25+ messages in thread
From: Alfredo Tupone @ 2022-01-21  7:59 UTC (permalink / raw
  To: gentoo-commits

commit:     f688d786cc276b390cc4ab7a51a25ed009b240e3
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 21 07:59:35 2022 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Fri Jan 21 07:59:35 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f688d786

dev-ml/cudf: do not call ar directly

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

 dev-ml/cudf/cudf-0.9-r2.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-ml/cudf/cudf-0.9-r2.ebuild b/dev-ml/cudf/cudf-0.9-r2.ebuild
index dcde53347192..01a76010f2c7 100644
--- a/dev-ml/cudf/cudf-0.9-r2.ebuild
+++ b/dev-ml/cudf/cudf-0.9-r2.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
@@ -43,6 +43,7 @@ src_prepare() {
 		Makefile || die
 	sed -i \
 		-e 's|-lncurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0) -lunwind|g' \
+		-e "s|ar r|$(tc-getAR) r|g" \
 		c-lib/Makefile || die
 	sed -i \
 		-e 's|-lcurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0) -lunwind|g' \


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2021-10-11  5:02 Sam James
  0 siblings, 0 replies; 25+ messages in thread
From: Sam James @ 2021-10-11  5:02 UTC (permalink / raw
  To: gentoo-commits

commit:     78fcfe98d7e96695c406b8481294b54039726842
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 11 04:57:45 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 11 04:57:45 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78fcfe98

dev-ml/cudf: allow llvm-libunwind

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ml/cudf/{cudf-0.9-r1.ebuild => cudf-0.9-r2.ebuild} | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/dev-ml/cudf/cudf-0.9-r1.ebuild b/dev-ml/cudf/cudf-0.9-r2.ebuild
similarity index 84%
rename from dev-ml/cudf/cudf-0.9-r1.ebuild
rename to dev-ml/cudf/cudf-0.9-r2.ebuild
index 769436a427c..dcde5334719 100644
--- a/dev-ml/cudf/cudf-0.9-r1.ebuild
+++ b/dev-ml/cudf/cudf-0.9-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://gforge.inria.fr/frs/download.php/file/36602/${P}.tar.gz"
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
 KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
-IUSE="+ocamlopt test"
+IUSE="+ocamlopt llvm-libunwind test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="
@@ -20,7 +20,8 @@ RDEPEND="
 	dev-ml/extlib:=
 	dev-ml/findlib:=
 	dev-libs/glib:2
-	sys-libs/libunwind:=
+	llvm-libunwind? ( sys-libs/llvm-libunwind:= )
+	!llvm-libunwind? ( sys-libs/libunwind:= )
 	sys-libs/ncurses:=
 "
 DEPEND="${RDEPEND}
@@ -41,10 +42,10 @@ src_prepare() {
 		-e 's|make|$(MAKE)|g' \
 		Makefile || die
 	sed -i \
-		-e 's|-lncurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0 libunwind)|g' \
+		-e 's|-lncurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0) -lunwind|g' \
 		c-lib/Makefile || die
 	sed -i \
-		-e 's|-lcurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0 libunwind)|g' \
+		-e 's|-lcurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0) -lunwind|g' \
 		c-lib/Makefile.variants || die
 
 	tc-export CC PKG_CONFIG


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2021-02-11  6:31 Sam James
  0 siblings, 0 replies; 25+ messages in thread
From: Sam James @ 2021-02-11  6:31 UTC (permalink / raw
  To: gentoo-commits

commit:     6189b675d488c7ad75862eb50d514c75a248ec12
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 11 06:31:22 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 11 06:31:22 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6189b675

dev-ml/cudf: Stabilize 0.9 ppc, #769317

Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/dev-ml/cudf/cudf-0.9.ebuild b/dev-ml/cudf/cudf-0.9.ebuild
index a4b54ec9eaf..c0f2acca2c1 100644
--- a/dev-ml/cudf/cudf-0.9.ebuild
+++ b/dev-ml/cudf/cudf-0.9.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://gforge.inria.fr/frs/download.php/file/36602/${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86"
 IUSE="+ocamlopt test"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2021-02-11  6:26 Sam James
  0 siblings, 0 replies; 25+ messages in thread
From: Sam James @ 2021-02-11  6:26 UTC (permalink / raw
  To: gentoo-commits

commit:     543cef162113761cab8d065cd7baa6e3cfae3c76
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 11 06:25:36 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 11 06:25:36 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=543cef16

dev-ml/cudf: Stabilize 0.9 x86, #769317

Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/dev-ml/cudf/cudf-0.9.ebuild b/dev-ml/cudf/cudf-0.9.ebuild
index df997f658c5..a4b54ec9eaf 100644
--- a/dev-ml/cudf/cudf-0.9.ebuild
+++ b/dev-ml/cudf/cudf-0.9.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://gforge.inria.fr/frs/download.php/file/36602/${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 x86"
 IUSE="+ocamlopt test"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2021-02-10 18:53 Sam James
  0 siblings, 0 replies; 25+ messages in thread
From: Sam James @ 2021-02-10 18:53 UTC (permalink / raw
  To: gentoo-commits

commit:     289d846992c3abd50f36fb59d34bdd8a151edf30
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 10 18:53:02 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 18:53:02 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=289d8469

dev-ml/cudf: Stabilize 0.9 amd64, #769317

Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/dev-ml/cudf/cudf-0.9.ebuild b/dev-ml/cudf/cudf-0.9.ebuild
index 27e50d44fb2..df997f658c5 100644
--- a/dev-ml/cudf/cudf-0.9.ebuild
+++ b/dev-ml/cudf/cudf-0.9.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://gforge.inria.fr/frs/download.php/file/36602/${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~x86"
 IUSE="+ocamlopt test"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2021-02-10 16:33 Sam James
  0 siblings, 0 replies; 25+ messages in thread
From: Sam James @ 2021-02-10 16:33 UTC (permalink / raw
  To: gentoo-commits

commit:     aeb31112d3babc78a03f2ab813d9e8274561118b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 10 16:32:49 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 16:32:49 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aeb31112

dev-ml/cudf: Stabilize 0.9 ppc64, #769317

Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/dev-ml/cudf/cudf-0.9.ebuild b/dev-ml/cudf/cudf-0.9.ebuild
index 13002a67f91..27e50d44fb2 100644
--- a/dev-ml/cudf/cudf-0.9.ebuild
+++ b/dev-ml/cudf/cudf-0.9.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://gforge.inria.fr/frs/download.php/file/36602/${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ppc64 ~x86"
 IUSE="+ocamlopt test"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2021-01-26 17:40 Alfredo Tupone
  0 siblings, 0 replies; 25+ messages in thread
From: Alfredo Tupone @ 2021-01-26 17:40 UTC (permalink / raw
  To: gentoo-commits

commit:     dc7064e731a1fc125e8f399f04529dd4b0e2a1dc
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 26 17:40:39 2021 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Tue Jan 26 17:40:39 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc7064e7

dev-ml/cudf: ignore QA Flags warning

Closes: https://bugs.gentoo.org/748825
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-ml/cudf/cudf-0.9.ebuild | 4 +++-
 dev-ml/cudf/metadata.xml    | 4 ++++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/dev-ml/cudf/cudf-0.9.ebuild b/dev-ml/cudf/cudf-0.9.ebuild
index 9877b5c886c..13002a67f91 100644
--- a/dev-ml/cudf/cudf-0.9.ebuild
+++ b/dev-ml/cudf/cudf-0.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -28,6 +28,8 @@ DEPEND="${RDEPEND}
 "
 PATCHES=( "${FILESDIR}/ounit2.patch" )
 
+QA_FLAGS_IGNORED='.*'
+
 src_prepare() {
 	default
 

diff --git a/dev-ml/cudf/metadata.xml b/dev-ml/cudf/metadata.xml
index a4f6be63adb..e24f3283a00 100644
--- a/dev-ml/cudf/metadata.xml
+++ b/dev-ml/cudf/metadata.xml
@@ -1,6 +1,10 @@
 <?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>
 	<maintainer type="person">
 		<email>gienah@gentoo.org</email>
 		<name>Mark Wright</name>


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2020-10-28  3:36 Sam James
  0 siblings, 0 replies; 25+ messages in thread
From: Sam James @ 2020-10-28  3:36 UTC (permalink / raw
  To: gentoo-commits

commit:     6489fa0be1ed6665066688e3464209c3dc6eed76
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 28 03:32:15 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 28 03:32:15 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6489fa0b

dev-ml/cudf: ppc64 keyworded (bug #748576)

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/dev-ml/cudf/cudf-0.9.ebuild b/dev-ml/cudf/cudf-0.9.ebuild
index 0294691bd95..9877b5c886c 100644
--- a/dev-ml/cudf/cudf-0.9.ebuild
+++ b/dev-ml/cudf/cudf-0.9.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://gforge.inria.fr/frs/download.php/file/36602/${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 IUSE="+ocamlopt test"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2020-10-17 11:45 Mark Wright
  0 siblings, 0 replies; 25+ messages in thread
From: Mark Wright @ 2020-10-17 11:45 UTC (permalink / raw
  To: gentoo-commits

commit:     a9511a558e48c0f6a7a74a8d7c161eda1948dd3f
Author:     Mark Wright <gienah <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 17 11:44:37 2020 +0000
Commit:     Mark Wright <gienah <AT> gentoo <DOT> org>
CommitDate: Sat Oct 17 11:44:37 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9511a55

dev-ml/cudf: Fix 633836 749243

cudf needs to be linked with libunwind when compiled with dev-lang/ocaml
where dev-lang/ocaml is compiled with the spacetime USE flag.  Thanks
to Flo Gravo and toralf for reporting.

Closes: https://bugs.gentoo.org/633836
Closes: https://bugs.gentoo.org/749243
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Mark Wright <gienah <AT> gentoo.org>

 dev-ml/cudf/cudf-0.8-r1.ebuild | 6 +++---
 dev-ml/cudf/cudf-0.9.ebuild    | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-ml/cudf/cudf-0.8-r1.ebuild b/dev-ml/cudf/cudf-0.8-r1.ebuild
index 3d7e202217b..68264255481 100644
--- a/dev-ml/cudf/cudf-0.8-r1.ebuild
+++ b/dev-ml/cudf/cudf-0.8-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -34,10 +34,10 @@ src_prepare() {
 		-e 's|make|$(MAKE)|g' \
 		Makefile || die
 	sed -i \
-		-e 's|-lncurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0)|g' \
+		-e 's|-lncurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0 libunwind)|g' \
 		c-lib/Makefile || die
 	sed -i \
-		-e 's|-lcurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0)|g' \
+		-e 's|-lcurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0 libunwind)|g' \
 		c-lib/Makefile.variants || die
 
 	tc-export CC PKG_CONFIG

diff --git a/dev-ml/cudf/cudf-0.9.ebuild b/dev-ml/cudf/cudf-0.9.ebuild
index 5a176346903..0294691bd95 100644
--- a/dev-ml/cudf/cudf-0.9.ebuild
+++ b/dev-ml/cudf/cudf-0.9.ebuild
@@ -35,10 +35,10 @@ src_prepare() {
 		-e 's|make|$(MAKE)|g' \
 		Makefile || die
 	sed -i \
-		-e 's|-lncurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0)|g' \
+		-e 's|-lncurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0 libunwind)|g' \
 		c-lib/Makefile || die
 	sed -i \
-		-e 's|-lcurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0)|g' \
+		-e 's|-lcurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0 libunwind)|g' \
 		c-lib/Makefile.variants || die
 
 	tc-export CC PKG_CONFIG


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2020-10-15 12:51 Mark Wright
  0 siblings, 0 replies; 25+ messages in thread
From: Mark Wright @ 2020-10-15 12:51 UTC (permalink / raw
  To: gentoo-commits

commit:     7749ac7bba1bde1a0c1f8bf4b8fe1c3b07828304
Author:     Mark Wright <gienah <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 15 12:47:36 2020 +0000
Commit:     Mark Wright <gienah <AT> gentoo <DOT> org>
CommitDate: Thu Oct 15 12:47:36 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7749ac7b

dev-ml/cudf: Needs dev-ml/findlib:= in RDEPEND

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Mark Wright <gienah <AT> gentoo.org>

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

diff --git a/dev-ml/cudf/cudf-0.9.ebuild b/dev-ml/cudf/cudf-0.9.ebuild
index 5ad0b0237b4..5a176346903 100644
--- a/dev-ml/cudf/cudf-0.9.ebuild
+++ b/dev-ml/cudf/cudf-0.9.ebuild
@@ -18,11 +18,11 @@ RESTRICT="!test? ( test )"
 RDEPEND="
 	>=dev-lang/ocaml-3.12:=[ocamlopt?]
 	dev-ml/extlib:=
+	dev-ml/findlib:=
 	dev-libs/glib:2
 "
 DEPEND="${RDEPEND}
 	test? ( dev-ml/ounit2 )
-	dev-ml/findlib
 	dev-ml/ocamlbuild
 	dev-lang/perl
 "


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2020-10-14 11:34 Mark Wright
  0 siblings, 0 replies; 25+ messages in thread
From: Mark Wright @ 2020-10-14 11:34 UTC (permalink / raw
  To: gentoo-commits

commit:     054c007ef1454092d0b347dc764fa0f3348aa533
Author:     Mark Wright <gienah <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 14 10:06:48 2020 +0000
Commit:     Mark Wright <gienah <AT> gentoo <DOT> org>
CommitDate: Wed Oct 14 11:33:46 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=054c007e

dev-ml/cudf: Fix QA MissingTestRestrict

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Mark Wright <gienah <AT> gentoo.org>

 dev-ml/cudf/cudf-0.9.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-ml/cudf/cudf-0.9.ebuild b/dev-ml/cudf/cudf-0.9.ebuild
index 28ff0c29911..5ad0b0237b4 100644
--- a/dev-ml/cudf/cudf-0.9.ebuild
+++ b/dev-ml/cudf/cudf-0.9.ebuild
@@ -13,6 +13,7 @@ LICENSE="LGPL-3"
 SLOT="0/${PV}"
 KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
 IUSE="+ocamlopt test"
+RESTRICT="!test? ( test )"
 
 RDEPEND="
 	>=dev-lang/ocaml-3.12:=[ocamlopt?]


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2017-08-02 11:23 Alexis Ballier
  0 siblings, 0 replies; 25+ messages in thread
From: Alexis Ballier @ 2017-08-02 11:23 UTC (permalink / raw
  To: gentoo-commits

commit:     cc14abff1f0e24a0a1874dd5c8619195b617f2e9
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Aug  2 10:34:34 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Aug  2 11:22:45 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc14abff

dev-ml/cudf: keyword ~x86

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-ml/cudf/cudf-0.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/cudf/cudf-0.8-r1.ebuild b/dev-ml/cudf/cudf-0.8-r1.ebuild
index 55e3b963b89..4798b763acc 100644
--- a/dev-ml/cudf/cudf-0.8-r1.ebuild
+++ b/dev-ml/cudf/cudf-0.8-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://gforge.inria.fr/frs/download.php/file/34659/${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
 IUSE="+ocamlopt test"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2017-04-05 17:50 Markus Meier
  0 siblings, 0 replies; 25+ messages in thread
From: Markus Meier @ 2017-04-05 17:50 UTC (permalink / raw
  To: gentoo-commits

commit:     198fd6fbd5111eba9c63122b0d6d86d5cf4d8467
Author:     Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Wed Apr  5 17:36:21 2017 +0000
Commit:     Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Wed Apr  5 17:49:38 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=198fd6fb

dev-ml/cudf: add ~arm, bug #611014

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm"

 dev-ml/cudf/cudf-0.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/cudf/cudf-0.8-r1.ebuild b/dev-ml/cudf/cudf-0.8-r1.ebuild
index d420125769b..fda346a3a0b 100644
--- a/dev-ml/cudf/cudf-0.8-r1.ebuild
+++ b/dev-ml/cudf/cudf-0.8-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://gforge.inria.fr/frs/download.php/file/34659/${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ppc"
+KEYWORDS="~amd64 ~arm ~ppc"
 IUSE="+ocamlopt test"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2017-04-05  9:51 Michael Weber
  0 siblings, 0 replies; 25+ messages in thread
From: Michael Weber @ 2017-04-05  9:51 UTC (permalink / raw
  To: gentoo-commits

commit:     23588d1ab47878278878fd46c8f81503bc16128d
Author:     Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Wed Apr  5 09:33:34 2017 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Wed Apr  5 09:51:04 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23588d1a

dev-ml/cudf: add ~ppc (bug 527318).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="ppc"

 dev-ml/cudf/cudf-0.8-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/cudf/cudf-0.8-r1.ebuild b/dev-ml/cudf/cudf-0.8-r1.ebuild
index a32c0f76930..d420125769b 100644
--- a/dev-ml/cudf/cudf-0.8-r1.ebuild
+++ b/dev-ml/cudf/cudf-0.8-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ SRC_URI="https://gforge.inria.fr/frs/download.php/file/34659/${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~ppc"
 IUSE="+ocamlopt test"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2016-04-30 15:52 Alexis Ballier
  0 siblings, 0 replies; 25+ messages in thread
From: Alexis Ballier @ 2016-04-30 15:52 UTC (permalink / raw
  To: gentoo-commits

commit:     9dcd652f3df8cf9d456dfacdf0c2b79f874659db
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 30 15:52:08 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Apr 30 15:52:16 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dcd652f

dev-ml/cudf: add := dep on cppo.

The dep is not a real one, it is there only by transitivity from extlib but if cudf is not rebuilt after a cppo update this causes issues like bug #580952.
Sadly, we dont have transitive := deps so we have to duplicate the dep here in cudf ebuild.

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

 dev-ml/cudf/{cudf-0.8.ebuild => cudf-0.8-r1.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-ml/cudf/cudf-0.8.ebuild b/dev-ml/cudf/cudf-0.8-r1.ebuild
similarity index 98%
rename from dev-ml/cudf/cudf-0.8.ebuild
rename to dev-ml/cudf/cudf-0.8-r1.ebuild
index 1e63770..91b6bcc 100644
--- a/dev-ml/cudf/cudf-0.8.ebuild
+++ b/dev-ml/cudf/cudf-0.8-r1.ebuild
@@ -20,6 +20,7 @@ RDEPEND="
 	dev-ml/extlib:=
 	dev-libs/glib:2
 	dev-ml/camlp4:=
+	dev-ml/cppo:=
 "
 DEPEND="${RDEPEND}
 	test? ( dev-ml/ounit )


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2016-03-01 18:47 Alexis Ballier
  0 siblings, 0 replies; 25+ messages in thread
From: Alexis Ballier @ 2016-03-01 18:47 UTC (permalink / raw
  To: gentoo-commits

commit:     f2eb9a35df90e9331044b6dc3d2ea7dd5790cb94
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Mar  1 18:23:36 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Mar  1 18:47:37 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2eb9a35

dev-ml/cudf: add ocamlbuild dep

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

 dev-ml/cudf/cudf-0.8.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-ml/cudf/cudf-0.8.ebuild b/dev-ml/cudf/cudf-0.8.ebuild
index 5b36bb3..1e63770 100644
--- a/dev-ml/cudf/cudf-0.8.ebuild
+++ b/dev-ml/cudf/cudf-0.8.ebuild
@@ -19,11 +19,12 @@ RDEPEND="
 	>=dev-lang/ocaml-3.12:=[ocamlopt?]
 	dev-ml/extlib:=
 	dev-libs/glib:2
-	|| ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 )
+	dev-ml/camlp4:=
 "
 DEPEND="${RDEPEND}
 	test? ( dev-ml/ounit )
 	dev-ml/findlib
+	dev-ml/ocamlbuild
 	dev-lang/perl
 "
 


^ permalink raw reply related	[flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/
@ 2016-03-01 18:47 Alexis Ballier
  0 siblings, 0 replies; 25+ messages in thread
From: Alexis Ballier @ 2016-03-01 18:47 UTC (permalink / raw
  To: gentoo-commits

commit:     f3296258af5ddae2e6fea6ff002267b38baf2830
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Mar  1 18:23:00 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Mar  1 18:47:37 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3296258

dev-ml/cudf: remove old

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

 dev-ml/cudf/Manifest        |  1 -
 dev-ml/cudf/cudf-0.7.ebuild | 65 ---------------------------------------------
 2 files changed, 66 deletions(-)

diff --git a/dev-ml/cudf/Manifest b/dev-ml/cudf/Manifest
index 6f115b5..29fda92 100644
--- a/dev-ml/cudf/Manifest
+++ b/dev-ml/cudf/Manifest
@@ -1,2 +1 @@
-DIST cudf-0.7.tar.gz 54821 SHA256 92c8a9ed730bbac73f3513abab41127d966c9b9202ab2aaffcd02358c030a701 SHA512 6adf17c076c0308416f6f8bccb361d03645909f535e6cd0ba34860706e5f26628d33ab4f208fb8def28de1499649279febafd895bdde498f35a77e06128e64fa WHIRLPOOL 798ca87c1cc48d00e62a1e6d627fe6d35839fb16d6b2b10ba42f3eea29e3a48e2f5b070b93647a53833a471b1a6a665e759ab3b7cc2bda238d2dec4a8eb0866e
 DIST cudf-0.8.tar.gz 55147 SHA256 06f8ce019c87893e27d545b5cf8dc38041657a4c4856c02be4e99e8175874229 SHA512 cea9e51094076089b1beb657f6b2ccc6ac5f49660e06743f8ec646b277beb4c830f90156ae240a6903de55d09caee78fb0dc75efd76ca65fd2b40ab8756301e3 WHIRLPOOL 2834b5a3d15bbbefc51cd5e54c1ee2155481cecbc91838fca94470b06750576c0719504e51e858145bdae657de739809007bb5b5958469d71010492f245651af

diff --git a/dev-ml/cudf/cudf-0.7.ebuild b/dev-ml/cudf/cudf-0.7.ebuild
deleted file mode 100644
index de13bb1..0000000
--- a/dev-ml/cudf/cudf-0.7.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit multilib toolchain-funcs
-
-DESCRIPTION="Library to parse, pretty print, and evaluate CUDF documents"
-HOMEPAGE="http://www.mancoosi.org/cudf/"
-SRC_URI="https://gforge.inria.fr/frs/download.php/file/33593/${P}.tar.gz"
-
-LICENSE="LGPL-3"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="+ocamlopt test"
-
-RDEPEND="
-	>=dev-lang/ocaml-3.12:=[ocamlopt?]
-	dev-ml/extlib:=
-	dev-libs/glib:2
-	|| ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 )
-"
-DEPEND="${RDEPEND}
-	test? ( dev-ml/ounit )
-	dev-ml/findlib
-	dev-lang/perl
-"
-
-src_prepare() {
-	sed -i \
-		-e 's|make|$(MAKE)|g' \
-		Makefile || die
-	sed -i \
-		-e 's|-lncurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0)|g' \
-		c-lib/Makefile || die
-	sed -i \
-		-e 's|-lcurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0)|g' \
-		c-lib/Makefile.variants || die
-
-	tc-export CC PKG_CONFIG
-
-	sed -i \
-		-e "s|-lncurses|$( $(tc-getPKG_CONFIG) --libs ncurses)|g" \
-		c-lib/cudf.pc.in || die
-}
-
-src_compile() {
-	emake -j1 all
-	emake c-lib
-	if use ocamlopt ; then
-		emake -j1 opt
-		emake c-lib-opt
-	fi
-}
-
-src_test() {
-	emake test
-	emake c-lib-test
-}
-
-src_install() {
-	emake DESTDIR="${ED}" LIBDIR="/usr/$(get_libdir)" install
-	dodoc BUGS ChangeLog README TODO
-}


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

end of thread, other threads:[~2024-07-06 14:28 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-28 18:37 [gentoo-commits] repo/gentoo:master commit in: dev-ml/cudf/ Aaron Bauman
  -- strict thread matches above, loose matches on Subject: below --
2024-07-06 14:28 Alfredo Tupone
2023-03-30 17:40 Arthur Zamarin
2023-03-30 17:39 Arthur Zamarin
2023-03-26 16:16 Arthur Zamarin
2023-03-17 16:29 Arthur Zamarin
2023-01-31 17:40 Alfredo Tupone
2023-01-31 11:15 Alfredo Tupone
2022-01-21  7:59 Alfredo Tupone
2021-10-11  5:02 Sam James
2021-02-11  6:31 Sam James
2021-02-11  6:26 Sam James
2021-02-10 18:53 Sam James
2021-02-10 16:33 Sam James
2021-01-26 17:40 Alfredo Tupone
2020-10-28  3:36 Sam James
2020-10-17 11:45 Mark Wright
2020-10-15 12:51 Mark Wright
2020-10-14 11:34 Mark Wright
2017-08-02 11:23 Alexis Ballier
2017-04-05 17:50 Markus Meier
2017-04-05  9:51 Michael Weber
2016-04-30 15:52 Alexis Ballier
2016-03-01 18:47 Alexis Ballier
2016-03-01 18: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