Changeset 11101
- Timestamp:
- 08/25/08 11:18:08 (2 years ago)
- Files:
-
- plugins/sfMinifyPlugin/createPackage.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfMinifyPlugin/createPackage.php
r4091 r11101 5 5 $summary = 'Integrate the minify library see http://code.google.com/p/minify/ into symfony'; 6 6 $description = 'Combines, minifies, and caches JavaScript and CSS files on demand to speed up page loads.'; 7 $channel = 'pear.symfony-project.com'; 8 $release_state = 'beta'; 9 $release_version = '0.1.0'; 10 $release_notes = "first release"; 7 8 $branch = '1.1'; 9 if($branch == '1.0') 10 { 11 $channel = 'pear.symfony-project.com'; 12 $release_version = '1.0.1'; 13 $symfony_min = '1.0.0'; 14 $symfony_max = '1.0.99999'; 15 } 16 else 17 { 18 $channel = 'plugins.symfony-project.org'; 19 $release_version = '1.1.1'; 20 $symfony_min = '1.1.0'; 21 $symfony_max = '1.1.99999'; 22 } 23 24 $release_state = 'stable'; 25 $release_notes = "fix symfony version"; 11 26 $api_state = 'stable'; 12 $api_version = ' 1.0.1';27 $api_version = '2.0.1'; 13 28 $license_name = 'BSD License'; 14 29 $license_url = 'http://www.opensource.org/licenses/bsd-license.php'; 15 30 $dep_php = '5.0.0'; 16 31 $dep_pear = '1.5.4'; 17 $symfony_min = '1.0.0';18 $symfony_max = '1.0.99999';19 32 20 33 require_once 'PEAR/PackageFileManager2.php'; … … 25 38 26 39 $p2->setOptions(array( 27 'packagedirectory' => dirname(__FILE__) ,40 'packagedirectory' => dirname(__FILE__) . DIRECTORY_SEPARATOR . 'branches' . DIRECTORY_SEPARATOR . $branch, 28 41 'baseinstalldir' => '/sfMinifyPlugin', 29 'changelogoldtonew' => false,42 'changelogoldtonew' => true, 30 43 'ignore' => array('createPackage.php'), 31 44 ) … … 53 66 $p2->setPearinstallerDep($dep_pear); 54 67 55 $p2->addMaintainer('lead', 'g ordon', 'Gordon Franke', null, 'yes');68 $p2->addMaintainer('lead', 'gimler', 'Gordon Franke', null, 'yes'); 56 69 57 70 $p2->addPackageDepWithChannel(

