svn commit: r497494 - head/multimedia/py-kaa-metadata
Raphael Kubo da Costa
rakuco at FreeBSD.org
Mon Apr 1 17:37:49 UTC 2019
Author: rakuco
Date: Mon Apr 1 17:37:48 2019
New Revision: 497494
URL: https://svnweb.freebsd.org/changeset/ports/497494
Log:
Fix gexiv dependencies in the port.
The port was erroneously depending on graphics/py-exiv2 while in fact it only
needs exiv2 itself (which was always present anyway because py-exiv2 depends on
it). This port builds a Python module that links against exiv2, so clarify the
situation and stop depending on py-exiv2, which is BROKEN and DEPRECATED.
PR: 236806
Approved by: J.R. Oldroyd <fbsd at opal.com> (maintainer)
Modified:
head/multimedia/py-kaa-metadata/Makefile
Modified: head/multimedia/py-kaa-metadata/Makefile
==============================================================================
--- head/multimedia/py-kaa-metadata/Makefile Mon Apr 1 16:52:14 2019 (r497493)
+++ head/multimedia/py-kaa-metadata/Makefile Mon Apr 1 17:37:48 2019 (r497494)
@@ -3,7 +3,7 @@
PORTNAME= kaa-metadata
PORTVERSION= 0.7.7
-PORTREVISION= 15
+PORTREVISION= 16
CATEGORIES= multimedia python
MASTER_SITES= SF/freevo/${PORTNAME}/${PORTVERSION}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -11,9 +11,9 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= fbsd at opal.com
COMMENT= Kaa Media Repository - media file metadata parser
-LIB_DEPENDS= libdvdread.so:multimedia/libdvdread
-BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}kaa-base>0:multimedia/py-kaa-base@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}exiv2>0:graphics/py-exiv2@${PY_FLAVOR}
+LIB_DEPENDS= libdvdread.so:multimedia/libdvdread \
+ libexiv2.so:graphics/exiv2
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}kaa-base>0:multimedia/py-kaa-base@${PY_FLAVOR}
RUN_DEPENDS:= ${BUILD_DEPENDS}
USES= python:2.7
More information about the svn-ports-all
mailing list