From owner-svn-ports-head@freebsd.org Fri Feb 12 18:46:11 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A785B52CBAF; Fri, 12 Feb 2021 18:46:11 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DcjBW3yTqz3l1g; Fri, 12 Feb 2021 18:46:11 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7AA54D12; Fri, 12 Feb 2021 18:46:11 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 11CIkBal078819; Fri, 12 Feb 2021 18:46:11 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 11CIkBIJ078818; Fri, 12 Feb 2021 18:46:11 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <202102121846.11CIkBIJ078818@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Fri, 12 Feb 2021 18:46:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r565047 - in head/databases: . py-berkeleydb X-SVN-Group: ports-head X-SVN-Commit-Author: bofh X-SVN-Commit-Paths: in head/databases: . py-berkeleydb X-SVN-Commit-Revision: 565047 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Feb 2021 18:46:11 -0000 Author: bofh Date: Fri Feb 12 18:46:10 2021 New Revision: 565047 URL: https://svnweb.freebsd.org/changeset/ports/565047 Log: [NEW] databases/py-berkeleydb: Python bindings for Oracle Berkeley DB This module provides a nearly complete wrapping of the Oracle/Sleepycat C API for the Database Environment, Database, Cursor, Log Cursor, Sequence and Transaction objects, and each of these is exposed as a Python type in the berkeleydb.db module. The database objects can use various access methods: btree, hash, recno, queue and heap. Complete support of Oracle Berkeley DB distributed transactions. Complete support for Oracle Berkeley DB Replication Manager. Complete support for Oracle Berkeley DB Base Replication. Please see the documents in the docs directory of the source distribution or at the website for more details on the types and methods provided. The goal is to mirror most of the real Oracle Berkeley DB API so fall back to the Oracle Berkeley DB documentation as appropriate. WWW: https://www.jcea.es/programacion/pybsddb.htm Added: head/databases/py-berkeleydb/ - copied from r565041, head/databases/py-bsddb3/ Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Fri Feb 12 18:43:54 2021 (r565046) +++ head/databases/Makefile Fri Feb 12 18:46:10 2021 (r565047) @@ -743,6 +743,7 @@ SUBDIR += py-apsw SUBDIR += py-asyncpg SUBDIR += py-bsddb3 + SUBDIR += py-berkeleydb SUBDIR += py-carbon SUBDIR += py-cassandra-driver SUBDIR += py-couchdb