[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/, dev-ml/facile/files/

2024-03-22 Thread Andreas Sturmlechner
commit: 4b4b386eb940284e43dd66ca43a3eda3816e08b6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Mar 22 09:55:19 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Mar 22 09:55:19 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b4b386e

dev-ml/facile: drop 1.1.3-r1

Closes: https://bugs.gentoo.org/909072
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-ml/facile/Manifest|  1 -
 dev-ml/facile/facile-1.1.3-r1.ebuild  | 53 ---
 dev-ml/facile/files/facile-1.1-make.patch | 48 
 3 files changed, 102 deletions(-)

diff --git a/dev-ml/facile/Manifest b/dev-ml/facile/Manifest
index 8d6cbde9bf91..95ae8dfd8d61 100644
--- a/dev-ml/facile/Manifest
+++ b/dev-ml/facile/Manifest
@@ -1,2 +1 @@
-DIST facile-1.1.3.tar.gz 99656 BLAKE2B 
19d81c48c39b96083628cc40eb9aca7e8ad7dea4ae81c884bfb22daa56135ac411698d57b68f3112829a1fc53d29612627809901c6e30eb4672776508eee57b2
 SHA512 
78d315188e661245eb7306b645e9baaca94db0b952b57dbc8597bf2f75cab5604c8f4cf850209464e802c636f592552c8b492730cb28896d2acd7f413346
 DIST facile-1.1.4.tbz 83874 BLAKE2B 
a0921615425124b6f1ba51a939bd4c89bcab71a0341e5b866f2c44d89863c077c42f269fcee2a8e302c580ce618c4e765f826fd9c4855f9e992c35cbdc8660db
 SHA512 
b4484275ebf7f0bd271d865c6745bd1784e2260060470f64f86a18833a9663efbf56b089ae668c51f57bc8473281af4e92d461b87eefb2c62162fa7da60838f9

diff --git a/dev-ml/facile/facile-1.1.3-r1.ebuild 
b/dev-ml/facile/facile-1.1.3-r1.ebuild
deleted file mode 100644
index c70362927300..
--- a/dev-ml/facile/facile-1.1.3-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="OCaml constraint programming library on integer & integer set 
finite domains"
-HOMEPAGE="http://opti.recherche.enac.fr/";
-SRC_URI="http://opti.recherche.enac.fr/facile/distrib/${P}.tar.gz";
-
-LICENSE="LGPL-2.1"
-SLOT="0/${PV}"
-
-KEYWORDS="amd64 arm64 ~hppa ~ia64 ~ppc ppc64 x86"
-IUSE="+ocamlopt"
-
-RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"
-DEPEND="${RDEPEND}"
-
-PATCHES=( "${FILESDIR}/${PN}"-1.1-make.patch ) # Fix building on FreeBSD
-
-QA_FLAGS_IGNORED='.*'
-
-src_prepare() {
-   default
-
-   # Disable building native code objects if we dont have/want ocamlopt
-   if ! use ocamlopt; then
-   sed -i -e 's/\.opt//' src/Makefile || die "failed to change 
native code compiler to bytecode ones"
-   sed -i -e 's/ facile\.cmxa//' src/Makefile || die "failed to 
remove native code objects"
-   sed -i -e 's/\.opt/.out/g' \
-   -e 's: src/facile\.cmxa::'\
-   -e 's: src/facile\.a::'\
-   -e 's:^.*facile\.cmxa::'\
-   -e 's:^.*facile\.a::' Makefile || die "failed to remove 
native code objects"
-   fi
-   sed -i \
-   -e 's|$(FACILE|$(DESTDIR)$(FACILE|g' \
-   Makefile || die
-}
-
-src_configure() {
-   # This is a custom configure script and it does not support standard 
options
-   ./configure || die
-}
-
-src_test() {
-   emake check
-}
-
-src_install() {
-   dodir $(ocamlc -where)
-   default
-}

diff --git a/dev-ml/facile/files/facile-1.1-make.patch 
b/dev-ml/facile/files/facile-1.1-make.patch
deleted file mode 100644
index 7b77639d2277..
--- a/dev-ml/facile/files/facile-1.1-make.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-diff -ur a/Makefile b/Makefile
 a/Makefile 2004-09-08 10:51:02 +0100
-+++ b/Makefile 2007-10-23 13:11:28 +0100
-@@ -3,7 +3,7 @@
- include config_Makefile
- 
- compile:
--  cd src; make
-+  cd src; $(MAKE) 
- 
- install:
-   if test -d $(FACILEDIR); then : ; else mkdir $(FACILEDIR); fi
-@@ -14,10 +14,10 @@
-   chmod a+r $(FACILEDIR)/facile.a
- 
- clean:
--  cd src; make clean
-+  cd src; $(MAKE) clean
- 
- distclean uninstall:
-   rm -fr $(FACILEDIR)
- 
- check:
--  cd examples; make FACILEDIR=../src queens.opt; ./queens.opt 8
-+  cd examples; $(MAKE) FACILEDIR=../src queens.opt; ./queens.opt 8
-diff -ur a/src/Makefile b/src/Makefile
 a/src/Makefile 2004-09-08 10:51:02 +0100
-+++ b/src/Makefile 2007-10-23 13:10:34 +0100
-@@ -28,7 +28,7 @@
- # Version of the library to be linked with the -p (profiler) option
- facile.p.cmxa : $(CSTR)
-   rm -fr $(CSTRCMX)
--  make facile.cmxa OPTOPT=-p
-+  $(MAKE) facile.cmxa OPTOPT=-p
-   rm -fr $(CSTRCMX)
-   mv facile.cmxa $@
-   mv facile.a facile.p.a
-@@ -41,8 +41,8 @@
- # Does not work with many modules (e.g. containing class expressions
- facile.exp.cmxa : $(CSTR)
-   rm -fr $(CSTRCMX)
--  make fcl_stak.cmx fcl_cstr.cmx fcl_inv.cmx fcl_reify.cmx fcl_arith.cmx 
fcl_goals.cmx fcl_fdArray.cmx fcl_gcc.cmx fcl_alldiff.cmx fcl_sorting.cmx 
fcl_interval.cmx facile.cmx
--  make facile.cmxa OPTOPT="-pp inline_fun

[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2023-03-24 Thread Arthur Zamarin
commit: 3a9950e68054e6a39958b01ba869e35e317843ae
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Mar 24 21:05:18 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Mar 24 21:05:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a9950e6

dev-ml/facile: Stabilize 1.1.4 x86, #901605

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-ml/facile/facile-1.1.4.ebuild 
b/dev-ml/facile/facile-1.1.4.ebuild
index 966106f8d4e7..41a016660704 100644
--- a/dev-ml/facile/facile-1.1.4.ebuild
+++ b/dev-ml/facile/facile-1.1.4.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/Emmanuel-PLF/${PN}/releases/download/${PV}/${P}.tbz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="amd64 arm64 ~ppc ppc64 ~x86"
+KEYWORDS="amd64 arm64 ~ppc ppc64 x86"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2023-03-24 Thread Arthur Zamarin
commit: 2719bfbc9d43fe37348930b7a787df0780e36370
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Mar 24 20:17:13 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Mar 24 20:17:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2719bfbc

dev-ml/facile: Stabilize 1.1.4 amd64, #901605

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-ml/facile/facile-1.1.4.ebuild 
b/dev-ml/facile/facile-1.1.4.ebuild
index 500847b4f4fa..be2e82d499d6 100644
--- a/dev-ml/facile/facile-1.1.4.ebuild
+++ b/dev-ml/facile/facile-1.1.4.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/Emmanuel-PLF/${PN}/releases/download/${PV}/${P}.tbz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="~amd64 arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 arm64 ~ppc ~ppc64 ~x86"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2023-03-24 Thread Arthur Zamarin
commit: 83eed9df43ee13f1175e65b27d406f09bd8ad46d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Mar 24 20:17:14 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Mar 24 20:17:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83eed9df

dev-ml/facile: Stabilize 1.1.4 ppc64, #901605

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-ml/facile/facile-1.1.4.ebuild 
b/dev-ml/facile/facile-1.1.4.ebuild
index be2e82d499d6..966106f8d4e7 100644
--- a/dev-ml/facile/facile-1.1.4.ebuild
+++ b/dev-ml/facile/facile-1.1.4.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/Emmanuel-PLF/${PN}/releases/download/${PV}/${P}.tbz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="amd64 arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 arm64 ~ppc ppc64 ~x86"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2023-02-15 Thread Matt Turner
commit: cd0422078016004abb9a6880b0701a4895a036b7
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Feb 15 18:29:36 2023 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Feb 15 18:36:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd042207

dev-ml/facile: Drop alpha keywords

Signed-off-by: Matt Turner  gentoo.org>

 dev-ml/facile/facile-1.1.3-r1.ebuild | 2 +-
 dev-ml/facile/facile-1.1.4.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/facile/facile-1.1.3-r1.ebuild 
b/dev-ml/facile/facile-1.1.3-r1.ebuild
index ab98186bbd79..c70362927300 100644
--- a/dev-ml/facile/facile-1.1.3-r1.ebuild
+++ b/dev-ml/facile/facile-1.1.3-r1.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://opti.recherche.enac.fr/facile/distrib/${P}.tar.gz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="~alpha amd64 arm64 ~hppa ~ia64 ~ppc ppc64 x86"
+KEYWORDS="amd64 arm64 ~hppa ~ia64 ~ppc ppc64 x86"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"

diff --git a/dev-ml/facile/facile-1.1.4.ebuild 
b/dev-ml/facile/facile-1.1.4.ebuild
index d3e4a42f5a4d..85e20161efcb 100644
--- a/dev-ml/facile/facile-1.1.4.ebuild
+++ b/dev-ml/facile/facile-1.1.4.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/Emmanuel-PLF/${PN}/releases/download/${PV}/${P}.tbz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="~alpha ~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/files/

2023-01-30 Thread Alfredo Tupone
commit: 547ff673f2d0807d1e91a372f754ceda642aa17f
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Tue Jan 31 07:51:01 2023 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Tue Jan 31 07:52:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=547ff673

dev-ml/facile: drop stdlib-shims requirement

Closes: https://bugs.gentoo.org/892689
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-ml/facile/files/facile-1.1.4-dune.patch | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-ml/facile/files/facile-1.1.4-dune.patch 
b/dev-ml/facile/files/facile-1.1.4-dune.patch
index f9c667cabb1d..f740a80c4cd5 100644
--- a/dev-ml/facile/files/facile-1.1.4-dune.patch
+++ b/dev-ml/facile/files/facile-1.1.4-dune.patch
@@ -21,10 +21,9 @@ new file mode 100644
 index 000..d28179f
 --- /dev/null
 +++ b/lib/dune
-@@ -0,0 +1,5 @@
+@@ -0,0 +1,4 @@
 +(library
 +  (public_name facile)
-+  (libraries stdlib-shims)
 +  (ocamlopt_flags (-unsafe -noassert -inline 10))
 +)
 diff --git a/lib_test/dune b/lib_test/dune



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/files/, dev-ml/facile/

2023-01-30 Thread Alfredo Tupone
commit: b418632d46c6b67f90e56eae45fa41e86da2ae4d
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Mon Jan 30 20:35:27 2023 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Mon Jan 30 20:37:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b418632d

dev-ml/facile: add 1.1.4

Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-ml/facile/Manifest  |  1 +
 dev-ml/facile/facile-1.1.4.ebuild   | 21 +++
 dev-ml/facile/files/facile-1.1.4-dune.patch | 42 +
 3 files changed, 64 insertions(+)

diff --git a/dev-ml/facile/Manifest b/dev-ml/facile/Manifest
index 65406b20bc00..8d6cbde9bf91 100644
--- a/dev-ml/facile/Manifest
+++ b/dev-ml/facile/Manifest
@@ -1 +1,2 @@
 DIST facile-1.1.3.tar.gz 99656 BLAKE2B 
19d81c48c39b96083628cc40eb9aca7e8ad7dea4ae81c884bfb22daa56135ac411698d57b68f3112829a1fc53d29612627809901c6e30eb4672776508eee57b2
 SHA512 
78d315188e661245eb7306b645e9baaca94db0b952b57dbc8597bf2f75cab5604c8f4cf850209464e802c636f592552c8b492730cb28896d2acd7f413346
+DIST facile-1.1.4.tbz 83874 BLAKE2B 
a0921615425124b6f1ba51a939bd4c89bcab71a0341e5b866f2c44d89863c077c42f269fcee2a8e302c580ce618c4e765f826fd9c4855f9e992c35cbdc8660db
 SHA512 
b4484275ebf7f0bd271d865c6745bd1784e2260060470f64f86a18833a9663efbf56b089ae668c51f57bc8473281af4e92d461b87eefb2c62162fa7da60838f9

diff --git a/dev-ml/facile/facile-1.1.4.ebuild 
b/dev-ml/facile/facile-1.1.4.ebuild
new file mode 100644
index ..d3e4a42f5a4d
--- /dev/null
+++ b/dev-ml/facile/facile-1.1.4.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit dune
+
+DESCRIPTION="OCaml constraint programming library on integer & integer set 
finite domains"
+HOMEPAGE="http://opti.recherche.enac.fr/";
+SRC_URI="https://github.com/Emmanuel-PLF/${PN}/releases/download/${PV}/${P}.tbz";
+
+LICENSE="LGPL-2.1"
+SLOT="0/${PV}"
+
+KEYWORDS="~alpha ~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+IUSE="+ocamlopt"
+
+RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"
+DEPEND="${RDEPEND}"
+
+PATCHES=( "${FILESDIR}"/${P}-dune.patch )

diff --git a/dev-ml/facile/files/facile-1.1.4-dune.patch 
b/dev-ml/facile/files/facile-1.1.4-dune.patch
new file mode 100644
index ..f9c667cabb1d
--- /dev/null
+++ b/dev-ml/facile/files/facile-1.1.4-dune.patch
@@ -0,0 +1,42 @@
+diff --git a/dune-project b/dune-project
+new file mode 100644
+index 000..7d8f2ba
+--- /dev/null
 b/dune-project
+@@ -0,0 +1,2 @@
++(lang dune 2.9)
++(name facile)
+diff --git a/examples/dune b/examples/dune
+new file mode 100644
+index 000..b804a36
+--- /dev/null
 b/examples/dune
+@@ -0,0 +1,4 @@
++(executables
++  (libraries facile)
++  (names coins golf golomb jobshop magic marriage prolog seven_eleven tiles)
++)
+diff --git a/lib/dune b/lib/dune
+new file mode 100644
+index 000..d28179f
+--- /dev/null
 b/lib/dune
+@@ -0,0 +1,5 @@
++(library
++  (public_name facile)
++  (libraries stdlib-shims)
++  (ocamlopt_flags (-unsafe -noassert -inline 10))
++)
+diff --git a/lib_test/dune b/lib_test/dune
+new file mode 100644
+index 000..e8993ee
+--- /dev/null
 b/lib_test/dune
+@@ -0,0 +1,7 @@
++(executable
++  (libraries facile)
++  (name queens))
++
++(rule
++  (alias runtest)
++  (action  (run ./queens.exe 8)))



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2023-01-19 Thread Maciej Barć
commit: c7b153433ae7b4fe32a08883d34938d4d295d6aa
Author: Maciej Barć  gentoo  org>
AuthorDate: Thu Jan 19 21:01:39 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Thu Jan 19 21:48:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7b15343

dev-ml/facile: bump EAPI to 8

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

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

diff --git a/dev-ml/facile/facile-1.1.3.ebuild 
b/dev-ml/facile/facile-1.1.3-r1.ebuild
similarity index 95%
rename from dev-ml/facile/facile-1.1.3.ebuild
rename to dev-ml/facile/facile-1.1.3-r1.ebuild
index c88e827bdffa..ab98186bbd79 100644
--- a/dev-ml/facile/facile-1.1.3.ebuild
+++ b/dev-ml/facile/facile-1.1.3-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=6
+EAPI=8
 
 DESCRIPTION="OCaml constraint programming library on integer & integer set 
finite domains"
 HOMEPAGE="http://opti.recherche.enac.fr/";
@@ -18,6 +18,8 @@ DEPEND="${RDEPEND}"
 
 PATCHES=( "${FILESDIR}/${PN}"-1.1-make.patch ) # Fix building on FreeBSD
 
+QA_FLAGS_IGNORED='.*'
+
 src_prepare() {
default
 



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2022-12-07 Thread David Seifert
commit: db54d1ef7d87c56a4e22f880621f2c2f9782f6ec
Author: David Seifert  gentoo  org>
AuthorDate: Wed Dec  7 13:51:38 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Dec  7 13:51:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db54d1ef

dev-ml/facile: remove sys-apps/sed from DEPEND

Signed-off-by: David Seifert  gentoo.org>

 dev-ml/facile/facile-1.1.3.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/dev-ml/facile/facile-1.1.3.ebuild 
b/dev-ml/facile/facile-1.1.3.ebuild
index 6beefe2a5ff0..c88e827bdffa 100644
--- a/dev-ml/facile/facile-1.1.3.ebuild
+++ b/dev-ml/facile/facile-1.1.3.ebuild
@@ -14,9 +14,7 @@ KEYWORDS="~alpha amd64 arm64 ~hppa ~ia64 ~ppc ppc64 x86"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"
-DEPEND="${RDEPEND}
-   sys-apps/sed
-"
+DEPEND="${RDEPEND}"
 
 PATCHES=( "${FILESDIR}/${PN}"-1.1-make.patch ) # Fix building on FreeBSD
 



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2021-09-12 Thread Alfredo Tupone
commit: 0c844a6603dbd16e406cb4f9e97a30ca87d05209
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Sun Sep 12 09:13:18 2021 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Sun Sep 12 09:13:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c844a66

dev-ml/facile: VariableScope

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-ml/facile/facile-1.1.3.ebuild | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-ml/facile/facile-1.1.3.ebuild 
b/dev-ml/facile/facile-1.1.3.ebuild
index 06cb817ed4b..2ae3f2c3be8 100644
--- a/dev-ml/facile/facile-1.1.3.ebuild
+++ b/dev-ml/facile/facile-1.1.3.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=6
@@ -18,8 +18,6 @@ DEPEND="${RDEPEND}
sys-apps/sed
 "
 
-DOCS=( README )
-
 PATCHES=( "${FILESDIR}/${PN}"-1.1-make.patch ) # Fix building on FreeBSD
 
 src_prepare() {
@@ -35,11 +33,14 @@ src_prepare() {
-e 's:^.*facile\.cmxa::'\
-e 's:^.*facile\.a::' Makefile || die "failed to remove 
native code objects"
fi
+   sed -i \
+   -e 's|$(FACILE|$(DESTDIR)$(FACILE|g' \
+   Makefile || die
 }
 
 src_configure() {
# This is a custom configure script and it does not support standard 
options
-   ./configure --faciledir "${D}"$(ocamlc -where)/facile/ || die
+   ./configure || die
 }
 
 src_test() {
@@ -48,6 +49,5 @@ src_test() {
 
 src_install() {
dodir $(ocamlc -where)
-   emake install
-   einstalldocs
+   default
 }



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2021-06-20 Thread Sam James
commit: 48fee3364f18941d087ecc2a459ff319a35463b2
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 23:17:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 23:39:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48fee336

dev-ml/facile: add github upstream metadata

Signed-off-by: Sam James  gentoo.org>

 dev-ml/facile/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-ml/facile/metadata.xml b/dev-ml/facile/metadata.xml
index e1aa4cafa57..c3a9509486b 100644
--- a/dev-ml/facile/metadata.xml
+++ b/dev-ml/facile/metadata.xml
@@ -9,4 +9,7 @@
k...@gentoo.org
Gentoo KDE Project

+   
+   Emmanuel-PLF/facile
+   
 



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2021-06-20 Thread Sam James
commit: 9e9ebb72b90be8076aae25554e56644b1086
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 23:14:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 23:39:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e9ebb72

dev-ml/facile: update maintainers (add ml@)

Signed-off-by: Sam James  gentoo.org>

 dev-ml/facile/metadata.xml | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-ml/facile/metadata.xml b/dev-ml/facile/metadata.xml
index c4773834c0e..e1aa4cafa57 100644
--- a/dev-ml/facile/metadata.xml
+++ b/dev-ml/facile/metadata.xml
@@ -1,8 +1,12 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
+   
+   m...@gentoo.org
+   ML
+   

k...@gentoo.org
Gentoo KDE Project

-   
+



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2019-03-10 Thread Andreas Sturmlechner
commit: 4392580f654caefef901c8d5faa8715b8260ca50
Author: Roy Bamford  gentoo  org>
AuthorDate: Sun Mar 10 17:41:10 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4392580f

dev-ml/facile: added ~arm64

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Roy Bamford  gentoo.org>
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-ml/facile/facile-1.1.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/facile/facile-1.1.3.ebuild 
b/dev-ml/facile/facile-1.1.3.ebuild
index 3027374ee74..2eb0fbb4b30 100644
--- a/dev-ml/facile/facile-1.1.3.ebuild
+++ b/dev-ml/facile/facile-1.1.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ 
SRC_URI="http://opti.recherche.enac.fr/facile/distrib/${P}.tar.gz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm64 hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2017-11-18 Thread Michael Palimaka
commit: 044808187c085ae0fc2a926fd5fdac70126e176a
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Nov 19 06:27:40 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Nov 19 06:27:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04480818

dev-ml/facile: remove 1.1.2

Package-Manager: Portage-2.3.8, Repoman-2.3.4

 dev-ml/facile/Manifest|  1 -
 dev-ml/facile/facile-1.1.2.ebuild | 50 ---
 2 files changed, 51 deletions(-)

diff --git a/dev-ml/facile/Manifest b/dev-ml/facile/Manifest
index aa269c885a2..7b060994914 100644
--- a/dev-ml/facile/Manifest
+++ b/dev-ml/facile/Manifest
@@ -1,2 +1 @@
-DIST facile-1.1.2.tar.gz 99755 SHA256 
ea8b72d1d171fb44c0c6dafbddac0ccb0a453a7caafd1852919d4f805eded367 SHA512 
12c086a9e1d7b2d76c36fa3d7b519da24199bb958b56050d5635cd6eb0288b6d98845b4ade74e22127b2abd405f359b0a33cfd776042187f3ab506ad656676df
 WHIRLPOOL 
d643b8b7151fa262542f6408acda23b6a29466b48fc288ea9efc8b024c418e95ca50ef005a09c61f6030faddbff6d2f013b1ffddd4544291f8387b29303a0a32
 DIST facile-1.1.3.tar.gz 99656 SHA256 
5cb63ddb0dca8de12cd54dbf0de37e0fa8af54e7c1f15ee035a33ec219be8aec SHA512 
78d315188e661245eb7306b645e9baaca94db0b952b57dbc8597bf2f75cab5604c8f4cf850209464e802c636f592552c8b492730cb28896d2acd7f413346
 WHIRLPOOL 
31ec165d6f02ce0e3b2e4c12d151f14075916cce325f0028d56e3a2d62cdb03da7d157b223c1e7df06b30b603a89e0303a8c73b690fc659d60d7690614692b13

diff --git a/dev-ml/facile/facile-1.1.2.ebuild 
b/dev-ml/facile/facile-1.1.2.ebuild
deleted file mode 100644
index 2b9fe9b8297..000
--- a/dev-ml/facile/facile-1.1.2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="OCaml constraint programming library on integer & integer set 
finite domains"
-HOMEPAGE="http://opti.recherche.enac.fr/";
-SRC_URI="http://opti.recherche.enac.fr/facile/distrib/${P}.tar.gz";
-
-LICENSE="LGPL-2.1"
-SLOT="0/${PV}"
-
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
-IUSE="+ocamlopt"
-
-RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"
-DEPEND="${RDEPEND}
-sys-apps/sed"
-
-src_prepare() {
-   # Fix building on FreeBSD
-   epatch "${FILESDIR}/${PN}"-1.1-make.patch
-   # Disable building native code objects if we dont have/want ocamlopt
-   if ! use ocamlopt; then
-   sed -i -e 's/\.opt//' src/Makefile || die "failed to change 
native code compiler to bytecode ones"
-   sed -i -e 's/ facile\.cmxa//' src/Makefile || die "failed to 
remove native code objects"
-   sed -i -e 's/\.opt/.out/g' \
-   -e 's: src/facile\.cmxa::'\
-   -e 's: src/facile\.a::'\
-   -e 's:^.*facile\.cmxa::'\
-   -e 's:^.*facile\.a::' Makefile || die "failed to remove 
native code objects"
-   fi
-}
-
-src_configure(){
-   # This is a custom configure script and it does not support standard 
options
-   ./configure --faciledir "${D}"$(ocamlc -where)/facile/ || die
-}
-
-src_test() {
-   emake check
-}
-
-src_install(){
-   dodir $(ocamlc -where)
-   emake install
-   dodoc README
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2017-11-18 Thread Michael Palimaka
commit: 06278255e4964d5fc8d831781cbadf646a7bd82b
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Nov 19 06:24:35 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Nov 19 06:27:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06278255

dev-ml/facile: stabilise 1.1.3 for amd64

Bug: https://bugs.gentoo.org/636624
Package-Manager: Portage-2.3.8, Repoman-2.3.4

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

diff --git a/dev-ml/facile/facile-1.1.3.ebuild 
b/dev-ml/facile/facile-1.1.3.ebuild
index a1d0c160eb6..3027374ee74 100644
--- a/dev-ml/facile/facile-1.1.3.ebuild
+++ b/dev-ml/facile/facile-1.1.3.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://opti.recherche.enac.fr/facile/distrib/${P}.tar.gz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="alpha ~amd64 hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2017-11-09 Thread Sergei Trofimovich
commit: 879db409ac93376c0d197ba15373e50a986de6c9
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Nov  9 21:44:35 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Nov  9 22:21:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=879db409

dev-ml/facile: stable 1.1.3 for ppc/ppc64, bug #636624

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="ppc ppc64"

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

diff --git a/dev-ml/facile/facile-1.1.3.ebuild 
b/dev-ml/facile/facile-1.1.3.ebuild
index ad0dc422f9c..a1d0c160eb6 100644
--- a/dev-ml/facile/facile-1.1.3.ebuild
+++ b/dev-ml/facile/facile-1.1.3.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://opti.recherche.enac.fr/facile/distrib/${P}.tar.gz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="alpha ~amd64 hppa ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2017-11-08 Thread Tobias Klausmann
commit: 88b4a5aec49b0d7bea41f6fde4bb52d56f73ad90
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Nov  8 12:50:38 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Nov  8 12:50:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88b4a5ae

dev-ml/facile-1.1.3-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/636624

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

diff --git a/dev-ml/facile/facile-1.1.3.ebuild 
b/dev-ml/facile/facile-1.1.3.ebuild
index efc317295af..ad0dc422f9c 100644
--- a/dev-ml/facile/facile-1.1.3.ebuild
+++ b/dev-ml/facile/facile-1.1.3.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://opti.recherche.enac.fr/facile/distrib/${P}.tar.gz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="~alpha ~amd64 hppa ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 hppa ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2017-11-07 Thread Sergei Trofimovich
commit: be7cbeed9a44669e3c11b18ededf953074001830
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Nov  7 22:47:27 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Nov  7 22:47:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be7cbeed

dev-ml/facile: stable 1.1.3 for hppa, bug #636624

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="hppa"

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

diff --git a/dev-ml/facile/facile-1.1.3.ebuild 
b/dev-ml/facile/facile-1.1.3.ebuild
index 9776d254556..efc317295af 100644
--- a/dev-ml/facile/facile-1.1.3.ebuild
+++ b/dev-ml/facile/facile-1.1.3.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://opti.recherche.enac.fr/facile/distrib/${P}.tar.gz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="~alpha ~amd64 ~hppa ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 hppa ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2017-11-07 Thread Thomas Deutschmann
commit: 6f5287d43f4b5f10954ca9bf6b424d56d057b345
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Nov  7 15:08:11 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Nov  7 17:57:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f5287d4

dev-ml/facile: x86 stable (bug #636624)

Package-Manager: Portage-2.3.13, Repoman-2.3.4

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

diff --git a/dev-ml/facile/facile-1.1.3.ebuild 
b/dev-ml/facile/facile-1.1.3.ebuild
index fe481a8bb68..9776d254556 100644
--- a/dev-ml/facile/facile-1.1.3.ebuild
+++ b/dev-ml/facile/facile-1.1.3.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://opti.recherche.enac.fr/facile/distrib/${P}.tar.gz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="~alpha ~amd64 ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~hppa ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2017-11-05 Thread Sergei Trofimovich
commit: 6f47ff71e37c5dcb9901ff8a5ab5ca5fa85478eb
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Nov  5 19:37:36 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Nov  5 19:37:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f47ff71

dev-ml/facile: stable 1.1.3 for ia64, bug #636624

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="ia64"

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

diff --git a/dev-ml/facile/facile-1.1.3.ebuild 
b/dev-ml/facile/facile-1.1.3.ebuild
index 70b836ea6aa..fe481a8bb68 100644
--- a/dev-ml/facile/facile-1.1.3.ebuild
+++ b/dev-ml/facile/facile-1.1.3.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://opti.recherche.enac.fr/facile/distrib/${P}.tar.gz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/files/

2017-08-08 Thread Andreas Sturmlechner
commit: 9e4ee21441d8265d5702bda2d1f02c4dec0fb115
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Aug  8 16:20:41 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  8 17:15:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e4ee214

dev-ml/facile: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/5358

 dev-ml/facile/files/facile-1.1-ocaml4.patch | 29 -
 1 file changed, 29 deletions(-)

diff --git a/dev-ml/facile/files/facile-1.1-ocaml4.patch 
b/dev-ml/facile/files/facile-1.1-ocaml4.patch
deleted file mode 100644
index 3c755631236..000
--- a/dev-ml/facile/files/facile-1.1-ocaml4.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Index: facile-1.1/src/facile.mli
-===
 facile-1.1.orig/src/facile.mli
-+++ facile-1.1/src/facile.mli
-@@ -127,7 +127,7 @@ module Data :
-   module Hashtbl :
- sig
-   type ('a, 'b) t
--  val create : int -> ('a, 'b) t
-+  val create : ?random:bool -> int -> ('a, 'b) t
-   val get : ('a, 'b) t -> ('a, 'b) Hashtbl.t
-   val add : ('a, 'b) t -> 'a -> 'b -> unit
-   val find : ('a, 'b) t -> 'a -> 'b
-Index: facile-1.1/src/fcl_data.cmi
-===
-Binary files facile-1.1.orig/src/fcl_data.cmi and facile-1.1/src/fcl_data.cmi 
differ
-Index: facile-1.1/src/fcl_data.mli
-===
 facile-1.1.orig/src/fcl_data.mli
-+++ facile-1.1/src/fcl_data.mli
-@@ -23,7 +23,7 @@ end
- 
- module Hashtbl : sig
-   type ('a, 'b) t
--  val create : int -> ('a, 'b) t
-+  val create : ?random:bool -> int -> ('a, 'b) t
-   val get : ('a, 'b) t -> ('a, 'b) Hashtbl.t
-   val add : ('a, 'b) t -> 'a -> 'b -> unit
-   val find : ('a, 'b) t -> 'a -> 'b



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2017-08-08 Thread Andreas Sturmlechner
commit: c74b4047c70df62c80e427215d53d90e439b46a4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  8 17:09:51 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  8 17:15:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c74b4047

dev-ml/facile: 1.1.3 version bump

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-ml/facile/Manifest|  1 +
 dev-ml/facile/facile-1.1.3.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/dev-ml/facile/Manifest b/dev-ml/facile/Manifest
index df8d93a1cee..aa269c885a2 100644
--- a/dev-ml/facile/Manifest
+++ b/dev-ml/facile/Manifest
@@ -1 +1,2 @@
 DIST facile-1.1.2.tar.gz 99755 SHA256 
ea8b72d1d171fb44c0c6dafbddac0ccb0a453a7caafd1852919d4f805eded367 SHA512 
12c086a9e1d7b2d76c36fa3d7b519da24199bb958b56050d5635cd6eb0288b6d98845b4ade74e22127b2abd405f359b0a33cfd776042187f3ab506ad656676df
 WHIRLPOOL 
d643b8b7151fa262542f6408acda23b6a29466b48fc288ea9efc8b024c418e95ca50ef005a09c61f6030faddbff6d2f013b1ffddd4544291f8387b29303a0a32
+DIST facile-1.1.3.tar.gz 99656 SHA256 
5cb63ddb0dca8de12cd54dbf0de37e0fa8af54e7c1f15ee035a33ec219be8aec SHA512 
78d315188e661245eb7306b645e9baaca94db0b952b57dbc8597bf2f75cab5604c8f4cf850209464e802c636f592552c8b492730cb28896d2acd7f413346
 WHIRLPOOL 
31ec165d6f02ce0e3b2e4c12d151f14075916cce325f0028d56e3a2d62cdb03da7d157b223c1e7df06b30b603a89e0303a8c73b690fc659d60d7690614692b13

diff --git a/dev-ml/facile/facile-1.1.3.ebuild 
b/dev-ml/facile/facile-1.1.3.ebuild
new file mode 100644
index 000..70b836ea6aa
--- /dev/null
+++ b/dev-ml/facile/facile-1.1.3.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="OCaml constraint programming library on integer & integer set 
finite domains"
+HOMEPAGE="http://opti.recherche.enac.fr/";
+SRC_URI="http://opti.recherche.enac.fr/facile/distrib/${P}.tar.gz";
+
+LICENSE="LGPL-2.1"
+SLOT="0/${PV}"
+
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="+ocamlopt"
+
+RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"
+DEPEND="${RDEPEND}
+   sys-apps/sed
+"
+
+DOCS=( README )
+
+PATCHES=( "${FILESDIR}/${PN}"-1.1-make.patch ) # Fix building on FreeBSD
+
+src_prepare() {
+   default
+
+   # Disable building native code objects if we dont have/want ocamlopt
+   if ! use ocamlopt; then
+   sed -i -e 's/\.opt//' src/Makefile || die "failed to change 
native code compiler to bytecode ones"
+   sed -i -e 's/ facile\.cmxa//' src/Makefile || die "failed to 
remove native code objects"
+   sed -i -e 's/\.opt/.out/g' \
+   -e 's: src/facile\.cmxa::'\
+   -e 's: src/facile\.a::'\
+   -e 's:^.*facile\.cmxa::'\
+   -e 's:^.*facile\.a::' Makefile || die "failed to remove 
native code objects"
+   fi
+}
+
+src_configure(){
+   # This is a custom configure script and it does not support standard 
options
+   ./configure --faciledir "${D}"$(ocamlc -where)/facile/ || die
+}
+
+src_test() {
+   emake check
+}
+
+src_install(){
+   dodir $(ocamlc -where)
+   emake install
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2017-08-08 Thread Andreas Sturmlechner
commit: 14fa85d78de9e99b1df75cb07698e3fb51ac3c34
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  8 17:03:03 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  8 17:15:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14fa85d7

dev-ml/facile: Fix HOMEPAGE and SRC_URI

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-ml/facile/facile-1.1.2.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ml/facile/facile-1.1.2.ebuild 
b/dev-ml/facile/facile-1.1.2.ebuild
index 9ab962099a4..2b9fe9b8297 100644
--- a/dev-ml/facile/facile-1.1.2.ebuild
+++ b/dev-ml/facile/facile-1.1.2.ebuild
@@ -5,9 +5,9 @@ EAPI=5
 
 inherit eutils
 
-DESCRIPTION="An OCaml constraint programming library on integer & integer set 
finite domains"
-HOMEPAGE="http://www.recherche.enac.fr/log/facile/";
-SRC_URI="http://www.recherche.enac.fr/log/facile/distrib/${P}.tar.gz";
+DESCRIPTION="OCaml constraint programming library on integer & integer set 
finite domains"
+HOMEPAGE="http://opti.recherche.enac.fr/";
+SRC_URI="http://opti.recherche.enac.fr/facile/distrib/${P}.tar.gz";
 
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2017-04-25 Thread Michael Palimaka
commit: ee8d4e2d6bcef3270346d5c1eef5a50d42804fee
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Apr 25 07:27:59 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Apr 25 07:28:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee8d4e2d

dev-ml/facile: reduce length of DESCRIPTION to 80 characters or fewer

Package-Manager: Portage-2.3.5, Repoman-2.3.2

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

diff --git a/dev-ml/facile/facile-1.1.2.ebuild 
b/dev-ml/facile/facile-1.1.2.ebuild
index 13743c96a7a..9ab962099a4 100644
--- a/dev-ml/facile/facile-1.1.2.ebuild
+++ b/dev-ml/facile/facile-1.1.2.ebuild
@@ -5,7 +5,7 @@ EAPI=5
 
 inherit eutils
 
-DESCRIPTION="A constraint programming library on integer and integer set 
finite domains written in OCaml"
+DESCRIPTION="An OCaml constraint programming library on integer & integer set 
finite domains"
 HOMEPAGE="http://www.recherche.enac.fr/log/facile/";
 SRC_URI="http://www.recherche.enac.fr/log/facile/distrib/${P}.tar.gz";
 



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2017-04-25 Thread Michael Palimaka
commit: 27cd97ffaf81e4c585fa63540d01c42eb6297a50
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Apr 25 07:26:31 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Apr 25 07:28:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27cd97ff

dev-ml/facile: whitespace

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-ml/facile/metadata.xml | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/dev-ml/facile/metadata.xml b/dev-ml/facile/metadata.xml
index 256eb8dacb3..41bad2f652f 100644
--- a/dev-ml/facile/metadata.xml
+++ b/dev-ml/facile/metadata.xml
@@ -1,12 +1,12 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-
-   k...@gentoo.org
-   Gentoo KDE Project
-
-
-   m...@gentoo.org
-   Gentoo ML Project
-
+   
+   k...@gentoo.org
+   Gentoo KDE Project
+   
+   
+   m...@gentoo.org
+   Gentoo ML Project
+   
 



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2017-04-25 Thread Michael Palimaka
commit: 65b2f802bbcfb218b0b8caf8cd0886a62ed93a9e
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Apr 25 07:26:11 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Apr 25 07:28:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65b2f802

dev-ml/facile: remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-ml/facile/Manifest|  2 --
 dev-ml/facile/facile-1.1.1.ebuild | 50 --
 dev-ml/facile/facile-1.1.ebuild   | 51 ---
 3 files changed, 103 deletions(-)

diff --git a/dev-ml/facile/Manifest b/dev-ml/facile/Manifest
index 4d913b5135f..df8d93a1cee 100644
--- a/dev-ml/facile/Manifest
+++ b/dev-ml/facile/Manifest
@@ -1,3 +1 @@
-DIST facile-1.1.1.tar.gz 99454 SHA256 
150a6c269277ce14e9c953dbcf409bfedc795abc1558ac6e338609b1e64fa38c SHA512 
2e14c65f9c8d0d7363a2c7bd117ebc52fe1949e6e364e0e8d33b25880d3a505bc92b7d26f33d6b7deed09dc6d8eaeb0274d69dbb5fdb2d217bbd9eafb5efc2ae
 WHIRLPOOL 
cd08ccc78466b0d858fa6645805226d8d19f021a1bf0f52743fa99ee73f833774c1b240c77780c104380ec45ef076a2d85847f2fc13d6e3816cbd7b1b5f71b6a
 DIST facile-1.1.2.tar.gz 99755 SHA256 
ea8b72d1d171fb44c0c6dafbddac0ccb0a453a7caafd1852919d4f805eded367 SHA512 
12c086a9e1d7b2d76c36fa3d7b519da24199bb958b56050d5635cd6eb0288b6d98845b4ade74e22127b2abd405f359b0a33cfd776042187f3ab506ad656676df
 WHIRLPOOL 
d643b8b7151fa262542f6408acda23b6a29466b48fc288ea9efc8b024c418e95ca50ef005a09c61f6030faddbff6d2f013b1ffddd4544291f8387b29303a0a32
-DIST facile-1.1.tar.gz 96343 SHA256 
a87a6ba7869104f85828c19a9681758bd1d01c816581ba09ac483739ad4ae5ca SHA512 
5048daa30bc0de47465f3978cc9079e29407e35f03a3e0d6656b61838e750f62370562e26b5377d30afa478974f19e962a4a3b5a4f8fbd6661bf6f6485d90565
 WHIRLPOOL 
a3aa0b50e51042fcdb90dffb62da483730738c1ed48eadcc1a329cc2f6529a985f50efe157231cc566ca909194468fb505ced2d653f71c3c39fd85a32e2d4558

diff --git a/dev-ml/facile/facile-1.1.1.ebuild 
b/dev-ml/facile/facile-1.1.1.ebuild
deleted file mode 100644
index 029843703ed..000
--- a/dev-ml/facile/facile-1.1.1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="A constraint programming library on integer and integer set 
finite domains written in OCaml"
-HOMEPAGE="http://www.recherche.enac.fr/log/facile/";
-SRC_URI="http://www.recherche.enac.fr/log/facile/distrib/${P}.tar.gz";
-
-LICENSE="LGPL-2.1"
-SLOT="0/${PV}"
-
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-IUSE="+ocamlopt"
-
-RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"
-DEPEND="${RDEPEND}
-sys-apps/sed"
-
-src_prepare() {
-   # Fix building on FreeBSD
-   epatch "${FILESDIR}/${PN}"-1.1-make.patch
-   # Disable building native code objects if we dont have/want ocamlopt
-   if ! use ocamlopt; then
-   sed -i -e 's/\.opt//' src/Makefile || die "failed to change 
native code compiler to bytecode ones"
-   sed -i -e 's/ facile\.cmxa//' src/Makefile || die "failed to 
remove native code objects"
-   sed -i -e 's/\.opt/.out/g' \
-   -e 's: src/facile\.cmxa::'\
-   -e 's: src/facile\.a::'\
-   -e 's:^.*facile\.cmxa::'\
-   -e 's:^.*facile\.a::' Makefile || die "failed to remove 
native code objects"
-   fi
-}
-
-src_configure(){
-   # This is a custom configure script and it does not support standard 
options
-   ./configure --faciledir "${D}"$(ocamlc -where)/facile/ || die
-}
-
-src_test() {
-   emake check
-}
-
-src_install(){
-   dodir $(ocamlc -where)
-   emake install
-   dodoc README
-}

diff --git a/dev-ml/facile/facile-1.1.ebuild b/dev-ml/facile/facile-1.1.ebuild
deleted file mode 100644
index 259461eb380..000
--- a/dev-ml/facile/facile-1.1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="A constraint programming library on integer and integer set 
finite domains written in OCaml"
-HOMEPAGE="http://www.recherche.enac.fr/log/facile/";
-SRC_URI="http://www.recherche.enac.fr/log/facile/distrib/${P}.tar.gz";
-
-LICENSE="LGPL-2.1"
-SLOT="0/${PV}"
-
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
-IUSE="+ocamlopt"
-
-RDEPEND=">=dev-lang/ocaml-3.10.2:=[ocamlopt?]"
-DEPEND="${RDEPEND}
-sys-apps/sed"
-
-src_prepare() {
-   # Fix building on FreeBSD
-   epatch "${FILESDIR}/${P}"-make.patch
-   has_version '>=dev-lang/ocaml-4' && epatch 
"${FILESDIR}/${P}-ocaml4.patch"
-   # Disable building native code objects if we dont have/want ocamlopt
-   if ! use ocamlopt; then
-   sed -i -e 's/\.opt//' src/Makefile || die "failed to change 
native code compiler to bytecode ones"
-  

[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2017-04-25 Thread Jeroen Roovers
commit: cba26f58fc9bf0a5cdf3d46794dc563030f5dc9e
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Apr 25 07:23:16 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Apr 25 07:23:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cba26f58

dev-ml/facile: Stable for HPPA (bug #607032).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --ignore-arches

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

diff --git a/dev-ml/facile/facile-1.1.2.ebuild 
b/dev-ml/facile/facile-1.1.2.ebuild
index 515f1a481bf..13743c96a7a 100644
--- a/dev-ml/facile/facile-1.1.2.ebuild
+++ b/dev-ml/facile/facile-1.1.2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="http://www.recherche.enac.fr/log/facile/distrib/${P}.tar.gz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2017-01-26 Thread Agostino Sarubbo
commit: beb90f2f10d5ac4b39b333d03a92f4d820ddc5c8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Jan 26 15:27:40 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Jan 26 15:27:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=beb90f2f

dev-ml/facile: ia64 stable wrt bug #607032

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-ml/facile/facile-1.1.2.ebuild 
b/dev-ml/facile/facile-1.1.2.ebuild
index b8b385b..fdf54cb 100644
--- a/dev-ml/facile/facile-1.1.2.ebuild
+++ b/dev-ml/facile/facile-1.1.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://www.recherche.enac.fr/log/facile/distrib/${P}.tar.gz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2017-01-26 Thread Agostino Sarubbo
commit: 52c1aff2179b8e790c30935f6744eefe9033bb07
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Jan 26 10:57:55 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Jan 26 11:00:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52c1aff2

dev-ml/facile: ppc stable wrt bug #607032

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-ml/facile/facile-1.1.2.ebuild 
b/dev-ml/facile/facile-1.1.2.ebuild
index 83a4bb7..b8b385b 100644
--- a/dev-ml/facile/facile-1.1.2.ebuild
+++ b/dev-ml/facile/facile-1.1.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://www.recherche.enac.fr/log/facile/distrib/${P}.tar.gz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="alpha amd64 ~hppa ~ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2017-01-25 Thread Tobias Klausmann
commit: f1638db48c227e4a214ed5701128b2a8fa896dc8
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jan 25 21:09:27 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jan 25 21:09:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1638db4

dev-ml/facile-1.1.2-r0: stable on alpha

Gentoo-Bug: 607032

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

diff --git a/dev-ml/facile/facile-1.1.2.ebuild 
b/dev-ml/facile/facile-1.1.2.ebuild
index 53b0480..27570a3 100644
--- a/dev-ml/facile/facile-1.1.2.ebuild
+++ b/dev-ml/facile/facile-1.1.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://www.recherche.enac.fr/log/facile/distrib/${P}.tar.gz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2017-01-25 Thread Agostino Sarubbo
commit: 64fea3474140001a8242441e96de4463f7835415
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jan 25 14:28:29 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jan 25 14:28:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64fea347

dev-ml/facile: amd64 stable wrt bug #607032

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-ml/facile/facile-1.1.2.ebuild 
b/dev-ml/facile/facile-1.1.2.ebuild
index 5fb1451..53b0480 100644
--- a/dev-ml/facile/facile-1.1.2.ebuild
+++ b/dev-ml/facile/facile-1.1.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://www.recherche.enac.fr/log/facile/distrib/${P}.tar.gz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2017-01-25 Thread Agostino Sarubbo
commit: 534e9e8a01794f35dd16deade99a6a1bf58dae63
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jan 25 10:57:47 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jan 25 10:57:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=534e9e8a

dev-ml/facile: x86 stable wrt bug #607032

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-ml/facile/facile-1.1.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/facile/facile-1.1.2.ebuild 
b/dev-ml/facile/facile-1.1.2.ebuild
index 62aba48..3b046b9 100644
--- a/dev-ml/facile/facile-1.1.2.ebuild
+++ b/dev-ml/facile/facile-1.1.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -13,7 +13,7 @@ 
SRC_URI="http://www.recherche.enac.fr/log/facile/distrib/${P}.tar.gz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2016-03-28 Thread Alexis Ballier
commit: 5920fe2a95ab2797eba5dae7c9f1e660c8b37f65
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Mar 28 07:12:35 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Mar 28 07:12:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5920fe2a

dev-ml/facile: bump to 1.1.2

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

 dev-ml/facile/Manifest|  1 +
 dev-ml/facile/facile-1.1.2.ebuild | 51 +++
 2 files changed, 52 insertions(+)

diff --git a/dev-ml/facile/Manifest b/dev-ml/facile/Manifest
index b383fe3..4d913b5 100644
--- a/dev-ml/facile/Manifest
+++ b/dev-ml/facile/Manifest
@@ -1,2 +1,3 @@
 DIST facile-1.1.1.tar.gz 99454 SHA256 
150a6c269277ce14e9c953dbcf409bfedc795abc1558ac6e338609b1e64fa38c SHA512 
2e14c65f9c8d0d7363a2c7bd117ebc52fe1949e6e364e0e8d33b25880d3a505bc92b7d26f33d6b7deed09dc6d8eaeb0274d69dbb5fdb2d217bbd9eafb5efc2ae
 WHIRLPOOL 
cd08ccc78466b0d858fa6645805226d8d19f021a1bf0f52743fa99ee73f833774c1b240c77780c104380ec45ef076a2d85847f2fc13d6e3816cbd7b1b5f71b6a
+DIST facile-1.1.2.tar.gz 99755 SHA256 
ea8b72d1d171fb44c0c6dafbddac0ccb0a453a7caafd1852919d4f805eded367 SHA512 
12c086a9e1d7b2d76c36fa3d7b519da24199bb958b56050d5635cd6eb0288b6d98845b4ade74e22127b2abd405f359b0a33cfd776042187f3ab506ad656676df
 WHIRLPOOL 
d643b8b7151fa262542f6408acda23b6a29466b48fc288ea9efc8b024c418e95ca50ef005a09c61f6030faddbff6d2f013b1ffddd4544291f8387b29303a0a32
 DIST facile-1.1.tar.gz 96343 SHA256 
a87a6ba7869104f85828c19a9681758bd1d01c816581ba09ac483739ad4ae5ca SHA512 
5048daa30bc0de47465f3978cc9079e29407e35f03a3e0d6656b61838e750f62370562e26b5377d30afa478974f19e962a4a3b5a4f8fbd6661bf6f6485d90565
 WHIRLPOOL 
a3aa0b50e51042fcdb90dffb62da483730738c1ed48eadcc1a329cc2f6529a985f50efe157231cc566ca909194468fb505ced2d653f71c3c39fd85a32e2d4558

diff --git a/dev-ml/facile/facile-1.1.2.ebuild 
b/dev-ml/facile/facile-1.1.2.ebuild
new file mode 100644
index 000..62aba48
--- /dev/null
+++ b/dev-ml/facile/facile-1.1.2.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils
+
+DESCRIPTION="A constraint programming library on integer and integer set 
finite domains written in OCaml"
+HOMEPAGE="http://www.recherche.enac.fr/log/facile/";
+SRC_URI="http://www.recherche.enac.fr/log/facile/distrib/${P}.tar.gz";
+
+LICENSE="LGPL-2.1"
+SLOT="0/${PV}"
+
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="+ocamlopt"
+
+RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"
+DEPEND="${RDEPEND}
+sys-apps/sed"
+
+src_prepare() {
+   # Fix building on FreeBSD
+   epatch "${FILESDIR}/${PN}"-1.1-make.patch
+   # Disable building native code objects if we dont have/want ocamlopt
+   if ! use ocamlopt; then
+   sed -i -e 's/\.opt//' src/Makefile || die "failed to change 
native code compiler to bytecode ones"
+   sed -i -e 's/ facile\.cmxa//' src/Makefile || die "failed to 
remove native code objects"
+   sed -i -e 's/\.opt/.out/g' \
+   -e 's: src/facile\.cmxa::'\
+   -e 's: src/facile\.a::'\
+   -e 's:^.*facile\.cmxa::'\
+   -e 's:^.*facile\.a::' Makefile || die "failed to remove 
native code objects"
+   fi
+}
+
+src_configure(){
+   # This is a custom configure script and it does not support standard 
options
+   ./configure --faciledir "${D}"$(ocamlc -where)/facile/ || die
+}
+
+src_test() {
+   emake check
+}
+
+src_install(){
+   dodir $(ocamlc -where)
+   emake install
+   dodoc README
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2015-12-09 Thread Alexis Ballier
commit: 2a2b0ef1089d397159aac2eaa5f2dda5df934bcb
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Dec  9 08:36:21 2015 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Dec  9 08:36:21 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a2b0ef1

dev-ml/facile: bump to 1.1.1

Package-Manager: portage-2.2.26
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/facile/Manifest|  1 +
 dev-ml/facile/facile-1.1.1.ebuild | 51 +++
 2 files changed, 52 insertions(+)

diff --git a/dev-ml/facile/Manifest b/dev-ml/facile/Manifest
index 45c5dca..b383fe3 100644
--- a/dev-ml/facile/Manifest
+++ b/dev-ml/facile/Manifest
@@ -1 +1,2 @@
+DIST facile-1.1.1.tar.gz 99454 SHA256 
150a6c269277ce14e9c953dbcf409bfedc795abc1558ac6e338609b1e64fa38c SHA512 
2e14c65f9c8d0d7363a2c7bd117ebc52fe1949e6e364e0e8d33b25880d3a505bc92b7d26f33d6b7deed09dc6d8eaeb0274d69dbb5fdb2d217bbd9eafb5efc2ae
 WHIRLPOOL 
cd08ccc78466b0d858fa6645805226d8d19f021a1bf0f52743fa99ee73f833774c1b240c77780c104380ec45ef076a2d85847f2fc13d6e3816cbd7b1b5f71b6a
 DIST facile-1.1.tar.gz 96343 SHA256 
a87a6ba7869104f85828c19a9681758bd1d01c816581ba09ac483739ad4ae5ca SHA512 
5048daa30bc0de47465f3978cc9079e29407e35f03a3e0d6656b61838e750f62370562e26b5377d30afa478974f19e962a4a3b5a4f8fbd6661bf6f6485d90565
 WHIRLPOOL 
a3aa0b50e51042fcdb90dffb62da483730738c1ed48eadcc1a329cc2f6529a985f50efe157231cc566ca909194468fb505ced2d653f71c3c39fd85a32e2d4558

diff --git a/dev-ml/facile/facile-1.1.1.ebuild 
b/dev-ml/facile/facile-1.1.1.ebuild
new file mode 100644
index 000..62aba48
--- /dev/null
+++ b/dev-ml/facile/facile-1.1.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils
+
+DESCRIPTION="A constraint programming library on integer and integer set 
finite domains written in OCaml"
+HOMEPAGE="http://www.recherche.enac.fr/log/facile/";
+SRC_URI="http://www.recherche.enac.fr/log/facile/distrib/${P}.tar.gz";
+
+LICENSE="LGPL-2.1"
+SLOT="0/${PV}"
+
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="+ocamlopt"
+
+RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"
+DEPEND="${RDEPEND}
+sys-apps/sed"
+
+src_prepare() {
+   # Fix building on FreeBSD
+   epatch "${FILESDIR}/${PN}"-1.1-make.patch
+   # Disable building native code objects if we dont have/want ocamlopt
+   if ! use ocamlopt; then
+   sed -i -e 's/\.opt//' src/Makefile || die "failed to change 
native code compiler to bytecode ones"
+   sed -i -e 's/ facile\.cmxa//' src/Makefile || die "failed to 
remove native code objects"
+   sed -i -e 's/\.opt/.out/g' \
+   -e 's: src/facile\.cmxa::'\
+   -e 's: src/facile\.a::'\
+   -e 's:^.*facile\.cmxa::'\
+   -e 's:^.*facile\.a::' Makefile || die "failed to remove 
native code objects"
+   fi
+}
+
+src_configure(){
+   # This is a custom configure script and it does not support standard 
options
+   ./configure --faciledir "${D}"$(ocamlc -where)/facile/ || die
+}
+
+src_test() {
+   emake check
+}
+
+src_install(){
+   dodir $(ocamlc -where)
+   emake install
+   dodoc README
+}