Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 Jun 2024 14:59:20 GMT
From:      Ruslan Makhmatkhanov <rm@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: dfcddca68e5b - main - misc/hashdb: fix build
Message-ID:  <202406071459.457ExKHR086374@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by rm:

URL: https://cgit.FreeBSD.org/ports/commit/?id=dfcddca68e5b97c1b8c3905e5c5ec35a88fd8372

commit dfcddca68e5b97c1b8c3905e5c5ec35a88fd8372
Author:     Ruslan Makhmatkhanov <rm@FreeBSD.org>
AuthorDate: 2024-06-07 14:57:20 +0000
Commit:     Ruslan Makhmatkhanov <rm@FreeBSD.org>
CommitDate: 2024-06-07 14:57:20 +0000

    misc/hashdb: fix build
    
    add setuptools dependency to fix build. the error was:
    
    checking for python3.11... /usr/local/bin/python3.11
    checking for a version of Python >= '2.1.0'... yes
    checking for the distutils Python package... no
    configure: error: cannot import Python module "distutils".
    Please check your Python installation. The error was:
    <string>:1: DeprecationWarning: The distutils package is deprecated and slated
    for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives
    
    Reported by:    pkg fallout
    Approved by:    portmgr (blanket approval)
---
 misc/hashdb/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/misc/hashdb/Makefile b/misc/hashdb/Makefile
index 15712e214493..a52d59269a02 100644
--- a/misc/hashdb/Makefile
+++ b/misc/hashdb/Makefile
@@ -12,7 +12,8 @@ WWW=		https://github.com/NPS-DEEP/hashdb
 LICENSE=	PD
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-BUILD_DEPENDS=	swig:devel/swig
+BUILD_DEPENDS=	swig:devel/swig \
+		${PYTHON_PKGNAMEPREFIX}setuptools>0:devel/py-setuptools@${PY_FLAVOR}
 LIB_DEPENDS=	libewf.so:devel/libewf
 
 USES=		autoreconf compiler:c++11-lang gmake libtool localbase:ldflags \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202406071459.457ExKHR086374>