public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michael Palimaka" <kensington@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/
Date: Tue, 25 Apr 2017 07:28:15 +0000 (UTC)	[thread overview]
Message-ID: <1493105285.65b2f802bbcfb218b0b8caf8cd0886a62ed93a9e.kensington@gentoo> (raw)

commit:     65b2f802bbcfb218b0b8caf8cd0886a62ed93a9e
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 25 07:26:11 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Tue Apr 25 07:28:05 2017 +0000
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..00000000000
--- 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..00000000000
--- 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"
-		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
-}


             reply	other threads:[~2017-04-25  7:28 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-25  7:28 Michael Palimaka [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-03-24 21:05 [gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/ Arthur Zamarin
2023-03-24 20:17 Arthur Zamarin
2023-03-24 20:17 Arthur Zamarin
2023-02-15 18:38 Matt Turner
2023-01-19 21:51 Maciej Barć
2022-12-07 13:52 David Seifert
2021-09-12  9:13 Alfredo Tupone
2021-06-20 23:40 Sam James
2021-06-20 23:40 Sam James
2019-03-10 22:46 Andreas Sturmlechner
2017-11-19  6:28 Michael Palimaka
2017-11-19  6:28 Michael Palimaka
2017-11-09 22:21 Sergei Trofimovich
2017-11-08 12:51 Tobias Klausmann
2017-11-07 22:52 Sergei Trofimovich
2017-11-07 17:57 Thomas Deutschmann
2017-11-05 19:37 Sergei Trofimovich
2017-08-08 17:15 Andreas Sturmlechner
2017-08-08 17:15 Andreas Sturmlechner
2017-04-25  7:28 Michael Palimaka
2017-04-25  7:28 Michael Palimaka
2017-04-25  7:24 Jeroen Roovers
2017-01-26 15:28 Agostino Sarubbo
2017-01-26 11:00 Agostino Sarubbo
2017-01-25 21:09 Tobias Klausmann
2017-01-25 14:29 Agostino Sarubbo
2017-01-25 10:58 Agostino Sarubbo
2016-03-28  7:17 Alexis Ballier
2015-12-09  8:36 Alexis Ballier

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1493105285.65b2f802bbcfb218b0b8caf8cd0886a62ed93a9e.kensington@gentoo \
    --to=kensington@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox