[Midnightbsd-cvs] mports [22014] trunk/devel/pear: update pear to 1.10.x

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Sun Oct 30 12:25:15 EDT 2016


Revision: 22014
          http://svnweb.midnightbsd.org/mports/?rev=22014
Author:   laffer1
Date:     2016-10-30 12:25:15 -0400 (Sun, 30 Oct 2016)
Log Message:
-----------
update pear to 1.10.x

Modified Paths:
--------------
    trunk/devel/pear/Makefile
    trunk/devel/pear/distinfo
    trunk/devel/pear/files/patch-go-pear
    trunk/devel/pear/pkg-plist

Added Paths:
-----------
    trunk/devel/pear/pear-deinstall.in

Removed Paths:
-------------
    trunk/devel/pear/pear-deinstall

Modified: trunk/devel/pear/Makefile
===================================================================
--- trunk/devel/pear/Makefile	2016-10-30 16:01:32 UTC (rev 22013)
+++ trunk/devel/pear/Makefile	2016-10-30 16:25:15 UTC (rev 22014)
@@ -1,10 +1,10 @@
 # $MidnightBSD$
 
 PORTNAME=	pear
-PORTVERSION=	1.9.4
+PORTVERSION=	1.10.1
 PORTREVISION=	1
 CATEGORIES=	devel
-MASTER_SITES=	http://miwibox.org/distfiles/
+MASTER_SITES=	http://mirror.miwibox.org/
 
 MAINTAINER=	ports at MidnightBSD.org
 COMMENT=	PEAR framework for PHP
@@ -11,20 +11,21 @@
 
 LICENSE=	php
 
-USES=		tar:bzip2
+USES=		cpe tar:bzip2
+CPE_VENDOR=	php
 NO_BUILD=	yes
 
 WANT_PHP_CLI=	yes
 USE_PHP_BUILD=	yes
-USE_PHP=	pcre xml
+USE_PHP=	pcre xml zlib
 
-FAKE_OPTS+=	prefixhack
+#FAKE_OPTS+=	prefixhack
 
 PEARDIR=	${PREFIX}/share/pear
 
 post-patch:
 	@${MKDIR} ${FAKE_DESTDIR}${PEARDIR}
-	@${REINPLACE_CMD} -e "s|%%PREFIX%%|${FAKE_DESTDIR}${PREFIX}|" \
+	@${REINPLACE_CMD} -e "s|%%PREFIX%%|${TRUE_PREFIX}|" \
 		-e "s|%%BUNDLEDIR%%|${WRKSRC}/go-pear-bundle|" \
 		-e "s|%%TMPDIR%%|/tmp/pear|" \
 		${WRKSRC}/go-pear
@@ -32,28 +33,17 @@
 	@cd ${WRKSRC}/go-pear-bundle/tmp/PEAR-${PORTVERSION} && ${PATCH} -s -p0 < ${FILESDIR}/extra-patch-PEAR-Config.php
 	@${RM} ${WRKSRC}/go-pear-bundle/tmp/PEAR-${PORTVERSION}/PEAR/Config.php.orig
 	@${MD5} -q ${WRKSRC}/go-pear-bundle/tmp/PEAR-${PORTVERSION}/PEAR/Config.php > ${WRKSRC}/Config.php.md5
-	@${REINPLACE_CMD} -E -e "s|(file md5sum=\").*(\" name=\"PEAR/Config.php\" role=\"php\")|\1`${CAT} ${WRKSRC}/Config.php.md5`\2|g" \
-		${WRKSRC}/go-pear-bundle/tmp/package2.xml ${WRKSRC}/go-pear-bundle/package2.xml
-	@cd ${WRKSRC}/go-pear-bundle/tmp && ${TAR} -cf ../PEAR-${PORTVERSION}.tar package2.xml PEAR-${PORTVERSION} package.xml
+	@cd ${WRKSRC}/go-pear-bundle/tmp && ${TAR} -cf ../PEAR-${PORTVERSION}.tar PEAR-${PORTVERSION} package.xml
 
 do-install:
