]> granicus.if.org Git - php/commitdiff
more clean up/fixes
authorTomas V.V.Cox <cox@php.net>
Tue, 9 Oct 2001 02:56:33 +0000 (02:56 +0000)
committerTomas V.V.Cox <cox@php.net>
Tue, 9 Oct 2001 02:56:33 +0000 (02:56 +0000)
pear/PEAR/Common.php
pear/PEAR/Installer.php
pear/PEAR/Packager.php

index 2c963cb5cf3c595c3443b87226e56fd7ac63a542..6f2385c8e0fef9ef0a1d02eb653df62ff5ecfa01 100644 (file)
@@ -74,7 +74,6 @@ class PEAR_Common extends PEAR
 
     function _PEAR_Common()
     {
-        $this->_PEAR();
         while (is_array($this->_tempfiles) &&
                $file = array_shift($this->_tempfiles))
         {
@@ -129,7 +128,7 @@ class PEAR_Common extends PEAR
     function mkTempDir()
     {
         $dir = (OS_WINDOWS) ? 'c:\\windows\\temp' : '/tmp';
-        $tmpdir = tempnam($tmpdir, 'pear');
+        $tmpdir = tempnam($dir, 'pear');
         unlink($tmpdir);
         if (!mkdir($tmpdir, 0700)) {
             return $this->raiseError("Unable to create temporary directory $tmpdir");
index f2ec95f72954e9d31fe3223973bea3c639da3ee2..1bd0eabc1b0cd3cafc42015b4c900f9077244160 100644 (file)
@@ -198,7 +198,7 @@ class PEAR_Installer extends PEAR_Common
     {
         $type = strtolower($atts['ROLE']);
         switch ($type) {
-            case "test":
+            case 'test':
                 // don't install test files for now
                 $this->log(2, "+ Test file $file won't be installed yet");
                 return true;
index 16dcd9a0f54b8245321a67144bc2ed1e5b7c32f1..f07764a8189b22289611c603a1e73be0e735bf08 100644 (file)
@@ -88,6 +88,7 @@ class PEAR_Packager extends PEAR_Common
 
     function _PEAR_Packager()
     {
+        chdir($this->orig_pwd);
         $this->_PEAR_Common();
     }
 
@@ -97,6 +98,7 @@ class PEAR_Packager extends PEAR_Common
 
     function package($pkgfile = null)
     {
+        $this->orig_pwd = getcwd();
         if (empty($pkgfile)) {
             $pkgfile = 'package.xml';
         }
@@ -105,7 +107,6 @@ class PEAR_Packager extends PEAR_Common
             return $pkginfo;
         }
         // TMP DIR -------------------------------------------------
-        $orig_pwd = getcwd();
         // We allow calls like "pear package /home/user/mypack/package.xml"
         if (!@chdir(dirname($pkgfile))) {
             return $this->raiseError('Couldn\'t chdir to package.xml dir',
@@ -118,22 +119,22 @@ class PEAR_Packager extends PEAR_Common
         $pkgversion = ereg_replace ('[^a-zA-Z0-9._\-]', '_', $pkginfo['version']);
         $pkgver = $pkgname . '-' . $pkgversion;
 
-        $this->tmpdir = $pwd . DIRECTORY_SEPARATOR . $pkgver;
-        if (file_exists($this->tmpdir)) {
-            return $this->raiseError('Tmpdir: ' . $this->tmpdir .' already exists',
+        $tmpdir = $pwd . DIRECTORY_SEPARATOR . $pkgver;
+        if (file_exists($tmpdir)) {
+            return $this->raiseError('Tmpdir: ' . $tmpdir .' already exists',
                               null, PEAR_ERROR_TRIGGER, E_USER_ERROR);
         }
-        if (!mkdir($this->tmpdir, 0755)) {
-            return $this->raiseError("Unable to create temporary directory $this->tmpdir.",
+        if (!mkdir($tmpdir, 0700)) {
+            return $this->raiseError("Unable to create temporary directory $tmpdir.",
                               null, PEAR_ERROR_TRIGGER, E_USER_ERROR);
         } else {
-            $this->log(2, "+ tmp dir created at: " . $this->tmpdir);
+            $this->log(2, "+ tmp dir created at: " . $tmpdir);
         }
-        $this->addTempFile($this->tmpdir);
+        $this->addTempFile($tmpdir);
 
         // Copy files -----------------------------------------------
         foreach ($pkginfo['filelist'] as $fname => $atts) {
-            $file = $this->tmpdir . DIRECTORY_SEPARATOR . $fname;
+            $file = $tmpdir . DIRECTORY_SEPARATOR . $fname;
             $dir = dirname($file);
             if (!@is_dir($dir)) {
                 if (!$this->mkDirHier($dir)) {
@@ -145,31 +146,30 @@ class PEAR_Packager extends PEAR_Common
             if (!@copy($fname, $file)) {
                 $this->log(0, "could not copy $fname to $file");
             } else {
-                $this->log(2, "+ copying from $fname to $file");
+                $this->log(2, "+ copying $fname to $file");
                 @chmod($file, $orig_perms);
             }
         }
         // XXX TODO: Rebuild the package file as the old method did?
 
         // This allows build packages from different pear pack def files
-        $dest_pkgfile = $this->tmpdir . DIRECTORY_SEPARATOR . 'package.xml';
+        $dest_pkgfile = $tmpdir . DIRECTORY_SEPARATOR . 'package.xml';
         $this->log(2, "+ copying package $pkgfile to $dest_pkgfile");
         if (!@copy($pkgfile, $dest_pkgfile)) {
             return $this->raiseError("could not copy $pkgfile to $dest_pkgfile");
         }
-        chmod($dest_pkgfile, 0644);
+        @chmod($dest_pkgfile, 0644);
 
         // TAR the Package -------------------------------------------
-        chdir(dirname($this->tmpdir));
-        $dest_package = $orig_pwd . DIRECTORY_SEPARATOR . "${pkgver}.tgz";
-        $this->log(2, "Attempting to pack {$this->tmpdir} $contents_dir dir in $dest_package");
+        chdir(dirname($tmpdir));
+        $dest_package = $this->orig_pwd . DIRECTORY_SEPARATOR . "{$pkgver}.tgz";
+        $this->log(2, "Attempting to pack $tmpdir dir in $dest_package");
         $tar = new Archive_Tar($dest_package, true);
         $tar->setErrorHandling(PEAR_ERROR_PRINT);
         if (!$tar->create($pkgver)) {
             return $this->raiseError('an error ocurred during package creation');
         }
         $this->log(1, "Package $dest_package done");
-        chdir($orig_pwd);
         return $dest_package;
     }