Ticket #131 (new enhancement)

Opened 10 months ago

Last modified 10 months ago

Featurerequest. Missing task to create a PEAR package based on a package.xml file

Reported by: lars@legestue.net Assigned to: hans
Priority: minor Milestone: 3.0
Component: phing-tasks-ext Version: 2.1.1
Keywords: Cc:

Description

Feature request. Looking through the svn and docs, it seems there is no task for actually building a PEAR package based on a package.xml file. That would be a worthwhile addition to phing.

Attachments

Change History

07/27/07 15:54:27 changed by anonymous

wouldn't simple <tar> task suffice? I mean, we're already building pear packages with phing without much hassle:

<target name="package">
   <!-- copy necessary files to temp directory -->
   <copy ...>
      ....
   </copy>

   <!-- build package.xml -->
   <pearpkg2 ......>
   .....
   </pearpkg>

   <!-- compress to ${package.name}-${package.version}.tgz
   <tar compression="gzip" .../>
   <!-- and pack without compression too (for those without zlib installed) -->
   <tar .../>
</target>

08/02/07 02:13:54 changed by hans

  • priority changed from major to minor.
  • type changed from defect to enhancement.
  • milestone changed from 2.3.0 to 3.0.

Add/Change #131 (Featurerequest. Missing task to create a PEAR package based on a package.xml file)