Bug 185641 - [patch] devel/p5-ExtUtils-MakeMaker: dependency fixes
Summary: [patch] devel/p5-ExtUtils-MakeMaker: dependency fixes
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Frederic Culot
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-01-10 15:10 UTC by pluknet
Modified: 2014-01-11 09:10 UTC (History)
0 users

See Also:


Attachments
file.diff (1.12 KB, patch)
2014-01-10 15:10 UTC, pluknet
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description pluknet 2014-01-10 15:10:00 UTC
This change fixes dependency version of JSON::PP and makes it conditional on perl version.

work/ExtUtils-MakeMaker-6.84/Makefile.PL:   'JSON::PP'     => '2.27103',

s/27203/27103/

Fix: Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-01-10 15:10:07 UTC
Responsible Changed
From-To: freebsd-ports-bugs->perl

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 Frederic Culot freebsd_committer freebsd_triage 2014-01-11 07:50:45 UTC
Responsible Changed
From-To: perl->culot

I'll take it.
Comment 3 dfilter service freebsd_committer freebsd_triage 2014-01-11 09:08:51 UTC
Author: culot
Date: Sat Jan 11 09:08:43 2014
New Revision: 339408
URL: http://svnweb.freebsd.org/changeset/ports/339408

Log:
  - Update to 6.86
  - Remove dependency on p5-version: 0.82 is required (not 0.88) and already in base since perl5.12
  - Fix dependency version for JSON::PP [1]
  
  Changes:	http://search.cpan.org/dist/ExtUtils-MakeMaker/Changes
  PR:		ports/185641 [1]
  Submitted by:	Sergey Kandaurov <pluknet@gmail.com>

Modified:
  head/devel/p5-ExtUtils-MakeMaker/Makefile
  head/devel/p5-ExtUtils-MakeMaker/distinfo

Modified: head/devel/p5-ExtUtils-MakeMaker/Makefile
==============================================================================
--- head/devel/p5-ExtUtils-MakeMaker/Makefile	Sat Jan 11 08:49:31 2014	(r339407)
+++ head/devel/p5-ExtUtils-MakeMaker/Makefile	Sat Jan 11 09:08:43 2014	(r339408)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	ExtUtils-MakeMaker
-PORTVERSION=	6.84
+PORTVERSION=	6.86
 CATEGORIES=	devel perl5
 MASTER_SITES=	CPAN
 PKGNAMEPREFIX=	p5-
@@ -13,9 +13,6 @@ COMMENT=	Designed to write a Makefile fo
 LICENSE=	ART10 GPLv1
 LICENSE_COMB=	dual
 
-BUILD_DEPENDS=	p5-JSON-PP>=2.27203:${PORTSDIR}/converters/p5-JSON-PP
-RUN_DEPENDS:=	${BUILD_DEPENDS}
-
 USES=		perl5
 USE_PERL5=	configure
 
@@ -23,9 +20,9 @@ USE_PERL5=	configure
 
 .if ${PERL_LEVEL} < 501400
 BUILD_DEPENDS+=	p5-ExtUtils-Manifest>=1.58:${PORTSDIR}/devel/p5-ExtUtils-Manifest \
-		p5-version>=0.88:${PORTSDIR}/devel/p5-version
+		p5-JSON-PP>=2.27103:${PORTSDIR}/converters/p5-JSON-PP
 RUN_DEPENDS+=	p5-ExtUtils-Manifest>=1.58:${PORTSDIR}/devel/p5-ExtUtils-Manifest \
-		p5-version>=0.88:${PORTSDIR}/devel/p5-version
+		p5-JSON-PP>=2.27103:${PORTSDIR}/converters/p5-JSON-PP
 .endif
 
 .if ${PERL_LEVEL} < 501600

Modified: head/devel/p5-ExtUtils-MakeMaker/distinfo
==============================================================================
--- head/devel/p5-ExtUtils-MakeMaker/distinfo	Sat Jan 11 08:49:31 2014	(r339407)
+++ head/devel/p5-ExtUtils-MakeMaker/distinfo	Sat Jan 11 09:08:43 2014	(r339408)
@@ -1,2 +1,2 @@
-SHA256 (ExtUtils-MakeMaker-6.84.tar.gz) = abec5ba40505068835c40e0177a1a83270680dd37fb5f3a1bc86a63a5db06ee8
-SIZE (ExtUtils-MakeMaker-6.84.tar.gz) = 434571
+SHA256 (ExtUtils-MakeMaker-6.86.tar.gz) = 0661da0318a95f360fee62d84db7579e7477df200c2d829652c5dc6ee094e2bf
+SIZE (ExtUtils-MakeMaker-6.86.tar.gz) = 435933
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 4 Frederic Culot freebsd_committer freebsd_triage 2014-01-11 09:08:59 UTC
State Changed
From-To: open->closed

Committed, with minor changes. Thanks!