Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Jul 2018 08:38:14 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r474241 - head/databases/p5-AnyEvent-CouchDB
Message-ID:  <201807090838.w698cEfd062284@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Mon Jul  9 08:38:13 2018
New Revision: 474241
URL: https://svnweb.freebsd.org/changeset/ports/474241

Log:
  Fix depends.
  
  This defines BUILD_DEPENDS with itself, and does not have RUN_DEPENDS.
  It most probably is bogus, so fix to have proper RUN_DEPENDS.
  
  Sponsored by:	Absolight

Modified:
  head/databases/p5-AnyEvent-CouchDB/Makefile   (contents, props changed)

Modified: head/databases/p5-AnyEvent-CouchDB/Makefile
==============================================================================
--- head/databases/p5-AnyEvent-CouchDB/Makefile	Mon Jul  9 08:36:02 2018	(r474240)
+++ head/databases/p5-AnyEvent-CouchDB/Makefile	Mon Jul  9 08:38:13 2018	(r474241)
@@ -3,7 +3,7 @@
 
 PORTNAME=	AnyEvent-CouchDB
 PORTVERSION=	1.31
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	databases perl5
 MASTER_SITES=	CPAN
 PKGNAMEPREFIX=	p5-
@@ -13,7 +13,8 @@ COMMENT=	Non-blocking CouchDB client based on jquery.c
 
 LICENSE=	MIT
 
-BUILD_DEPENDS=	couchdb>=0.9.0:databases/couchdb \
+BUILD_DEPENDS=	${RUN_DEPENDS}
+RUN_DEPENDS=	couchdb>=0.9.0:databases/couchdb \
 		p5-AnyEvent-HTTP>=2.11:www/p5-AnyEvent-HTTP \
 		p5-CouchDB-View>=0:databases/p5-CouchDB-View \
 		p5-Data-Dump-Streamer>=0:devel/p5-Data-Dump-Streamer \
@@ -21,7 +22,6 @@ BUILD_DEPENDS=	couchdb>=0.9.0:databases/couchdb \
 		p5-IO-All>=0:devel/p5-IO-All \
 		p5-JSON>=2:converters/p5-JSON \
 		p5-Scope-Guard>=0:devel/p5-Scope-Guard
-BUILD_DEPENDS:=	${BUILD_DEPENDS}
 
 NO_ARCH=	yes
 USE_PERL5=	configure



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