summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaleb Tennis <caleb@gentoo.org>2007-03-05 11:32:08 +0000
committerCaleb Tennis <caleb@gentoo.org>2007-03-05 11:32:08 +0000
commit9df1705eabf64f9bb1e8b6e28519b464a31876b0 (patch)
treec8c7325309bc7b374e612f283daaccb8fbb9d8b0 /dev-python/bsddb3
parentStable on x86, bug #169152. (diff)
downloadgentoo-2-9df1705eabf64f9bb1e8b6e28519b464a31876b0.tar.gz
gentoo-2-9df1705eabf64f9bb1e8b6e28519b464a31876b0.tar.bz2
gentoo-2-9df1705eabf64f9bb1e8b6e28519b464a31876b0.zip
remove old version - db 4.1 isn't in portage anymore
(Portage version: 2.1.2-r12)
Diffstat (limited to 'dev-python/bsddb3')
-rw-r--r--dev-python/bsddb3/ChangeLog6
-rw-r--r--dev-python/bsddb3/bsddb3-4.1.3.ebuild30
-rw-r--r--dev-python/bsddb3/files/bsddb3-4.1.3-setup.py.patch46
-rw-r--r--dev-python/bsddb3/files/digest-bsddb3-4.1.33
4 files changed, 5 insertions, 80 deletions
diff --git a/dev-python/bsddb3/ChangeLog b/dev-python/bsddb3/ChangeLog
index e6a2a839a9dc..275eca17f0f6 100644
--- a/dev-python/bsddb3/ChangeLog
+++ b/dev-python/bsddb3/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/bsddb3
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/ChangeLog,v 1.20 2007/03/04 18:29:05 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/ChangeLog,v 1.21 2007/03/05 11:32:08 caleb Exp $
+
+ 05 Mar 2007; Caleb Tennis <caleb@gentoo.org>
+ -files/bsddb3-4.1.3-setup.py.patch, -bsddb3-4.1.3.ebuild:
+ remove old version - db 4.1 isn't in portage anymore
04 Mar 2007; Christian Faulhammer <opfer@gentoo.org> bsddb3-4.5.0.ebuild:
stable x86; bug 169212
diff --git a/dev-python/bsddb3/bsddb3-4.1.3.ebuild b/dev-python/bsddb3/bsddb3-4.1.3.ebuild
deleted file mode 100644
index 50e39badbd30..000000000000
--- a/dev-python/bsddb3/bsddb3-4.1.3.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/bsddb3-4.1.3.ebuild,v 1.13 2005/04/24 09:14:18 blubb Exp $
-
-inherit distutils eutils
-
-DESCRIPTION="Python bindings for BerkeleyDB"
-HOMEPAGE="http://pybsddb.sourceforge.net/"
-SRC_URI="mirror://sourceforge/pybsddb/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="x86 ~ppc ~sparc amd64"
-IUSE=""
-
-DEPEND="virtual/python
- =sys-libs/db-4.1*"
-
-DOCS="README.txt TODO.txt"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${P}-setup.py.patch
-}
-
-src_install() {
- distutils_src_install
- dohtml docs/*
-}
diff --git a/dev-python/bsddb3/files/bsddb3-4.1.3-setup.py.patch b/dev-python/bsddb3/files/bsddb3-4.1.3-setup.py.patch
deleted file mode 100644
index 5a3fe0ed707a..000000000000
--- a/dev-python/bsddb3/files/bsddb3-4.1.3-setup.py.patch
+++ /dev/null
@@ -1,46 +0,0 @@
---- setup.py 2003-02-03 02:28:52.000000000 +0000
-+++ /root/setup.py 2004-09-26 13:00:58.000000000 +0100
-@@ -46,37 +46,13 @@
- # If we were not told where it is, go looking for it.
- incdir = libdir = None
- if not BERKELEYDB_DIR:
-- for dir in ('/usr/local', '/usr'):
-- for version in ('', '.4.1', '.4.0', '.3.3', '.3.2', '.3.1'):
-- instdir = os.path.join(dir, "BerkeleyDB"+version)
-- if os.path.exists(instdir):
-- BERKELEYDB_DIR = instdir
-- print "Found BerkeleyDB installation at " + instdir
-+ for dir in ('/usr',):
-+ for version in ('4.1', '4.0', '3.3', '3.2', '3.1'):
-+ incdir = os.path.join(dir, "include/db" + version)
-+ if os.path.exists(incdir):
-+ libdir = os.path.join(dir, "lib")
-+ libname = ['db-' + version]
- break
--
-- incdir = os.path.join(instdir, "include/db3")
-- if os.path.exists(incdir):
-- libdir = os.path.join(dir, "lib")
-- print "Found db3 header files at " + incdir
-- break
-- else:
-- incdir = None
--
--
-- if not BERKELEYDB_DIR and not incdir and not libdir:
-- print "Can't find a local BerkeleyDB installation."
-- print "(suggestion: try the --berkeley-db=/path/to/bsddb option)"
-- sys.exit(1)
--
-- # figure out from the base setting where the lib and .h are
-- if not incdir:
-- incdir = os.path.join(BERKELEYDB_DIR, 'include')
-- if not libdir:
-- libdir = os.path.join(BERKELEYDB_DIR, 'lib')
-- if not '-ldb' in LIBS:
-- libname = ['db']
-- else:
-- libname = []
- utils = []
-
- # Test if the old bsddb is built-in
diff --git a/dev-python/bsddb3/files/digest-bsddb3-4.1.3 b/dev-python/bsddb3/files/digest-bsddb3-4.1.3
deleted file mode 100644
index e29cc3997718..000000000000
--- a/dev-python/bsddb3/files/digest-bsddb3-4.1.3
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 a99ceebb787749123a9075a93eb3601b bsddb3-4.1.3.tar.gz 480049
-RMD160 57de4c656c9a382481d24ff3337ab9e331e2d926 bsddb3-4.1.3.tar.gz 480049
-SHA256 c4ae906a6df1f41d813fbb53c85234b4705d8aa1e228db052f66e904e116e811 bsddb3-4.1.3.tar.gz 480049