summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2012-08-02 12:52:02 +0000
committerAlexis Ballier <aballier@gentoo.org>2012-08-02 12:52:02 +0000
commitca09948f801bdf4576ab6358f387e2c86d0c4a1a (patch)
treee7a66592cfeeeca039b0154078b8695f539fefcb /dev-ml/ocaml-sqlite3
parentRemove old development versions (diff)
downloadgentoo-2-ca09948f801bdf4576ab6358f387e2c86d0c4a1a.tar.gz
gentoo-2-ca09948f801bdf4576ab6358f387e2c86d0c4a1a.tar.bz2
gentoo-2-ca09948f801bdf4576ab6358f387e2c86d0c4a1a.zip
remove old
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml/ocaml-sqlite3')
-rw-r--r--dev-ml/ocaml-sqlite3/ChangeLog9
-rw-r--r--dev-ml/ocaml-sqlite3/files/ocaml-sqlite3-0.22.0-destdir.patch14
-rw-r--r--dev-ml/ocaml-sqlite3/files/ocaml-sqlite3-0.23.0-noocamlopt.patch16
-rw-r--r--dev-ml/ocaml-sqlite3/files/ocaml-sqlite3-1.5.1-werror.patch13
-rw-r--r--dev-ml/ocaml-sqlite3/ocaml-sqlite3-1.6.1.ebuild46
-rw-r--r--dev-ml/ocaml-sqlite3/ocaml-sqlite3-1.6.3.ebuild48
6 files changed, 8 insertions, 138 deletions
diff --git a/dev-ml/ocaml-sqlite3/ChangeLog b/dev-ml/ocaml-sqlite3/ChangeLog
index 68a1a71d3311..090c40b82c15 100644
--- a/dev-ml/ocaml-sqlite3/ChangeLog
+++ b/dev-ml/ocaml-sqlite3/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for dev-ml/ocaml-sqlite3
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-sqlite3/ChangeLog,v 1.27 2012/08/02 12:50:03 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-sqlite3/ChangeLog,v 1.28 2012/08/02 12:52:01 aballier Exp $
+
+ 02 Aug 2012; Alexis Ballier <aballier@gentoo.org>
+ -files/ocaml-sqlite3-0.22.0-destdir.patch,
+ -files/ocaml-sqlite3-0.23.0-noocamlopt.patch,
+ -files/ocaml-sqlite3-1.5.1-werror.patch, -ocaml-sqlite3-1.6.1.ebuild,
+ -ocaml-sqlite3-1.6.3.ebuild:
+ remove old
*ocaml-sqlite3-2.0.2 (02 Aug 2012)
diff --git a/dev-ml/ocaml-sqlite3/files/ocaml-sqlite3-0.22.0-destdir.patch b/dev-ml/ocaml-sqlite3/files/ocaml-sqlite3-0.22.0-destdir.patch
deleted file mode 100644
index 2b6d81e74b37..000000000000
--- a/dev-ml/ocaml-sqlite3/files/ocaml-sqlite3-0.22.0-destdir.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Index: ocaml-sqlite3-1.2.0/Makefile.in
-===================================================================
---- ocaml-sqlite3-1.2.0.orig/Makefile.in
-+++ ocaml-sqlite3-1.2.0/Makefile.in
-@@ -37,7 +37,8 @@ install: sqlite3.cma sqlite3.cmxa sqlite
- [ -f *.so ] && SO_FILES=*.so; \
- ocamlfind install sqlite3 META sqlite3.cmi sqlite3.mli sqlite3.cma *.cmxa *.a *.cmx $$SO_FILES
- ocamlfind ocamlmktop -o sqlite3top -package "sqlite3" sqlite3.cma
-- $(INSTALL) sqlite3top $(bindir)/sqlite3top
-+ mkdir -p $(DESTDIR)$(bindir)
-+ $(INSTALL) sqlite3top $(DESTDIR)$(bindir)/sqlite3top
-
- remove: uninstall
- uninstall:
diff --git a/dev-ml/ocaml-sqlite3/files/ocaml-sqlite3-0.23.0-noocamlopt.patch b/dev-ml/ocaml-sqlite3/files/ocaml-sqlite3-0.23.0-noocamlopt.patch
deleted file mode 100644
index cac7e4700446..000000000000
--- a/dev-ml/ocaml-sqlite3/files/ocaml-sqlite3-0.23.0-noocamlopt.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Index: ocaml-sqlite3-0.23.0/Makefile.in
-===================================================================
---- ocaml-sqlite3-0.23.0.orig/Makefile.in
-+++ ocaml-sqlite3-0.23.0/Makefile.in
-@@ -33,9 +33,9 @@ distclean: clean
-
- # install rebuilds sqlite3top to point to the findlib-managed dll and not the
- # one in .
--install: sqlite3.cma sqlite3.cmxa sqlite3top
-+install: sqlite3.cma sqlite3top
- [ -f *.so ] && SO_FILES=*.so; \
-- ocamlfind install sqlite3 META sqlite3.cmi sqlite3.mli sqlite3.cma *.cmxa *.a *.cmx $$SO_FILES
-+ ocamlfind install sqlite3 META sqlite3.cmi sqlite3.mli sqlite3.cma $(wildcard *.cmxa *.a *.cmx) $$SO_FILES
- ocamlfind ocamlmktop -o sqlite3top -package "sqlite3" sqlite3.cma
- $(INSTALL) -D sqlite3top $(DESTDIR)$(bindir)/sqlite3top
-
diff --git a/dev-ml/ocaml-sqlite3/files/ocaml-sqlite3-1.5.1-werror.patch b/dev-ml/ocaml-sqlite3/files/ocaml-sqlite3-1.5.1-werror.patch
deleted file mode 100644
index ab0c709dedc9..000000000000
--- a/dev-ml/ocaml-sqlite3/files/ocaml-sqlite3-1.5.1-werror.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: ocaml-sqlite3-1.5.1/Makefile.in
-===================================================================
---- ocaml-sqlite3-1.5.1.orig/Makefile.in
-+++ ocaml-sqlite3-1.5.1/Makefile.in
-@@ -12,7 +12,7 @@ else
- endif
-
- CC=@CC@
--CFLAGS=@CPPFLAGS@ @CFLAGS@ $(HAS_ENABLE_LOAD_EXTENSION) -fPIC -Wall -pedantic -Werror -Wno-long-long
-+CFLAGS=@CPPFLAGS@ @CFLAGS@ $(HAS_ENABLE_LOAD_EXTENSION) -fPIC -Wall -pedantic -Wno-long-long
- LIBS=@LIBS@
- LDFLAGS=@LDFLAGS@
-
diff --git a/dev-ml/ocaml-sqlite3/ocaml-sqlite3-1.6.1.ebuild b/dev-ml/ocaml-sqlite3/ocaml-sqlite3-1.6.1.ebuild
deleted file mode 100644
index e59ab71cb89c..000000000000
--- a/dev-ml/ocaml-sqlite3/ocaml-sqlite3-1.6.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-sqlite3/ocaml-sqlite3-1.6.1.ebuild,v 1.1 2011/03/15 21:54:07 aballier Exp $
-
-EAPI="2"
-
-inherit findlib eutils
-
-IUSE="doc +ocamlopt"
-
-DESCRIPTION="A package for ocaml that provides access to SQLite databases."
-SRC_URI="http://ocaml.info/ocaml_sources/${P}.tar.gz"
-HOMEPAGE="http://ocaml.info/home/ocaml_sources.html#ocaml-sqlite3"
-
-DEPEND=">=dev-lang/ocaml-3.11[ocamlopt?]
- >=dev-db/sqlite-3.3.3"
-
-RDEPEND="${DEPEND}"
-
-SLOT="0"
-LICENSE="MIT"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-0.22.0-destdir.patch"
- epatch "${FILESDIR}/${PN}-0.23.0-noocamlopt.patch"
- epatch "${FILESDIR}/${PN}-1.5.1-werror.patch"
-}
-
-src_compile() {
- emake -j1 bytecode || die "make bytecode failed"
- if use ocamlopt; then
- emake -j1 opt || die "make opt failed"
- fi
- if use doc; then
- emake -j1 docs || die "make doc failed"
- fi
-}
-
-src_install() {
- findlib_src_preinst
- export OCAMLPATH="${OCAMLFIND_DESTDIR}"
- emake DESTDIR="${D}" install || die "make install failed"
- dodoc Changelog README.txt TODO
- use doc && dohtml doc/*
-}
diff --git a/dev-ml/ocaml-sqlite3/ocaml-sqlite3-1.6.3.ebuild b/dev-ml/ocaml-sqlite3/ocaml-sqlite3-1.6.3.ebuild
deleted file mode 100644
index 5138764e5751..000000000000
--- a/dev-ml/ocaml-sqlite3/ocaml-sqlite3-1.6.3.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-sqlite3/ocaml-sqlite3-1.6.3.ebuild,v 1.1 2012/07/05 02:06:09 aballier Exp $
-
-EAPI="2"
-
-inherit findlib eutils
-
-IUSE="doc +ocamlopt"
-
-MY_P="sqlite3-ocaml-${PV}"
-DESCRIPTION="A package for ocaml that provides access to SQLite databases."
-SRC_URI="http://bitbucket.org/mmottl/sqlite3-ocaml/downloads/${MY_P}.tar.gz"
-HOMEPAGE="http://bitbucket.org/mmottl/sqlite3-ocaml"
-
-DEPEND=">=dev-lang/ocaml-3.11[ocamlopt?]
- >=dev-db/sqlite-3.3.3"
-
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-SLOT="0"
-LICENSE="MIT"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-0.22.0-destdir.patch"
- epatch "${FILESDIR}/${PN}-0.23.0-noocamlopt.patch"
- epatch "${FILESDIR}/${PN}-1.5.1-werror.patch"
-}
-
-src_compile() {
- emake -j1 bytecode || die "make bytecode failed"
- if use ocamlopt; then
- emake -j1 opt || die "make opt failed"
- fi
- if use doc; then
- emake -j1 docs || die "make doc failed"
- fi
-}
-
-src_install() {
- findlib_src_preinst
- export OCAMLPATH="${OCAMLFIND_DESTDIR}"
- emake DESTDIR="${D}" install || die "make install failed"
- dodoc Changelog README.txt TODO
- use doc && dohtml doc/*
-}