-	${LOCALBASE}/bin/php -q ${WRKSRC}/go-pear
+	@cd ${WRKSRC} && ${SETENV} DESTDIR=${FAKE_DESTDIR} ${LOCALBASE}/bin/php -q ./go-pear
 	@${SED} -i "" "s|<?php|<?php dl('pcre.so'); dl('xml.so');|" \
-		${PEARDIR}/peclcmd.php
+		${STAGEDIR}${PEARDIR}/peclcmd.php
+# pear violates stage when staging as root, hide this
+.if defined(PACKAGE_BUILDING)
+	@${RM} -r ${PEARDIR}
+.endif
+# Clean up orphans re-generated by pkg-install
+	@${RM} -r ${STAGEDIR}${PEARDIR}/.depdb ${STAGEDIR}${PEARDIR}/.depdblock ${STAGEDIR}${PEARDIR}/.filemap ${STAGEDIR}${PEARDIR}/.lock
 
-post-install:
-	@${CP} -n ${PREFIX}/etc/pear.conf.sample ${PREFIX}/etc/pear.conf || ${TRUE}
-	${SED} -i "" "s|${FAKE_DESTDIR}||g" \
-		${PREFIX}/bin/pear \
-		${PREFIX}/bin/peardev \
-		${PREFIX}/bin/pecl \
-		${PEARDIR}/pearcmd.php \
-		${PEARDIR}/peclcmd.php \
-		${PEARDIR}/.registry/archive_tar.reg \
-		${PEARDIR}/.registry/console_getopt.reg \
-		${PEARDIR}/.registry/pear.reg \
-		${PEARDIR}/.registry/structures_graph.reg \
-		${PREFIX}/etc/pear.conf \
-		${PREFIX}/etc/pear.conf.sample
-
 .include <bsd.port.mk>

Modified: trunk/devel/pear/distinfo
===================================================================
--- trunk/devel/pear/distinfo	2016-10-30 16:01:32 UTC (rev 22013)
+++ trunk/devel/pear/distinfo	2016-10-30 16:25:15 UTC (rev 22014)
@@ -1,2 +1,2 @@
-SHA256 (pear-1.9.4.tar.bz2) = dbff7047b70035e9b65adf8e0beaf834db2e1bf161f526bd4d87e204fd47b604
-SIZE (pear-1.9.4.tar.bz2) = 322695
+SHA256 (pear-1.10.1.tar.bz2) = 1e90ba461f3bbfdde49c4bee5e028fcd3291e92653a2227dbbcdb378ae31c1be
+SIZE (pear-1.10.1.tar.bz2) = 318856

Modified: trunk/devel/pear/files/patch-go-pear
===================================================================
--- trunk/devel/pear/files/patch-go-pear	2016-10-30 16:01:32 UTC (rev 22013)
+++ trunk/devel/pear/files/patch-go-pear	2016-10-30 16:25:15 UTC (rev 22014)
@@ -1,6 +1,15 @@
---- go-pear.orig	2011-11-06 20:54:16.000000000 +0100
-+++ go-pear	2011-11-15 08:46:12.988647172 +0100
-@@ -116,7 +116,7 @@
+--- go-pear.orig	2013-07-18 07:18:00 UTC
++++ go-pear
+@@ -57,6 +57,8 @@
+ 
+ define('WIN32GUI', !WEBINSTALLER && WINDOWS && $sapi_name=='cli' && which('cscript'));
+ 
++$destdir = getenv('DESTDIR');
++
+ /*
+  * See bug #23069
+  */
+@@ -116,7 +118,7 @@
  );
  
  $installer_packages = array(
@@ -9,7 +18,7 @@
      'Structures_Graph-stable',
      'Archive_Tar-stable',
      'Console_Getopt-stable',
-@@ -250,7 +250,7 @@
+@@ -250,7 +252,7 @@
      }
      // Anything past this step has something to do with the installation    
  }
