git: f32c92469e42 - main - devel/plasma: Fix BUILD_DEPENDS after 2619476372c0
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 24 Jul 2023 04:20:50 UTC
The branch main has been updated by kai: URL: https://cgit.FreeBSD.org/ports/commit/?id=f32c92469e425f2c75961db623e1e6e18d095273 commit f32c92469e425f2c75961db623e1e6e18d095273 Author: Kai Knoblich <kai@FreeBSD.org> AuthorDate: 2023-07-24 03:51:16 +0000 Commit: Kai Knoblich <kai@FreeBSD.org> CommitDate: 2023-07-24 04:18:50 +0000 devel/plasma: Fix BUILD_DEPENDS after 2619476372c0 * The recently updated devel/py-capstone, which is used as RUN_DEPENDS pulls in devel/capstone which leads to conflicting dependendies with devel/capstone4 which is installed prior during the build phase. Fix the issue by switching the BUILD_DEPENDS to devel/capstone. * Bump PORTREVISION due changed package contents as the shared libs are created from the more recent devel/capstone. Reported by: pkg-fallout --- devel/plasma/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devel/plasma/Makefile b/devel/plasma/Makefile index f232c2f64406..fd01c4ce09c0 100644 --- a/devel/plasma/Makefile +++ b/devel/plasma/Makefile @@ -1,6 +1,6 @@ PORTNAME= plasma DISTVERSION= g20180708 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MAINTAINER= kai@FreeBSD.org @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= bash:shells/bash \ binutils>=2:devel/binutils \ - capstone4>=3:devel/capstone4 + capstone>=3:devel/capstone RUN_DEPENDS= binutils>=2:devel/binutils \ ${PYTHON_PKGNAMEPREFIX}capstone>=3:devel/py-capstone@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}future>=0:devel/py-future@${PY_FLAVOR} \