Bug 110548 - www/p5-PodToHTML: FIX long standing namespace collision with new version
Summary: www/p5-PodToHTML: FIX long standing namespace collision with new version
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: Hiroki Sato
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-03-20 00:20 UTC by geraud
Modified: 2007-03-25 19:20 UTC (History)
1 user (show)

See Also:


Attachments
p5-PodToHTML.diff (1.41 KB, patch)
2007-03-20 00:20 UTC, geraud
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description geraud 2007-03-20 00:20:04 UTC
	The current version of the port suffers from an unresolved
	egg-and-chicken problem:

	- p5-PodToHTML requires p5-Pod-Parser
	- p5-Pod-Parser installs a Pod::Find module
	- p5-PodToHTML also installs a Pod::Find module (by the time this module
		was written, p5-Pod-Parser didn't have a Pod::Find module)
	- A wrong fix was commited a few years ago (remove the Pod/Find.pm entry
		in pkg-plist) but still the incriminating file remains upon
		deinstalling p5-PodToHTML.
	- p5-PodToHTML is indirectly required by svk and associated modules.


	This issue was reported a few days ago on a CPAN mailing list and someone
		stepped in to fix the problem at the source (namely, remove the 
		Pod::Find module and any associated calls to it).

	hrs@FreeBSD.org (maintainer) is CC'd.

Fix: Install the new version
How-To-Repeat: 	Install p5-Pod-Parser, make a md5 of the Pod/Find.pm file. Install
		p5-PodToHTML and do the same operation. Compare.
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2007-03-20 00:20:10 UTC
Responsible Changed
From-To: freebsd-ports-bugs->hrs

Over to maintainer
Comment 2 geraud 2007-03-20 01:43:46 UTC
Hi,

I just realized that I made a copy'n'paste from the terminal screwing up
the indentation of the Makefile. Here's a new version of the patch
properly indented.

Sorry for the mess.

Geraud

--- p5-PodToHTML.diff begins here ---
diff -Naur p5-PodToHTML.orig/Makefile p5-PodToHTML/Makefile
--- p5-PodToHTML.orig/Makefile	Sun Jun 12 03:13:10 2005
+++ p5-PodToHTML/Makefile	Tue Mar 20 09:58:41 2007
@@ -5,8 +5,7 @@
 # $FreeBSD: ports/www/p5-PodToHTML/Makefile,v 1.3 2005/06/11 16:13:10 skv Exp $
 
 PORTNAME=	PodToHTML
-PORTVERSION=	0.05
-PORTREVISION=	1
+PORTVERSION=	0.06
 CATEGORIES=	www perl5
 MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
 MASTER_SITE_SUBDIR=	Pod
@@ -18,6 +17,7 @@
 BUILD_DEPENDS=	${SITE_PERL}/URI.pm:${PORTSDIR}/net/p5-URI \
 		${SITE_PERL}/Pod/Parser.pm:${PORTSDIR}/textproc/p5-Pod-Parser \
 		${SITE_PERL}/HTML/Element.pm:${PORTSDIR}/www/p5-HTML-Tree \
+		${SITE_PERL}/${PERL_ARCH}/HTML/Entities.pm:${PORTSDIR}/www/p5-HTML-Parser \
 		${SITE_PERL}/HTML/FormatPS.pm:${PORTSDIR}/textproc/p5-HTML-Format
 RUN_DEPENDS=	${BUILD_DEPENDS}
 
diff -Naur p5-PodToHTML.orig/distinfo p5-PodToHTML/distinfo
--- p5-PodToHTML.orig/distinfo	Tue Jan 24 14:13:57 2006
+++ p5-PodToHTML/distinfo	Tue Mar 20 09:52:54 2007
@@ -1,3 +1,3 @@
-MD5 (PodToHTML-0.05.tar.gz) = 0a6a4d1887e6b95df0232b002940a5c3
-SHA256 (PodToHTML-0.05.tar.gz) = f55771f5043ec04eb1702a71173115bbc8fcce152dc713a9c987e2e3cb129423
-SIZE (PodToHTML-0.05.tar.gz) = 9148
+MD5 (PodToHTML-0.06.tar.gz) = c7803245ac896fd0fcbc04eefa8559d2
+SHA256 (PodToHTML-0.06.tar.gz) = 6009ee72bd5b39a6c812186908000ef1ad5e17ffae843006c3d2fbbc7350871a
+SIZE (PodToHTML-0.06.tar.gz) = 9849
--- p5-PodToHTML.diff ends here ---
Comment 3 dfilter service freebsd_committer freebsd_triage 2007-03-25 19:11:06 UTC
hrs         2007-03-25 18:10:58 UTC

  FreeBSD ports repository

  Modified files:
    www/p5-PodToHTML     Makefile distinfo 
  Log:
  Update to 0.06.  Changes include:
  
          * Updated dist to get rid of internal Pod::Find that conflicts
          with the one from Pod::Parser
  
  Submitted by:   Geraud CONTINSOUZAS <geraud AT gcu DOT info>
  PR:             ports/110548
  
  Revision  Changes    Path
  1.4       +2 -2      ports/www/p5-PodToHTML/Makefile
  1.4       +3 -3      ports/www/p5-PodToHTML/distinfo
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 4 Hiroki Sato freebsd_committer freebsd_triage 2007-03-25 19:11:11 UTC
State Changed
From-To: open->closed

Committed, thanks!