summaryrefslogtreecommitdiff
path: root/textproc/p5-XML-Node
AgeCommit message (Collapse)AuthorFilesLines
2002-10-19Distfile changed on MASTER_SITES without any update in name/revision.seb2-10/+7
Changes: - The bundled file XML::Node.sgml had been renamed to XML-Node.sgml (windows friendly?) - Diff between previous XML::Node.sgml and new XML-Node.sgml: --- XML-Node-0.10/XML::Node.sgml Mon Nov 15 21:18:52 1999 +++ XML-Node-0.10.new/XML-Node.sgml Fri Jan 5 20:23:46 2001 @@ -69,7 +69,7 @@ $p->register(">Orders>Order","end" => \&handle_order_end); print "Processing file [orders.xml]...\n"; -$p->parse("orders.xml"); +$p->parsefile("orders.xml"); So... Bump PKGREVISION, update distinfo and remove previous distfile from ftp.netbsd.org. While here use perl5/module.mk and use buildlink2.
2001-11-29Get rid of manually adding "nbX" to PKGNAME when a pkg was changed inhubertf1-2/+3
pkgsrc. Instead, a new variable PKGREVISION is invented that can get bumped independent of DISTNAME and PKGNAME. Example #1: DISTNAME= foo-X.Y PKGREVISION= Z => PKGNAME= foo-X.YnbZ Example #2: DISTNAME= barthing-X.Y PKGNAME= bar-X.Y PKGREVISION= Z => PKGNAME= bar=X.YnbZ (!) On subsequent changes, only PKGREVISION needs to be bumped, no more risk of getting DISTNAME changed accidentally.
2001-11-26Buildlinkify, in the sense that only the perl headers are found injlam1-10/+11
${PREFIX} -- everything else is pickup up from ${BUILDLINK_DIR}.
2001-10-31Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-10-18SVR4 packages have a limit of 9 chars for a package name.veego1-1/+2
The automatic truncation in gensolpkg doesn't work for packages which have the same package name for the first 5-6 chars. e.g. amanda-server and amanda-client would be named amanda and amanda. Now, we add a SVR4_PKGNAME and use amacl for amanda-client and amase for amanda-server. All svr4 packages also have a vendor tag, so we have to reserve some chars for this tag, which is normaly 3 or 4 chars. Thats why we can only use 6 or 5 chars for SVR4_PKGNAME. I used 5 for all the packages, to give the vendor tag enough room. All p5-* packages and a few other packages have now a SVR4_PKGNAME.
2001-05-25install example XML fileshubertf2-3/+15
2001-05-12fix checksum - distfile was changed without version bumphubertf1-3/+3
2001-05-09Move to SHA1, add sizes.wiz1-2/+3
Slightly different distfile (parse -> parsefile in one place).
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc1-1/+1
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-02-17Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2001-01-04fix DEPENDS linehubertf1-2/+2
2000-12-28Add p5-XML-Node-0.10:hubertf5-0/+34
If you are only interested in processing certain nodes in an XML file, this module can help you simplify your Perl scripts significantly. The XML::Node module allows you to register callback functions or variables for any XML node. If you register a call back function, it will be called when the node of the type you specified are encountered. If you register a variable, the content of a XML node will be appended to that variable automatically.