git: 11ba99b8f1c2 - main - databases/py-berkeleydb: Update version 18.1.11=>18.1.12
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 21 Dec 2024 01:24:49 UTC
The branch main has been updated by bofh:
URL: https://cgit.FreeBSD.org/ports/commit/?id=11ba99b8f1c277f0bd0ea21efc6e577461821bde
commit 11ba99b8f1c277f0bd0ea21efc6e577461821bde
Author: Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2024-12-20 07:13:46 +0000
Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2024-12-21 01:07:56 +0000
databases/py-berkeleydb: Update version 18.1.11=>18.1.12
Changelog: https://hg.jcea.es/pybsddb/file/tip/docs/changelog.rst
---
databases/py-berkeleydb/Makefile | 2 +-
databases/py-berkeleydb/distinfo | 6 +++---
databases/py-berkeleydb/files/patch-setup3.py | 14 +++++++-------
3 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/databases/py-berkeleydb/Makefile b/databases/py-berkeleydb/Makefile
index e0fb944dcf8d..00eb85ee08f8 100644
--- a/databases/py-berkeleydb/Makefile
+++ b/databases/py-berkeleydb/Makefile
@@ -1,5 +1,5 @@
PORTNAME= berkeleydb
-DISTVERSION= 18.1.11
+DISTVERSION= 18.1.12
CATEGORIES= databases python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/databases/py-berkeleydb/distinfo b/databases/py-berkeleydb/distinfo
index e9f153f0a1f1..0bbf370bf6e5 100644
--- a/databases/py-berkeleydb/distinfo
+++ b/databases/py-berkeleydb/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1730717256
-SHA256 (berkeleydb-18.1.11.tar.gz) = 7454f560d2d1a0e5d0d5630a437f19926b68bc794eb161edea2cdc4b267cf574
-SIZE (berkeleydb-18.1.11.tar.gz) = 174774
+TIMESTAMP = 1734678481
+SHA256 (berkeleydb-18.1.12.tar.gz) = 495a8179c6a36b22d0fa2f6881fa783cf752214a285760529605f608101deb28
+SIZE (berkeleydb-18.1.12.tar.gz) = 176313
diff --git a/databases/py-berkeleydb/files/patch-setup3.py b/databases/py-berkeleydb/files/patch-setup3.py
index 5fb8600126b4..bececbbdb5fa 100644
--- a/databases/py-berkeleydb/files/patch-setup3.py
+++ b/databases/py-berkeleydb/files/patch-setup3.py
@@ -1,6 +1,6 @@
---- setup3.py.orig 2021-05-19 15:44:48 UTC
+--- setup3.py.orig 2024-10-31 03:59:08 UTC
+++ setup3.py
-@@ -44,7 +44,7 @@ import glob
+@@ -41,7 +41,7 @@ os.environ['SETUPTOOLS_USE_DISTUTILS'] = 'local'
# See https://setuptools.readthedocs.io/en/latest/deprecated/\
# distutils-legacy.html
os.environ['SETUPTOOLS_USE_DISTUTILS'] = 'local'
@@ -9,18 +9,18 @@
import distutils.ccompiler
# read the module version number out of the .c file
-@@ -256,8 +256,8 @@ if os.name == 'posix':
+@@ -260,8 +260,8 @@ if os.name == 'posix':
incdir = os.path.join(BERKELEYDB_DIR, 'include')
if not libdir:
libdir = os.path.join(BERKELEYDB_DIR, 'lib')
-- if not '-ldb' in LIBS:
+- if '-ldb' not in LIBS:
- libname = [dblib]
+ if not '-l%%BDB_LIB_NAME%%' in LIBS:
+ libname = ['%%BDB_LIB_NAME%%']
else:
- if debug: print("LIBS already contains '-ldb' not adding our own", "'-l"+dblib+"'")
- libname = []
-@@ -296,7 +296,7 @@ if os.name == 'posix':
+ if debug:
+ print("LIBS already contains '-ldb' not adding our own", "'-l"+dblib+"'")
+@@ -270,7 +270,7 @@ if os.name == 'posix':
# read db.h to figure out what version of Oracle Berkeley DB this is
ver = None