X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Fpharext%2FPackager.php;h=8b7ad226ed48de9b15a6458c3a8c7053ea3169b1;hb=10c6f10181e75139992ba92b7185fe9a50b889b2;hp=9acb5ebc848a229c62a7d0e7c74eec63bcbf13cc;hpb=8bb44cb1907aff0691bf0b40443ef81d2251c29f;p=pharext%2Fpharext diff --git a/src/pharext/Packager.php b/src/pharext/Packager.php index 9acb5eb..8b7ad22 100644 --- a/src/pharext/Packager.php +++ b/src/pharext/Packager.php @@ -141,8 +141,6 @@ class Packager implements Command * @return string local source */ private function download($source) { - $this->info("Fetching remote source %s ...\n", $source); - if ($this->args->git) { $task = new Task\GitClone($source); } else { @@ -167,8 +165,6 @@ class Packager implements Command * @return string extracted directory */ private function extract($source) { - $this->debug("Extracting %s ...\n", $source); - $task = new Task\Extract($source); $dest = $task->run($this->verbosity()); @@ -191,8 +187,7 @@ class Packager implements Command $source = $this->extract($source); $this->cleanup[] = new Task\Cleanup($source); - if ($this->args->pecl) { - $this->debug("Sanitizing PECL dir ...\n"); + if (!$this->args->git) { $source = (new Task\PeclFixup($source))->run($this->verbosity()); } } @@ -213,6 +208,8 @@ class Packager implements Command $this->source = new SourceDir\Git($source); } elseif (is_file("$source/parext_package.php")) { $this->source = include "$source/pharext_package.php"; + } else { + $this->source = new SourceDir\Basic($source); } if (!$this->source instanceof SourceDir) {