diff options
author | Mike Gilbert <floppym@gentoo.org> | 2014-12-28 19:19:27 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2014-12-28 19:19:27 +0000 |
commit | 3531e7e06ee965b3d9a99b23dce47c57a71cee4d (patch) | |
tree | 084bf534825783ec7688eedf31dd26d10d8ed971 /dev-python/bsddb3 | |
parent | s/PYTHON_USE_WITH/PYTHON_REQ_USE/ (diff) | |
download | gentoo-2-3531e7e06ee965b3d9a99b23dce47c57a71cee4d.tar.gz gentoo-2-3531e7e06ee965b3d9a99b23dce47c57a71cee4d.tar.bz2 gentoo-2-3531e7e06ee965b3d9a99b23dce47c57a71cee4d.zip |
Remove old.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Diffstat (limited to 'dev-python/bsddb3')
-rw-r--r-- | dev-python/bsddb3/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/bsddb3/bsddb3-5.1.2.ebuild | 75 | ||||
-rw-r--r-- | dev-python/bsddb3/bsddb3-5.2.0.ebuild | 70 | ||||
-rw-r--r-- | dev-python/bsddb3/bsddb3-5.3.0-r1.ebuild | 71 | ||||
-rw-r--r-- | dev-python/bsddb3/bsddb3-5.3.0.ebuild | 71 | ||||
-rw-r--r-- | dev-python/bsddb3/bsddb3-6.0.0.ebuild | 75 | ||||
-rw-r--r-- | dev-python/bsddb3/files/py3tests.patch | 340 |
7 files changed, 6 insertions, 703 deletions
diff --git a/dev-python/bsddb3/ChangeLog b/dev-python/bsddb3/ChangeLog index c17d21b63586..2bf5d8705783 100644 --- a/dev-python/bsddb3/ChangeLog +++ b/dev-python/bsddb3/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/bsddb3 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/ChangeLog,v 1.119 2014/10/11 13:39:36 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/ChangeLog,v 1.120 2014/12/28 19:19:27 floppym Exp $ + + 28 Dec 2014; Mike Gilbert <floppym@gentoo.org> -bsddb3-5.1.2.ebuild, + -bsddb3-5.2.0.ebuild, -bsddb3-5.3.0-r1.ebuild, -bsddb3-5.3.0.ebuild, + -bsddb3-6.0.0.ebuild, -files/py3tests.patch: + Remove old. 11 Oct 2014; Markus Meier <maekke@gentoo.org> bsddb3-6.0.1.ebuild: arm stable, bug #512012 diff --git a/dev-python/bsddb3/bsddb3-5.1.2.ebuild b/dev-python/bsddb3/bsddb3-5.1.2.ebuild deleted file mode 100644 index 64c55b78a552..000000000000 --- a/dev-python/bsddb3/bsddb3-5.1.2.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/bsddb3-5.1.2.ebuild,v 1.8 2012/07/29 17:15:19 armin76 Exp $ - -EAPI="3" -PYTHON_DEPEND="2 3:3.1" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.0 *-jython 2.7-pypy-*" - -inherit db-use distutils multilib - -DESCRIPTION="Python bindings for Berkeley DB" -HOMEPAGE="http://www.jcea.es/programacion/pybsddb.htm http://pypi.python.org/pypi/bsddb3" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~ia64 ppc x86" -IUSE="doc" - -RDEPEND=">=sys-libs/db-4.6" -DEPEND="${RDEPEND} - dev-python/setuptools" - -PYTHON_CFLAGS=("2.* + -fno-strict-aliasing") - -DOCS="ChangeLog TODO.txt" - -src_configure() { - local DB_VER - if has_version sys-libs/db:5.1; then - DB_VER="5.1" - elif has_version sys-libs/db:5.0; then - DB_VER="5.0" - elif has_version sys-libs/db:4.8; then - DB_VER="4.8" - elif has_version sys-libs/db:4.7; then - DB_VER="4.7" - else - DB_VER="4.6" - fi - - sed -e "s/dblib = 'db'/dblib = '$(db_libname ${DB_VER})'/" -i setup2.py setup3.py || die "sed failed" -} - -src_compile() { - distutils_src_compile \ - --berkeley-db="${EPREFIX}/usr" \ - --berkeley-db-incdir="${EPREFIX}$(db_includedir ${DB_VER})" \ - --berkeley-db-libdir="${EPREFIX}/usr/$(get_libdir)" -} - -src_test() { - tests() { - rm -f build - ln -s build-${PYTHON_ABI} build - - echo TMPDIR="${T}/tests-${PYTHON_ABI}" "$(PYTHON)" test.py - TMPDIR="${T}/tests-${PYTHON_ABI}" "$(PYTHON)" test.py - } - python_execute_function tests -} - -src_install() { - distutils_src_install - - delete_tests() { - rm -fr "${ED}$(python_get_sitedir)/bsddb3/tests" - } - python_execute_function -q delete_tests - - if use doc; then - dohtml -r docs/html/* || die "dohtml failed" - fi -} diff --git a/dev-python/bsddb3/bsddb3-5.2.0.ebuild b/dev-python/bsddb3/bsddb3-5.2.0.ebuild deleted file mode 100644 index f35a6e3a837f..000000000000 --- a/dev-python/bsddb3/bsddb3-5.2.0.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/bsddb3-5.2.0.ebuild,v 1.7 2012/07/29 17:15:19 armin76 Exp $ - -EAPI="3" -PYTHON_DEPEND="2 3:3.1" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.0 *-jython 2.7-pypy-*" - -inherit db-use distutils multilib - -DESCRIPTION="Python bindings for Berkeley DB" -HOMEPAGE="http://www.jcea.es/programacion/pybsddb.htm http://pypi.python.org/pypi/bsddb3" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~ia64 ppc x86" -IUSE="doc" - -RDEPEND=">=sys-libs/db-4.8.30" -DEPEND="${RDEPEND} - dev-python/setuptools" - -PYTHON_CFLAGS=("2.* + -fno-strict-aliasing") - -DOCS="ChangeLog TODO.txt" - -src_configure() { - local DB_VER - if has_version sys-libs/db:5.1; then - DB_VER="5.1" - elif has_version sys-libs/db:5.0; then - DB_VER="5.0" - else - DB_VER="4.8" - fi - sed -e "s/dblib = 'db'/dblib = '$(db_libname ${DB_VER})'/" -i setup2.py setup3.py || die "sed failed" -} - -src_compile() { - distutils_src_compile \ - --berkeley-db="${EPREFIX}/usr" \ - --berkeley-db-incdir="${EPREFIX}$(db_includedir ${DB_VER})" \ - --berkeley-db-libdir="${EPREFIX}/usr/$(get_libdir)" -} - -src_test() { - tests() { - rm -f build - ln -s build-${PYTHON_ABI} build - - echo TMPDIR="${T}/tests-${PYTHON_ABI}" "$(PYTHON)" test.py - TMPDIR="${T}/tests-${PYTHON_ABI}" "$(PYTHON)" test.py - } - python_execute_function tests -} - -src_install() { - distutils_src_install - - delete_tests() { - rm -fr "${ED}$(python_get_sitedir)/bsddb3/tests" - } - python_execute_function -q delete_tests - - if use doc; then - dohtml -r docs/html/* || die "dohtml failed" - fi -} diff --git a/dev-python/bsddb3/bsddb3-5.3.0-r1.ebuild b/dev-python/bsddb3/bsddb3-5.3.0-r1.ebuild deleted file mode 100644 index 972b9581dd8b..000000000000 --- a/dev-python/bsddb3/bsddb3-5.3.0-r1.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/bsddb3-5.3.0-r1.ebuild,v 1.3 2013/09/05 18:46:07 mgorny Exp $ - -EAPI=5 -PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) - -inherit db-use distutils-r1 multilib - -DESCRIPTION="Python bindings for Berkeley DB" -HOMEPAGE="http://www.jcea.es/programacion/pybsddb.htm http://pypi.python.org/pypi/bsddb3" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="doc" - -RDEPEND=">=sys-libs/db-4.8.30" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" - -PYTHON_CFLAGS=("2.* + -fno-strict-aliasing") - -DOCS=( ChangeLog TODO.txt ) -DISTUTILS_IN_SOURCE_BUILD=1 - -src_configure() { - local DB_VER - if has_version sys-libs/db:5.1; then - DB_VER="5.1" - elif has_version sys-libs/db:5.0; then - DB_VER="5.0" - else - DB_VER="4.8" - fi - sed -e "s/dblib = 'db'/dblib = '$(db_libname ${DB_VER})'/" -i setup2.py setup3.py || die "sed failed" -} - -src_compile() { - distutils-r1_src_compile \ - --berkeley-db="${EPREFIX}/usr" \ - --berkeley-db-incdir="${EPREFIX}$(db_includedir ${DB_VER})" \ - --berkeley-db-libdir="${EPREFIX}/usr/$(get_libdir)" -} - -python_test() { - # https://sourceforge.net/p/pybsddb/bugs/72/ - pushd "${BUILD_DIR}"/../ > /dev/null - if [[ "${EPYTHON}" == python2* ]]; then - "${PYTHON}" build/lib/bsddb3/tests/test_all.py - elif [[ "${EPYTHON}" == python3* ]]; then - "${PYTHON}" setup.py build - einfo "all 500 tests are run silently and may take a number of minutes to complete" - "${PYTHON}" ./test3.py - fi -} - -python_install() { - rm -fr "${ED}$(python_get_sitedir)/bsddb3/tests" - - if use doc; then - dohtml -r docs/html/* || die "dohtml failed" - fi - distutils-r1_python_install -} - -python_install_all() { - local HTML_DOCS=( docs/html/. ) - distutils-r1_python_install_all -} diff --git a/dev-python/bsddb3/bsddb3-5.3.0.ebuild b/dev-python/bsddb3/bsddb3-5.3.0.ebuild deleted file mode 100644 index 7d77f712549c..000000000000 --- a/dev-python/bsddb3/bsddb3-5.3.0.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/bsddb3-5.3.0.ebuild,v 1.13 2013/07/17 23:24:15 floppym Exp $ - -EAPI="3" -PYTHON_DEPEND="2 3:3.1" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.0 *-jython 2.7-pypy-*" - -inherit db-use distutils multilib - -DESCRIPTION="Python bindings for Berkeley DB" -HOMEPAGE="http://www.jcea.es/programacion/pybsddb.htm http://pypi.python.org/pypi/bsddb3" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~ppc64 ~sparc x86" -IUSE="doc" - -RDEPEND=">=sys-libs/db-4.8.30" -DEPEND="${RDEPEND} - dev-python/setuptools" - -PYTHON_CFLAGS=("2.* + -fno-strict-aliasing") - -DOCS="ChangeLog TODO.txt" - -src_configure() { - local DB_VER - if has_version sys-libs/db:5.1; then - DB_VER="5.1" - elif has_version sys-libs/db:5.0; then - DB_VER="5.0" - else - DB_VER="4.8" - fi - sed -e "s/dblib = 'db'/dblib = '$(db_libname ${DB_VER})'/" -i setup2.py setup3.py || die "sed failed" -} - -src_compile() { - distutils_src_compile \ - --berkeley-db="${EPREFIX}/usr" \ - --berkeley-db-incdir="${EPREFIX}$(db_includedir ${DB_VER})" \ - --berkeley-db-libdir="${EPREFIX}/usr/$(get_libdir)" -} - -src_test() { - tests() { - rm -f build - ln -s build-${PYTHON_ABI} build - - echo TMPDIR="${T}/tests-${PYTHON_ABI}" "$(PYTHON)" test.py - einfo "all 500 tests are run silently and may take a number of minutes to complete" - TMPDIR="${T}/tests-${PYTHON_ABI}" "$(PYTHON)" test.py - } - python_execute_function tests -} - -src_install() { - distutils_src_install - - delete_tests() { - rm -fr "${ED}$(python_get_sitedir)/bsddb3/tests" - } - python_execute_function -q delete_tests - - if use doc; then - dohtml -r docs/html/* || die "dohtml failed" - fi -} diff --git a/dev-python/bsddb3/bsddb3-6.0.0.ebuild b/dev-python/bsddb3/bsddb3-6.0.0.ebuild deleted file mode 100644 index 88fa9b322f31..000000000000 --- a/dev-python/bsddb3/bsddb3-6.0.0.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/bsddb3-6.0.0.ebuild,v 1.9 2014/01/15 12:41:37 ago Exp $ - -EAPI=5 -PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) - -inherit db-use distutils-r1 multilib - -DESCRIPTION="Python bindings for Berkeley DB" -HOMEPAGE="http://www.jcea.es/programacion/pybsddb.htm http://pypi.python.org/pypi/bsddb3" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="alpha ~amd64 arm ia64 ppc ppc64 sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="doc" - -RDEPEND=">=sys-libs/db-4.8.30" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" - -PYTHON_CFLAGS=("2.* + -fno-strict-aliasing") - -DOCS=( ChangeLog TODO.txt ) -DISTUTILS_IN_SOURCE_BUILD=1 - -src_configure() { - local DB_VER - if has_version sys-libs/db:5.1; then - DB_VER="5.1" - elif has_version sys-libs/db:5.0; then - DB_VER="5.0" - else - DB_VER="4.8" - fi - sed -e "s/dblib = 'db'/dblib = '$(db_libname ${DB_VER})'/" -i setup2.py setup3.py || die "sed failed" -} - -src_compile() { - distutils-r1_src_compile \ - --berkeley-db="${EPREFIX}/usr" \ - --berkeley-db-incdir="${EPREFIX}$(db_includedir ${DB_VER})" \ - --berkeley-db-libdir="${EPREFIX}/usr/$(get_libdir)" -} - -python_test() { - # https://sourceforge.net/p/pybsddb/bugs/72/ - pushd "${BUILD_DIR}"/../ > /dev/null - if [[ "${EPYTHON}" == python2* ]]; then - "${PYTHON}" build/lib/bsddb3/tests/test_all.py - elif [[ "${EPYTHON}" == python3* ]]; then - if [[ "${EPYTHON}" == 'python3.3' ]]; then - einfo "py3.3 has an internal problem within this ebuild but is known to pass tests" - else - "${PYTHON}" setup.py build - einfo "all 500 tests are run silently and may take a number of minutes to complete" - "${PYTHON}" -v test3.py || die - fi - fi -} - -python_install() { - rm -fr "${ED}$(python_get_sitedir)/bsddb3/tests" - - if use doc; then - dohtml -r docs/html/* || die "dohtml failed" - fi - distutils-r1_python_install -} - -python_install_all() { - local HTML_DOCS=( docs/html/. ) - distutils-r1_python_install_all -} diff --git a/dev-python/bsddb3/files/py3tests.patch b/dev-python/bsddb3/files/py3tests.patch deleted file mode 100644 index 2970bd851dfe..000000000000 --- a/dev-python/bsddb3/files/py3tests.patch +++ /dev/null @@ -1,340 +0,0 @@ -The code for running tests under py3 is flawed in 2 distinct areas for running tests in the source. -This patch corrects use of local import syntax in tests under Lib3/, the libs for py3. -The other appears a typo or an oversight; entry of suite instead of test_suite in 1 test file. -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_associate.py bsddb3-6.0.1/Lib3/bsddb/test/test_associate.py ---- Lib3/bsddb/test/test_associate.py 2013-12-05 03:52:00.000000000 +0800 -+++ Lib3/bsddb/test/test_associate.py 2014-04-01 16:30:39.219546604 +0800 -@@ -42,7 +42,7 @@ - from pprint import pprint - - import unittest --from .test_all import db, dbshelve, test_support, verbose, have_threads, \ -+from test_all import db, dbshelve, test_support, verbose, have_threads, \ - get_new_environment_path - - -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_basics.py bsddb3-6.0.1/Lib3/bsddb/test/test_basics.py ---- Lib3/bsddb/test/test_basics.py 2013-12-05 03:51:55.000000000 +0800 -+++ Lib3/bsddb/test/test_basics.py 2014-04-01 16:30:39.223546604 +0800 -@@ -46,7 +46,7 @@ - import time - import sys - --from .test_all import db, test_support, verbose, get_new_environment_path, \ -+from test_all import db, test_support, verbose, get_new_environment_path, \ - get_new_database_path - - DASH = '-' -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_compare.py bsddb3-6.0.1/Lib3/bsddb/test/test_compare.py ---- Lib3/bsddb/test/test_compare.py 2013-12-05 03:52:05.000000000 +0800 -+++ Lib3/bsddb/test/test_compare.py 2014-04-01 16:32:43.704544030 +0800 -@@ -38,12 +38,12 @@ - """ - - import sys, os, re --from . import test_all -+import test_all - from io import StringIO - - import unittest - --from .test_all import db, dbshelve, test_support, \ -+from test_all import db, dbshelve, test_support, \ - get_new_environment_path, get_new_database_path - - -@@ -479,4 +479,4 @@ - return res - - if __name__ == '__main__': -- unittest.main(defaultTest = 'suite') -+ unittest.main(defaultTest = 'test_suite') -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_compat.py bsddb3-6.0.1/Lib3/bsddb/test/test_compat.py ---- Lib3/bsddb/test/test_compat.py 2013-12-05 03:51:41.000000000 +0800 -+++ Lib3/bsddb/test/test_compat.py 2014-04-01 16:30:39.225546604 +0800 -@@ -41,7 +41,7 @@ - import os, string - import unittest - --from .test_all import db, hashopen, btopen, rnopen, verbose, \ -+from test_all import db, hashopen, btopen, rnopen, verbose, \ - get_new_database_path - - -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_cursor_pget_bug.py bsddb3-6.0.1/Lib3/bsddb/test/test_cursor_pget_bug.py ---- Lib3/bsddb/test/test_cursor_pget_bug.py 2013-12-05 03:51:53.000000000 +0800 -+++ Lib3/bsddb/test/test_cursor_pget_bug.py 2014-04-01 16:30:39.225546604 +0800 -@@ -36,7 +36,7 @@ - import unittest - import os, glob - --from .test_all import db, test_support, get_new_environment_path, \ -+from test_all import db, test_support, get_new_environment_path, \ - get_new_database_path - - #---------------------------------------------------------------------- -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_dbenv.py bsddb3-6.0.1/Lib3/bsddb/test/test_dbenv.py ---- Lib3/bsddb/test/test_dbenv.py 2013-12-05 03:52:09.000000000 +0800 -+++ Lib3/bsddb/test/test_dbenv.py 2014-04-01 16:30:39.227546604 +0800 -@@ -36,7 +36,7 @@ - import unittest - import os, glob - --from .test_all import db, test_support, get_new_environment_path, \ -+from test_all import db, test_support, get_new_environment_path, \ - get_new_database_path - - #---------------------------------------------------------------------- -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_dbobj.py bsddb3-6.0.1/Lib3/bsddb/test/test_dbobj.py ---- Lib3/bsddb/test/test_dbobj.py 2013-12-05 03:51:52.000000000 +0800 -+++ Lib3/bsddb/test/test_dbobj.py 2014-04-01 16:30:39.227546604 +0800 -@@ -37,7 +37,7 @@ - import os, string - import unittest - --from .test_all import db, dbobj, test_support, get_new_environment_path, \ -+from test_all import db, dbobj, test_support, get_new_environment_path, \ - get_new_database_path - - #---------------------------------------------------------------------- -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_db.py bsddb3-6.0.1/Lib3/bsddb/test/test_db.py ---- Lib3/bsddb/test/test_db.py 2013-12-05 03:52:12.000000000 +0800 -+++ Lib3/bsddb/test/test_db.py 2014-04-01 16:30:39.228546604 +0800 -@@ -36,7 +36,7 @@ - import unittest - import os, glob - --from .test_all import db, test_support, get_new_environment_path, \ -+from test_all import db, test_support, get_new_environment_path, \ - get_new_database_path - - #---------------------------------------------------------------------- -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_dbshelve.py bsddb3-6.0.1/Lib3/bsddb/test/test_dbshelve.py ---- Lib3/bsddb/test/test_dbshelve.py 2013-12-05 03:52:04.000000000 +0800 -+++ Lib3/bsddb/test/test_dbshelve.py 2014-04-01 16:30:39.229546604 +0800 -@@ -42,7 +42,7 @@ - import unittest - - --from .test_all import db, dbshelve, test_support, verbose, \ -+from test_all import db, dbshelve, test_support, verbose, \ - get_new_environment_path, get_new_database_path - - -@@ -73,14 +73,14 @@ - - def setUp(self): - if sys.version_info[0] >= 3 : -- from .test_all import do_proxy_db_py3k -+ from test_all import do_proxy_db_py3k - self._flag_proxy_db_py3k = do_proxy_db_py3k(False) - self.filename = get_new_database_path() - self.do_open() - - def tearDown(self): - if sys.version_info[0] >= 3 : -- from .test_all import do_proxy_db_py3k -+ from test_all import do_proxy_db_py3k - do_proxy_db_py3k(self._flag_proxy_db_py3k) - self.do_close() - test_support.unlink(self.filename) -@@ -340,7 +340,7 @@ - - def tearDown(self): - if sys.version_info[0] >= 3 : -- from .test_all import do_proxy_db_py3k -+ from test_all import do_proxy_db_py3k - do_proxy_db_py3k(self._flag_proxy_db_py3k) - self.do_close() - test_support.rmtree(self.homeDir) -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_dbtables.py bsddb3-6.0.1/Lib3/bsddb/test/test_dbtables.py ---- Lib3/bsddb/test/test_dbtables.py 2013-12-05 03:51:49.000000000 +0800 -+++ Lib3/bsddb/test/test_dbtables.py 2014-04-01 16:30:39.231546604 +0800 -@@ -32,7 +32,7 @@ - import pickle - - import unittest --from .test_all import db, dbtables, test_support, verbose, \ -+from test_all import db, dbtables, test_support, verbose, \ - get_new_environment_path, get_new_database_path - - #---------------------------------------------------------------------- -@@ -43,7 +43,7 @@ - def setUp(self): - import sys - if sys.version_info[0] >= 3 : -- from .test_all import do_proxy_db_py3k -+ from test_all import do_proxy_db_py3k - self._flag_proxy_db_py3k = do_proxy_db_py3k(False) - - self.testHomeDir = get_new_environment_path() -@@ -54,7 +54,7 @@ - self.tdb.close() - import sys - if sys.version_info[0] >= 3 : -- from .test_all import do_proxy_db_py3k -+ from test_all import do_proxy_db_py3k - do_proxy_db_py3k(self._flag_proxy_db_py3k) - test_support.rmtree(self.testHomeDir) - -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_distributed_transactions.py bsddb3-6.0.1/Lib3/bsddb/test/test_distributed_transactions.py ---- Lib3/bsddb/test/test_distributed_transactions.py 2013-12-05 03:51:40.000000000 +0800 -+++ Lib3/bsddb/test/test_distributed_transactions.py 2014-04-01 16:30:39.231546604 +0800 -@@ -39,10 +39,10 @@ - import os - import unittest - --from .test_all import db, test_support, get_new_environment_path, \ -+from test_all import db, test_support, get_new_environment_path, \ - get_new_database_path - --from .test_all import verbose -+from test_all import verbose - - #---------------------------------------------------------------------- - -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_early_close.py bsddb3-6.0.1/Lib3/bsddb/test/test_early_close.py ---- Lib3/bsddb/test/test_early_close.py 2013-12-05 03:51:47.000000000 +0800 -+++ Lib3/bsddb/test/test_early_close.py 2014-04-01 16:30:39.232546604 +0800 -@@ -40,7 +40,7 @@ - import os, sys - import unittest - --from .test_all import db, test_support, verbose, get_new_environment_path, get_new_database_path -+from test_all import db, test_support, verbose, get_new_environment_path, get_new_database_path - - # We're going to get warnings in this module about trying to close the db when - # its env is already closed. Let's just ignore those. -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_fileid.py bsddb3-6.0.1/Lib3/bsddb/test/test_fileid.py ---- Lib3/bsddb/test/test_fileid.py 2013-12-05 03:51:44.000000000 +0800 -+++ Lib3/bsddb/test/test_fileid.py 2014-04-01 16:30:39.233546604 +0800 -@@ -40,7 +40,7 @@ - import shutil - import unittest - --from .test_all import db, test_support, get_new_environment_path, get_new_database_path -+from test_all import db, test_support, get_new_environment_path, get_new_database_path - - class FileidResetTestCase(unittest.TestCase): - def setUp(self): -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_get_none.py bsddb3-6.0.1/Lib3/bsddb/test/test_get_none.py ---- Lib3/bsddb/test/test_get_none.py 2013-12-05 03:51:56.000000000 +0800 -+++ Lib3/bsddb/test/test_get_none.py 2014-04-01 16:30:39.233546604 +0800 -@@ -40,7 +40,7 @@ - import os, string - import unittest - --from .test_all import db, verbose, get_new_database_path -+from test_all import db, verbose, get_new_database_path - - - #---------------------------------------------------------------------- -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_join.py bsddb3-6.0.1/Lib3/bsddb/test/test_join.py ---- Lib3/bsddb/test/test_join.py 2013-12-05 03:51:46.000000000 +0800 -+++ Lib3/bsddb/test/test_join.py 2014-04-01 16:30:39.234546604 +0800 -@@ -40,7 +40,7 @@ - - import unittest - --from .test_all import db, dbshelve, test_support, verbose, \ -+from test_all import db, dbshelve, test_support, verbose, \ - get_new_environment_path, get_new_database_path - - #---------------------------------------------------------------------- -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_lock.py bsddb3-6.0.1/Lib3/bsddb/test/test_lock.py ---- Lib3/bsddb/test/test_lock.py 2013-12-05 03:52:03.000000000 +0800 -+++ Lib3/bsddb/test/test_lock.py 2014-04-01 16:30:39.234546604 +0800 -@@ -40,7 +40,7 @@ - import time - - import unittest --from .test_all import db, test_support, verbose, have_threads, \ -+from test_all import db, test_support, verbose, have_threads, \ - get_new_environment_path, get_new_database_path - - if have_threads : -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_misc.py bsddb3-6.0.1/Lib3/bsddb/test/test_misc.py ---- Lib3/bsddb/test/test_misc.py 2013-12-05 03:51:48.000000000 +0800 -+++ Lib3/bsddb/test/test_misc.py 2014-04-01 16:30:39.235546604 +0800 -@@ -39,7 +39,7 @@ - import os, sys - import unittest - --from .test_all import db, dbshelve, hashopen, test_support, get_new_environment_path, get_new_database_path -+from test_all import db, dbshelve, hashopen, test_support, get_new_environment_path, get_new_database_path - - #---------------------------------------------------------------------- - -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_pickle.py bsddb3-6.0.1/Lib3/bsddb/test/test_pickle.py ---- Lib3/bsddb/test/test_pickle.py 2013-12-05 03:51:41.000000000 +0800 -+++ Lib3/bsddb/test/test_pickle.py 2014-04-01 16:30:39.235546604 +0800 -@@ -47,7 +47,7 @@ - - import unittest - --from .test_all import db, test_support, get_new_environment_path, get_new_database_path -+from test_all import db, test_support, get_new_environment_path, get_new_database_path - - #---------------------------------------------------------------------- - -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_queue.py bsddb3-6.0.1/Lib3/bsddb/test/test_queue.py ---- Lib3/bsddb/test/test_queue.py 2013-12-05 03:51:50.000000000 +0800 -+++ Lib3/bsddb/test/test_queue.py 2014-04-01 16:30:39.236546604 +0800 -@@ -41,7 +41,7 @@ - from pprint import pprint - import unittest - --from .test_all import db, verbose, get_new_database_path -+from test_all import db, verbose, get_new_database_path - - #---------------------------------------------------------------------- - -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_recno.py bsddb3-6.0.1/Lib3/bsddb/test/test_recno.py ---- Lib3/bsddb/test/test_recno.py 2013-12-05 03:52:01.000000000 +0800 -+++ Lib3/bsddb/test/test_recno.py 2014-04-01 16:30:39.237546604 +0800 -@@ -41,7 +41,7 @@ - from pprint import pprint - import unittest - --from .test_all import db, test_support, verbose, get_new_environment_path, get_new_database_path -+from test_all import db, test_support, verbose, get_new_environment_path, get_new_database_path - - letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' - -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_replication.py bsddb3-6.0.1/Lib3/bsddb/test/test_replication.py ---- Lib3/bsddb/test/test_replication.py 2013-12-05 03:51:58.000000000 +0800 -+++ Lib3/bsddb/test/test_replication.py 2014-04-01 16:30:39.239546604 +0800 -@@ -40,7 +40,7 @@ - import time - import unittest - --from .test_all import db, test_support, have_threads, verbose, \ -+from test_all import db, test_support, have_threads, verbose, \ - get_new_environment_path, get_new_database_path - - -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_sequence.py bsddb3-6.0.1/Lib3/bsddb/test/test_sequence.py ---- Lib3/bsddb/test/test_sequence.py 2013-12-05 03:51:51.000000000 +0800 -+++ Lib3/bsddb/test/test_sequence.py 2014-04-01 16:30:39.239546604 +0800 -@@ -36,7 +36,7 @@ - import unittest - import os - --from .test_all import db, test_support, get_new_environment_path, get_new_database_path -+from test_all import db, test_support, get_new_environment_path, get_new_database_path - - - class DBSequenceTest(unittest.TestCase): -diff -ur bsddb3-6.0.1.orig/Lib3/bsddb/test/test_thread.py bsddb3-6.0.1/Lib3/bsddb/test/test_thread.py ---- Lib3/bsddb/test/test_thread.py 2013-12-05 03:51:39.000000000 +0800 -+++ Lib3/bsddb/test/test_thread.py 2014-04-01 16:30:39.241546604 +0800 -@@ -51,7 +51,7 @@ - pass - - import unittest --from .test_all import db, dbutils, test_support, verbose, have_threads, \ -+from test_all import db, dbutils, test_support, verbose, have_threads, \ - get_new_environment_path, get_new_database_path - - if have_threads : - |