diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-04-20 14:20:28 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-04-20 14:20:28 +0000 |
commit | d98cff1c8c62a502ed1a4b10c2b6d5db6a87a245 (patch) | |
tree | c0a515b3439e2fa0919c7b04b8698493397d7d47 | |
parent | remove old (diff) | |
download | gentoo-2-d98cff1c8c62a502ed1a4b10c2b6d5db6a87a245.tar.gz gentoo-2-d98cff1c8c62a502ed1a4b10c2b6d5db6a87a245.tar.bz2 gentoo-2-d98cff1c8c62a502ed1a4b10c2b6d5db6a87a245.zip |
remove old
(Portage version: 2.1.5_rc5)
-rw-r--r-- | dev-ml/extlib/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ml/extlib/extlib-1.4.ebuild | 34 | ||||
-rw-r--r-- | dev-ml/extlib/extlib-1.5.ebuild | 39 | ||||
-rw-r--r-- | dev-ml/extlib/files/extlib-1.5-ExtList.remove.patch | 12 |
4 files changed, 6 insertions, 86 deletions
diff --git a/dev-ml/extlib/ChangeLog b/dev-ml/extlib/ChangeLog index 63c17cf5afd5..19da3bcea87a 100644 --- a/dev-ml/extlib/ChangeLog +++ b/dev-ml/extlib/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ml/extlib # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v 1.8 2008/04/20 14:09:02 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/ChangeLog,v 1.9 2008/04/20 14:20:27 aballier Exp $ + + 20 Apr 2008; Alexis Ballier <aballier@gentoo.org> + -files/extlib-1.5-ExtList.remove.patch, -extlib-1.4.ebuild, + -extlib-1.5.ebuild: + remove old 20 Apr 2008; Markus Meier <maekke@gentoo.org> extlib-1.5.1.ebuild: amd64/x86 stable, bug #217537 diff --git a/dev-ml/extlib/extlib-1.4.ebuild b/dev-ml/extlib/extlib-1.4.ebuild deleted file mode 100644 index 0c6cc039094c..000000000000 --- a/dev-ml/extlib/extlib-1.4.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.4.ebuild,v 1.2 2008/01/27 12:19:53 grobian Exp $ - -inherit findlib - -DESCRIPTION="Standard library extensions for O'Caml" -HOMEPAGE="http://ocaml-lib.sourceforge.net/" -SRC_URI="mirror://sourceforge/ocaml-lib/${P}.tgz" -LICENSE="LGPL-2.1" -DEPEND=">=dev-lang/ocaml-3.07" -SLOT="0" -KEYWORDS="x86 ppc amd64" -IUSE="doc" - -src_compile() { - sed -i -e "s/IOO//" Makefile - make all opt - - if use doc; then - make doc - fi -} - -src_install () { - findlib_src_install - - # install documentation - dodoc README.txt - - if use doc; then - dohtml doc/* - fi -} diff --git a/dev-ml/extlib/extlib-1.5.ebuild b/dev-ml/extlib/extlib-1.5.ebuild deleted file mode 100644 index dd10a0079c95..000000000000 --- a/dev-ml/extlib/extlib-1.5.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/extlib/extlib-1.5.ebuild,v 1.3 2008/01/27 12:19:53 grobian Exp $ - -inherit findlib eutils - -DESCRIPTION="Standard library extensions for O'Caml" -HOMEPAGE="http://ocaml-lib.sourceforge.net/" -SRC_URI="mirror://sourceforge/ocaml-lib/${P}.tar.gz" -LICENSE="LGPL-2.1" -DEPEND=">=dev-lang/ocaml-3.07" -SLOT="0" -KEYWORDS="~x86 ~ppc ~amd64" -IUSE="doc" - -src_unpack() { - unpack ${A} - epatch ${FILESDIR}/${P}-ExtList.remove.patch -} - -src_compile() { - sed -i -e "s/IOO//" Makefile - make all opt - - if use doc; then - make doc - fi -} - -src_install () { - findlib_src_install - - # install documentation - dodoc README.txt - - if use doc; then - dohtml doc/* - fi -} diff --git a/dev-ml/extlib/files/extlib-1.5-ExtList.remove.patch b/dev-ml/extlib/files/extlib-1.5-ExtList.remove.patch deleted file mode 100644 index fee95cfc04d5..000000000000 --- a/dev-ml/extlib/files/extlib-1.5-ExtList.remove.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ur extlib-1.5/extList.ml extlib-1.5.patched/extList.ml ---- extlib-1.5/extList.ml 2006-01-29 11:03:39.000000000 +0100 -+++ extlib-1.5.patched/extList.ml 2006-07-21 20:08:08.000000000 +0200 -@@ -431,7 +431,7 @@ -
- let remove l x =
- let rec loop dst = function
-- | [] -> raise Not_found
-+ | [] -> ()
- | h :: t ->
- if x = h then
- dst.tl <- t
|