@@ -18,7 +27,7 @@
  if (!WEBINSTALLER) {
      $tty = WINDOWS ? @fopen('\con', 'r') : @fopen('/dev/tty', 'r');
  
-@@ -294,7 +294,7 @@
+@@ -294,7 +296,7 @@
          $http_proxy = $tmp;
      }
  }
@@ -27,7 +36,7 @@
  $origpwd = getcwd();
  
  $config_vars = array_keys($config_desc);
-@@ -345,7 +345,7 @@
+@@ -345,7 +347,7 @@
          break;
      }
  }
@@ -36,7 +45,7 @@
  while (!WEBINSTALLER) {
      print "
  Below is a suggested file layout for your new PEAR installation.  To
-@@ -428,7 +428,7 @@
+@@ -428,7 +430,7 @@
          }
      }
  }
@@ -45,7 +54,16 @@
  ####
  # Installation stuff
  ####
-@@ -561,7 +561,7 @@
+@@ -488,7 +490,7 @@
+             continue;
+         }
+ 
+-        $dir = $$var;
++        $dir = ($destdir ? $destdir : '').$$var;
+         if (!@is_dir($dir)) {
+             if (!mkdir_p($dir)) {
+                 if (!WEBINSTALLER) {
+@@ -561,7 +563,7 @@
          ob_start();
      }
  }
@@ -54,7 +72,7 @@
  if (!WEBINSTALLER) {
      $msg = "The following PEAR packages are bundled with PHP: " .
          implode(', ', array_keys($pfc_packages));
-@@ -571,17 +571,17 @@
+@@ -571,17 +573,19 @@
      $install_optional_packages = array();
      print "\n";
  }
@@ -64,6 +82,8 @@
  # Download
  ####
  
++dl('xml.so');
++
  if (function_exists('set_include_path')) {
 -   set_include_path($ptmp);
 +   set_include_path($ptmp . PATH_SEPARATOR . "%%BUNDLEDIR%%");
@@ -76,7 +96,7 @@
  if (!extension_loaded('zlib') && !WEBINSTALLER) { // In Web context we could be in multithread env which makes dl() end up with a fatal error.
      if (WINDOWS) {
          @dl('php_zlib.dll');
-@@ -606,18 +606,19 @@
+@@ -606,18 +610,19 @@
  if (!$have_gzip) {
      print "Downloading uncompressed packages\n";
  };
@@ -98,7 +118,19 @@
  }
  
  // gopear_bundle usage
-@@ -655,9 +656,9 @@
+@@ -645,19 +650,21 @@
+ 
+ // Bootstrap needed ?
+ $nobootstrap = false;
++/*
+ if (is_dir($php_dir)) {
+     $nobootstrap = true;
+     foreach ($bootstrap_files as $file => $url) {
+         $nobootstrap &= is_file($php_dir.'/'.$file);
+     }
+ }
++*/
+ 
  if ($nobootstrap) {
      print('Using previously install ... ');
      if (function_exists('set_include_path')) {
@@ -110,7 +142,32 @@
      }
      include_once 'PEAR.php';
      print "ok\n";
-@@ -747,12 +748,7 @@
+@@ -691,6 +698,7 @@
+ 
+ // Extract needed ?
+ $noextract = false;
++/*
+ if (is_dir($php_dir)) {
+     $noextract = @include_once 'PEAR/Registry.php';
+     
+@@ -701,6 +709,7 @@
+         }
+     }
+ }
++*/
+ 
+ if ($noextract) {
+     print('Using previously installed installer ... ');
+@@ -722,7 +731,7 @@
+         displayHTMLProgress($progress += round(19 / count($bootstrap_pkgs)));
+ 
+         $fullpkg = substr($tarball, 0, strrpos($tarball, '.'));
+-        $tar = &new Archive_Tar($tarball, $have_gzip);
++        $tar = new Archive_Tar($tarball, $have_gzip);
+         if (!$tar->extractModify($ptmp, $fullpkg)) {
+             bail("Extraction for $fullpkg failed!\n");
+         }
+@@ -747,12 +756,7 @@
  include_once "PEAR/Command.php";
  include_once "PEAR/Registry.php";
  
@@ -120,13 +177,34 @@
 -    $config = &PEAR_Config::singleton();
 -}
 -
-+$config = &PEAR_Config::singleton($prefix."/etc/pear.conf.sample", '');
++$config = &PEAR_Config::singleton(($destdir ? $destdir : '').$prefix."/etc/pear.conf.sample", '');
  
  $config->set('preferred_state', 'stable');
  foreach ($config_vars as $var) {
-@@ -821,7 +817,7 @@
+@@ -765,7 +769,7 @@
+ $config->set('http_proxy', $http_proxy);
+ $config->store();
  
+-$registry = new PEAR_Registry($php_dir);
++$registry = new PEAR_Registry(($destdir ? $destdir : '').$php_dir);
+ PEAR_Command::setFrontendType('CLI');
  
+ PEAR::staticPushErrorHandling(PEAR_ERROR_DIE); //fail silently
+@@ -787,6 +791,11 @@
+     } else {
+         $options = array('onlyreqdeps' => true);
+     }
++    if ($destdir) {
++        $options['packagingroot'] = $destdir;
++        $options['force'] = true;
++        $options['nodeps'] = true;
++    }
+     if ($registry->packageExists($pkg) || $registry->packageExists($pkg_basename)) {
+         print(str_pad("Package: $pkg", max(50,9+strlen($pkg)+4), '.').' already installed ... ok'."\n");
+         displayHTMLProgress($progress += round(50 / count($to_install)));
+@@ -821,7 +830,7 @@
+ 
+ 
  // Base installation finished
 -
 +/*
@@ -133,7 +211,7 @@
  ini_restore("include_path");
  
  if (!WEBINSTALLER) {
-@@ -980,6 +976,7 @@
+@@ -980,6 +989,7 @@
  if (WINDOWS && !WEBINSTALLER) {
      win32CreateRegEnv();
  }
@@ -141,7 +219,7 @@
  // Set of functions following
  /**
   * Parse the given dirname
-@@ -1418,19 +1415,17 @@
+@@ -1418,19 +1428,17 @@
          }
      } else {
          if ($_prefix === null) {
@@ -166,7 +244,7 @@
          // check if the user has installed PHP with PHP or GNU layout
          if (@is_dir("$prefix/lib/php/.registry")) {
              $php_dir = '$prefix/lib/php';
-@@ -1442,6 +1437,7 @@
+@@ -1442,6 +1450,7 @@
          } elseif (@is_dir("$prefix/share/php/.registry")) {
              $php_dir = '$prefix/share/php';
          }

Deleted: trunk/devel/pear/pear-deinstall
===================================================================
--- trunk/devel/pear/pear-deinstall	2016-10-30 16:01:32 UTC (rev 22013)
+++ trunk/devel/pear/pear-deinstall	2016-10-30 16:25:15 UTC (rev 22014)
@@ -1,13 +0,0 @@
-#!/bin/sh
-#
-# Remove package declaration from PEAR's registry.
-
-if [ x$2 != xDEINSTALL ]; then
-    exit
-fi
-PKG_NAME=${1%%-[0-9._]*}
-PACKAGE=$(echo $PKG_NAME | sed 's/pear-//')
-
-PEAR=${PKG_PREFIX}/bin/pear
-
-${PEAR} uninstall -r -n ${PACKAGE} || true

Copied: trunk/devel/pear/pear-deinstall.in (from rev 21938, trunk/devel/pear/pear-deinstall)
===================================================================
--- trunk/devel/pear/pear-deinstall.in	                        (rev 0)
+++ trunk/devel/pear/pear-deinstall.in	2016-10-30 16:25:15 UTC (rev 22014)
@@ -0,0 +1,14 @@
+#!/bin/sh
+#
+# $FreeBSD: head/devel/pear/pear-deinstall.in 340872 2014-01-24 00:14:07Z mat $
+#
+# Remove package declaration from PEAR's registry.
+
+if [ x$2 != xDEINSTALL ]; then
+    exit
+fi
+
+PACKAGE=%%PKG_NAME%%
+PEAR=${PKG_PREFIX}/bin/pear
+
+${PEAR} uninstall -r -n ${PACKAGE} || true

Modified: trunk/devel/pear/pkg-plist
===================================================================
--- trunk/devel/pear/pkg-plist	2016-10-30 16:01:32 UTC (rev 22013)
+++ trunk/devel/pear/pkg-plist	2016-10-30 16:25:15 UTC (rev 22014)
@@ -1,34 +1,13 @@
 bin/pear
 bin/peardev
 bin/pecl
- at unexec if cmp -s %D/etc/pear.conf %D/etc/pear.conf.sample; then rm -f %D/etc/pear.conf; fi
-etc/pear.conf.sample
- at exec [ -f %B/pear.conf ] || cp %B/%f %B/pear.conf
-%%DOCSDIR%%/Archive_Tar/docs/Archive_Tar.txt
-%%DOCSDIR%%/PEAR/INSTALL
-%%DOCSDIR%%/PEAR/LICENSE
-%%DOCSDIR%%/PEAR/README
-%%DOCSDIR%%/Structures_Graph/docs/generate.sh
-%%DOCSDIR%%/Structures_Graph/docs/html/Structures_Graph/Structures_Graph.html
-%%DOCSDIR%%/Structures_Graph/docs/html/Structures_Graph/Structures_Graph_Manipulator_AcyclicTest.html
-%%DOCSDIR%%/Structures_Graph/docs/html/Structures_Graph/Structures_Graph_Manipulator_TopologicalSorter.html
-%%DOCSDIR%%/Structures_Graph/docs/html/Structures_Graph/Structures_Graph_Node.html
-%%DOCSDIR%%/Structures_Graph/docs/html/Structures_Graph/_Structures_Graph_Manipulator_AcyclicTest_php.html
-%%DOCSDIR%%/Structures_Graph/docs/html/Structures_Graph/_Structures_Graph_Manipulator_TopologicalSorter_php.html
-%%DOCSDIR%%/Structures_Graph/docs/html/Structures_Graph/_Structures_Graph_Node_php.html
-%%DOCSDIR%%/Structures_Graph/docs/html/Structures_Graph/_Structures_Graph_php.html
-%%DOCSDIR%%/Structures_Graph/docs/html/Structures_Graph/tutorial_Structures_Graph.pkg.html
-%%DOCSDIR%%/Structures_Graph/docs/html/classtrees_Structures_Graph.html
-%%DOCSDIR%%/Structures_Graph/docs/html/elementindex.html
-%%DOCSDIR%%/Structures_Graph/docs/html/elementindex_Structures_Graph.html
-%%DOCSDIR%%/Structures_Graph/docs/html/errors.html
-%%DOCSDIR%%/Structures_Graph/docs/html/index.html
-%%DOCSDIR%%/Structures_Graph/docs/html/li_Structures_Graph.html
-%%DOCSDIR%%/Structures_Graph/docs/html/media/banner.css
-%%DOCSDIR%%/Structures_Graph/docs/html/media/stylesheet.css
-%%DOCSDIR%%/Structures_Graph/docs/html/packages.html
-%%DOCSDIR%%/Structures_Graph/docs/html/todolist.html
-%%DOCSDIR%%/Structures_Graph/docs/tutorials/Structures_Graph/Structures_Graph.pkg
+ at sample etc/pear.conf.sample
+%%PORTDOCS%%%%DOCSDIR%%/Archive_Tar/docs/Archive_Tar.txt
+%%PORTDOCS%%%%DOCSDIR%%/PEAR/INSTALL
+%%PORTDOCS%%%%DOCSDIR%%/PEAR/LICENSE
+%%PORTDOCS%%%%DOCSDIR%%/PEAR/README.rst
+%%PORTDOCS%%%%DOCSDIR%%/Structures_Graph/LICENSE
+%%PORTDOCS%%%%DOCSDIR%%/Structures_Graph/docs/tutorials/Structures_Graph/Structures_Graph.pkg
 %%DATADIR%%/.channels/.alias/pear.txt
 %%DATADIR%%/.channels/.alias/pecl.txt
 %%DATADIR%%/.channels/.alias/phpdocs.txt
@@ -47,10 +26,12 @@
 %%DATADIR%%/Archive/Tar.php
 %%DATADIR%%/Console/Getopt.php
 %%DATADIR%%/OS/Guess.php
+%%DATADIR%%/PEAR.php
 %%DATADIR%%/PEAR/Autoloader.php
 %%DATADIR%%/PEAR/Builder.php
+%%DATADIR%%/PEAR/ChannelFile.php
 %%DATADIR%%/PEAR/ChannelFile/Parser.php
-%%DATADIR%%/PEAR/ChannelFile.php
+%%DATADIR%%/PEAR/Command.php
 %%DATADIR%%/PEAR/Command/Auth.php
 %%DATADIR%%/PEAR/Command/Auth.xml
 %%DATADIR%%/PEAR/Command/Build.php
@@ -74,19 +55,20 @@
 %%DATADIR%%/PEAR/Command/Remote.xml
 %%DATADIR%%/PEAR/Command/Test.php
 %%DATADIR%%/PEAR/Command/Test.xml
-%%DATADIR%%/PEAR/Command.php
 %%DATADIR%%/PEAR/Common.php
 %%DATADIR%%/PEAR/Config.php
 %%DATADIR%%/PEAR/Dependency2.php
 %%DATADIR%%/PEAR/DependencyDB.php
+%%DATADIR%%/PEAR/Downloader.php
 %%DATADIR%%/PEAR/Downloader/Package.php
-%%DATADIR%%/PEAR/Downloader.php
 %%DATADIR%%/PEAR/ErrorStack.php
 %%DATADIR%%/PEAR/Exception.php
+%%DATADIR%%/PEAR/Frontend.php
 %%DATADIR%%/PEAR/Frontend/CLI.php
-%%DATADIR%%/PEAR/Frontend.php
+%%DATADIR%%/PEAR/Installer.php
+%%DATADIR%%/PEAR/Installer/Role.php
+%%DATADIR%%/PEAR/Installer/Role/Cfg.php
 %%DATADIR%%/PEAR/Installer/Role/Cfg.xml
-%%DATADIR%%/PEAR/Installer/Role/Cfg.php
 %%DATADIR%%/PEAR/Installer/Role/Common.php
 %%DATADIR%%/PEAR/Installer/Role/Data.php
 %%DATADIR%%/PEAR/Installer/Role/Data.xml
@@ -94,6 +76,8 @@
 %%DATADIR%%/PEAR/Installer/Role/Doc.xml
 %%DATADIR%%/PEAR/Installer/Role/Ext.php
 %%DATADIR%%/PEAR/Installer/Role/Ext.xml
+%%DATADIR%%/PEAR/Installer/Role/Man.php
+%%DATADIR%%/PEAR/Installer/Role/Man.xml
 %%DATADIR%%/PEAR/Installer/Role/Php.php
 %%DATADIR%%/PEAR/Installer/Role/Php.xml
 %%DATADIR%%/PEAR/Installer/Role/Script.php
@@ -104,101 +88,56 @@
 %%DATADIR%%/PEAR/Installer/Role/Test.xml
 %%DATADIR%%/PEAR/Installer/Role/Www.php
 %%DATADIR%%/PEAR/Installer/Role/Www.xml
-%%DATADIR%%/PEAR/Installer/Role.php
-%%DATADIR%%/PEAR/Installer.php
+%%DATADIR%%/PEAR/PackageFile.php
 %%DATADIR%%/PEAR/PackageFile/Generator/v1.php
 %%DATADIR%%/PEAR/PackageFile/Generator/v2.php
 %%DATADIR%%/PEAR/PackageFile/Parser/v1.php
 %%DATADIR%%/PEAR/PackageFile/Parser/v2.php
 %%DATADIR%%/PEAR/PackageFile/v1.php
+%%DATADIR%%/PEAR/PackageFile/v2.php
 %%DATADIR%%/PEAR/PackageFile/v2/Validator.php
 %%DATADIR%%/PEAR/PackageFile/v2/rw.php
-%%DATADIR%%/PEAR/PackageFile/v2.php
-%%DATADIR%%/PEAR/PackageFile.php
 %%DATADIR%%/PEAR/Packager.php
+%%DATADIR%%/PEAR/REST.php
 %%DATADIR%%/PEAR/REST/10.php
 %%DATADIR%%/PEAR/REST/11.php
 %%DATADIR%%/PEAR/REST/13.php
-%%DATADIR%%/PEAR/FixPHP5PEARWarnings.php
-%%DATADIR%%/PEAR/REST.php
 %%DATADIR%%/PEAR/Registry.php
 %%DATADIR%%/PEAR/RunTest.php
 %%DATADIR%%/PEAR/Task/Common.php
+%%DATADIR%%/PEAR/Task/Postinstallscript.php
 %%DATADIR%%/PEAR/Task/Postinstallscript/rw.php
-%%DATADIR%%/PEAR/Task/Postinstallscript.php
+%%DATADIR%%/PEAR/Task/Replace.php
 %%DATADIR%%/PEAR/Task/Replace/rw.php
-%%DATADIR%%/PEAR/Task/Replace.php
+%%DATADIR%%/PEAR/Task/Unixeol.php
 %%DATADIR%%/PEAR/Task/Unixeol/rw.php
-%%DATADIR%%/PEAR/Task/Unixeol.php
+%%DATADIR%%/PEAR/Task/Windowseol.php
 %%DATADIR%%/PEAR/Task/Windowseol/rw.php
-%%DATADIR%%/PEAR/Task/Windowseol.php
 %%DATADIR%%/PEAR/Validate.php
 %%DATADIR%%/PEAR/Validator/PECL.php
 %%DATADIR%%/PEAR/XMLParser.php
-%%DATADIR%%/PEAR.php
-%%DATADIR%%/PEAR5.php
+%%DATADIR%%/Structures/Graph.php
 %%DATADIR%%/Structures/Graph/Manipulator/AcyclicTest.php
 %%DATADIR%%/Structures/Graph/Manipulator/TopologicalSorter.php
 %%DATADIR%%/Structures/Graph/Node.php
-%%DATADIR%%/Structures/Graph.php
 %%DATADIR%%/System.php
 %%DATADIR%%/data/PEAR/package.dtd
 %%DATADIR%%/data/PEAR/template.spec
-%%DATADIR%%/data/Structures_Graph/LICENSE
 %%DATADIR%%/pearcmd.php
 %%DATADIR%%/peclcmd.php
+%%DATADIR%%/tests/Console_Getopt/tests/001-getopt.phpt
+%%DATADIR%%/tests/Console_Getopt/tests/bug10557.phpt
+%%DATADIR%%/tests/Console_Getopt/tests/bug11068.phpt
+%%DATADIR%%/tests/Console_Getopt/tests/bug13140.phpt
+%%DATADIR%%/tests/Structures_Graph/tests/AcyclicTestTest.php
 %%DATADIR%%/tests/Structures_Graph/tests/AllTests.php
-%%DATADIR%%/tests/Structures_Graph/tests/testCase/BasicGraph.php
- at dirrm %%DOCSDIR%%/Archive_Tar/docs
- at dirrm %%DOCSDIR%%/Archive_Tar
- at dirrm %%DOCSDIR%%/PEAR
- at dirrm %%DOCSDIR%%/Structures_Graph/docs/html/Structures_Graph
- at dirrm %%DOCSDIR%%/Structures_Graph/docs/html/media
- at dirrm %%DOCSDIR%%/Structures_Graph/docs/html
- at dirrm %%DOCSDIR%%/Structures_Graph/docs/tutorials/Structures_Graph
- at dirrm %%DOCSDIR%%/Structures_Graph/docs/tutorials
- at dirrm %%DOCSDIR%%/Structures_Graph/docs
- at dirrm %%DOCSDIR%%/Structures_Graph
- at dirrmtry share/doc/pear
+%%DATADIR%%/tests/Structures_Graph/tests/BasicGraphTest.php
+%%DATADIR%%/tests/Structures_Graph/tests/TopologicalSorterTest.php
+%%DATADIR%%/tests/Structures_Graph/tests/helper.inc
 @rmtry share/pear/.depdb
 @rmtry share/pear/.depdblock
 @rmtry share/pear/.filemap
 @rmtry share/pear/.lock
- at dirrmtry share/pear/.channels/.alias
- at dirrmtry share/pear/.channels
- at dirrmtry share/pear/.registry/.channel.__uri
- at dirrmtry share/pear/.registry/.channel.doc.php.net
- at dirrmtry share/pear/.registry/.channel.pecl.php.net
- at dirrmtry share/pear/.registry
- at dirrm %%DATADIR%%/Archive
- at dirrm %%DATADIR%%/Console
- at dirrm %%DATADIR%%/OS
- at dirrm %%DATADIR%%/PEAR/ChannelFile
- at dirrm %%DATADIR%%/PEAR/Command
- at dirrm %%DATADIR%%/PEAR/Downloader
- at dirrm %%DATADIR%%/PEAR/Frontend
- at dirrm %%DATADIR%%/PEAR/Installer/Role
- at dirrm %%DATADIR%%/PEAR/Installer
- at dirrm %%DATADIR%%/PEAR/PackageFile/Generator
- at dirrm %%DATADIR%%/PEAR/PackageFile/Parser
- at dirrm %%DATADIR%%/PEAR/PackageFile/v2
- at dirrm %%DATADIR%%/PEAR/PackageFile
- at dirrm %%DATADIR%%/PEAR/REST
- at dirrm %%DATADIR%%/PEAR/Task/Postinstallscript
- at dirrm %%DATADIR%%/PEAR/Task/Replace
- at dirrm %%DATADIR%%/PEAR/Task/Unixeol
- at dirrm %%DATADIR%%/PEAR/Task/Windowseol
- at dirrm %%DATADIR%%/PEAR/Task
- at dirrm %%DATADIR%%/PEAR/Validator
- at dirrm %%DATADIR%%/PEAR
- at dirrm %%DATADIR%%/Structures/Graph/Manipulator
- at dirrm %%DATADIR%%/Structures/Graph
- at dirrmtry share/pear/Structures
- at dirrm %%DATADIR%%/data/PEAR
- at dirrm %%DATADIR%%/data/Structures_Graph
- at dirrmtry share/pear/data
- at dirrm %%DATADIR%%/tests/Structures_Graph/tests/testCase
- at dirrm %%DATADIR%%/tests/Structures_Graph/tests
- at dirrm %%DATADIR%%/tests/Structures_Graph
- at dirrmtry share/pear/tests
- at dirrmtry share/pear
+ at dir %%DATADIR%%/.registry/.channel.__uri
+ at dir %%DATADIR%%/.registry/.channel.doc.php.net
+ at dir %%DATADIR%%/.registry/.channel.pecl.php.net



More information about the Midnightbsd-cvs mailing list