diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-04-20 14:24:21 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-04-20 14:24:21 +0000 |
commit | f1da60d2afeb45ae04517975d7ec9d2c2ae5d043 (patch) | |
tree | ec556b6fec3e108570a5d1360e783b1af80c53ce /dev-ml/ocaml-mysql | |
parent | x86 stable, bug #217700 (diff) | |
download | gentoo-2-f1da60d2afeb45ae04517975d7ec9d2c2ae5d043.tar.gz gentoo-2-f1da60d2afeb45ae04517975d7ec9d2c2ae5d043.tar.bz2 gentoo-2-f1da60d2afeb45ae04517975d7ec9d2c2ae5d043.zip |
remove old
(Portage version: 2.1.5_rc5)
Diffstat (limited to 'dev-ml/ocaml-mysql')
-rw-r--r-- | dev-ml/ocaml-mysql/ChangeLog | 6 | ||||
-rw-r--r-- | dev-ml/ocaml-mysql/files/ocaml-mysql-1.0.3-shtool.patch | 26 | ||||
-rw-r--r-- | dev-ml/ocaml-mysql/ocaml-mysql-1.0.3-r1.ebuild | 38 |
3 files changed, 5 insertions, 65 deletions
diff --git a/dev-ml/ocaml-mysql/ChangeLog b/dev-ml/ocaml-mysql/ChangeLog index 4af225bebc57..6e2f98b497e6 100644 --- a/dev-ml/ocaml-mysql/ChangeLog +++ b/dev-ml/ocaml-mysql/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-ml/ocaml-mysql # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog,v 1.8 2008/04/20 14:13:50 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog,v 1.9 2008/04/20 14:24:21 aballier Exp $ + + 20 Apr 2008; Alexis Ballier <aballier@gentoo.org> + -files/ocaml-mysql-1.0.3-shtool.patch, -ocaml-mysql-1.0.3-r1.ebuild: + remove old 20 Apr 2008; Markus Meier <maekke@gentoo.org> ocaml-mysql-1.0.4.ebuild: x86 stable, bug #217549 diff --git a/dev-ml/ocaml-mysql/files/ocaml-mysql-1.0.3-shtool.patch b/dev-ml/ocaml-mysql/files/ocaml-mysql-1.0.3-shtool.patch deleted file mode 100644 index 115629468bc2..000000000000 --- a/dev-ml/ocaml-mysql/files/ocaml-mysql-1.0.3-shtool.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- sh.common.orig 2004-04-07 08:50:21.000000000 +0100 -+++ sh.common 2005-05-29 20:39:20.854878600 +0100 -@@ -168,7 +168,13 @@ - else - tmpdir="/tmp" - fi -- tmpfile="$tmpdir/.shtool.$$" -+ if mkdir "$tmpdir/.shtool.$$"; then -+ tmpfile="$tmpdir/.shtool.$$/shtool.tmp" -+ else -+ echo "$msgprefix:Error: failed to create temporary file" 1>&2 -+ exit 1 -+ fi -+ tmpfile="$tmpdir/.shtool.$$/shtool.tmp" - rm -f $tmpfile >/dev/null 2>&1 - touch $tmpfile - chmod 600 $tmpfile -@@ -188,7 +194,7 @@ - shtool_exit () { - rc="$1" - if [ ".$gen_tmpfile" = .yes ]; then -- rm -f $tmpfile >/dev/null 2>&1 || true -+ rm -fr "$tmpdir/.shtool.$$" >/dev/null 2>&1 || true - fi - exit $rc - } diff --git a/dev-ml/ocaml-mysql/ocaml-mysql-1.0.3-r1.ebuild b/dev-ml/ocaml-mysql/ocaml-mysql-1.0.3-r1.ebuild deleted file mode 100644 index 7191c03c4e1b..000000000000 --- a/dev-ml/ocaml-mysql/ocaml-mysql-1.0.3-r1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ocaml-mysql-1.0.3-r1.ebuild,v 1.3 2006/11/23 17:14:59 vivo Exp $ - -inherit findlib eutils - -IUSE="doc" - -DESCRIPTION="A package for ocaml that provides access to mysql databases." -SRC_URI="http://raevnos.pennmush.org/code/${PN}/${P}.tar.gz" -HOMEPAGE="http://raevnos.pennmush.org/code/ocaml-mysql/index.html" - -DEPEND=">=dev-lang/ocaml-3.06 - >=virtual/mysql-4.0" - -RDEPEND="$DEPEND" - -SLOT="0" -LICENSE="LGPL-2" -KEYWORDS="x86 ppc" - -src_compile() -{ - epatch ${FILESDIR}/${P}-head.patch - epatch ${FILESDIR}/${P}-shtool-r1.patch - econf || die "configure failed" - make all || die "make failed" - make opt -} - -src_install() -{ - findlib_src_preinst - make install || die - - ( use doc ) && dohtml -r doc/html/* - dodoc META COPYING CHANGES README VERSION -} |