Changeset 323 for trunk/autopackage.php
- Timestamp:
- 08/14/05 13:15:06 (3 years ago)
- Files:
-
- trunk/autopackage.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/autopackage.php
r321 r323 101 101 - Fixed bug with spaces in attribute values (schst) 102 102 - Added value-namespace support via the namespace attribute of the <patForms:Form/> tag (schst) 103 - Added event support via attributes of the <patForms:Form/> tag (schst) 103 104 EOT; 104 105 … … 120 121 'license' => 'LGPL', 121 122 'filelistgenerator' => 'file', 122 'ignore' => array( 'package.php', 'autopackage.php', 'package.xml', '.cvsignore' ),123 'ignore' => array( 'package.php', 'autopackage.php', 'package.xml', '.cvsignore', '.svn', 'cache', 'rfcs' ), 123 124 'notes' => $notes, 124 125 'simpleoutput' => true, … … 137 138 } 138 139 140 $package->detectDependencies(); 141 139 142 $package->addMaintainer('argh', 'lead', 'Sebastian Mordziol', 'argh@php-tools.net'); 140 143 $package->addMaintainer('schst', 'lead', 'Stephan Schmidt', 'schst@php-tools.net'); … … 144 147 145 148 $package->addDependency('patError', '', 'has', 'pkg', false); 146 $package->addDependency('php', '4. 2.0', 'ge', 'php', false);149 $package->addDependency('php', '4.3.0', 'ge', 'php', false); 147 150 148 151 // Used by Storage_DB … … 157 160 158 161 // Propel requires PHP5 159 $package->addDependency('php', '5.0.0', 'ge', 'php', true);162 //$package->addDependency('php', '5.0.0', 'ge', 'php', true); 160 163 161 164 $result = $package->writePackageFile();
