mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2024-11-22 06:27:08 +00:00
updated for new release
This commit is contained in:
parent
f89504c92e
commit
95622aeb2d
2 changed files with 28 additions and 10 deletions
13
package.xml
13
package.xml
|
@ -4,7 +4,6 @@
|
||||||
<name>gnupg</name>
|
<name>gnupg</name>
|
||||||
<summary>wrapper around the gpgme library</summary>
|
<summary>wrapper around the gpgme library</summary>
|
||||||
<description>This extension provides methods to interact with gnupg.
|
<description>This extension provides methods to interact with gnupg.
|
||||||
So you can sign, encrypt, verify directly from php
|
|
||||||
</description>
|
</description>
|
||||||
<maintainers>
|
<maintainers>
|
||||||
<maintainer>
|
<maintainer>
|
||||||
|
@ -15,11 +14,11 @@ So you can sign, encrypt, verify directly from php
|
||||||
</maintainer>
|
</maintainer>
|
||||||
</maintainers>
|
</maintainers>
|
||||||
<release>
|
<release>
|
||||||
<version>0.4</version>
|
<version>0.5</version>
|
||||||
<date>2005-10-15</date>
|
<date>2005-10-25</date>
|
||||||
<license>PHP License</license>
|
<license>PHP License</license>
|
||||||
<state>beta</state>
|
<state>beta</state>
|
||||||
<notes>added procedual usage and lowered min PHP Version to 4.3
|
<notes>now supports multiple keys. added getsignatures. verify can now handle all signature types. therefore the API has changed.
|
||||||
</notes>
|
</notes>
|
||||||
<deps>
|
<deps>
|
||||||
<dep type="php" rel="ge" version="4.3"/>
|
<dep type="php" rel="ge" version="4.3"/>
|
||||||
|
@ -45,6 +44,12 @@ So you can sign, encrypt, verify directly from php
|
||||||
</filelist>
|
</filelist>
|
||||||
</release>
|
</release>
|
||||||
<changelog>
|
<changelog>
|
||||||
|
<release>
|
||||||
|
<version>0.5</version>
|
||||||
|
<date>2005-10-25</date>
|
||||||
|
<state>beta</state>
|
||||||
|
<notes>now supports multiple keys. added getsignatures. verify can now handle all signature types. therefore the API has changed.</notes>
|
||||||
|
</release>
|
||||||
<release>
|
<release>
|
||||||
<version>0.4</version>
|
<version>0.4</version>
|
||||||
<date>2005-10-17</date>
|
<date>2005-10-17</date>
|
||||||
|
|
25
package2.xml
25
package2.xml
|
@ -7,7 +7,6 @@ http://pear.php.net/dtd/package-2.0.xsd">
|
||||||
<channel>pecl.php.net</channel>
|
<channel>pecl.php.net</channel>
|
||||||
<summary>wrapper around the gpgme library</summary>
|
<summary>wrapper around the gpgme library</summary>
|
||||||
<description>This extension provides methods to interact with gnupg.
|
<description>This extension provides methods to interact with gnupg.
|
||||||
So you can sign, encrypt, verify directly from php
|
|
||||||
|
|
||||||
</description>
|
</description>
|
||||||
<lead>
|
<lead>
|
||||||
|
@ -16,18 +15,18 @@ So you can sign, encrypt, verify directly from php
|
||||||
<email>traufeisen@php.net</email>
|
<email>traufeisen@php.net</email>
|
||||||
<active>yes</active>
|
<active>yes</active>
|
||||||
</lead>
|
</lead>
|
||||||
<date>2005-10-17</date>
|
<date>2005-10-25</date>
|
||||||
<time>23:14:49</time>
|
<time>21:45:37</time>
|
||||||
<version>
|
<version>
|
||||||
<release>0.4</release>
|
<release>0.5</release>
|
||||||
<api>0.4</api>
|
<api>0.5</api>
|
||||||
</version>
|
</version>
|
||||||
<stability>
|
<stability>
|
||||||
<release>beta</release>
|
<release>beta</release>
|
||||||
<api>beta</api>
|
<api>beta</api>
|
||||||
</stability>
|
</stability>
|
||||||
<license uri="http://www.php.net/license">PHP License</license>
|
<license uri="http://www.php.net/license">PHP License</license>
|
||||||
<notes>added procedual usage and lowered min PHP Version to 4.3
|
<notes>now supports multiple keys. added getsignatures. verify can now handle all signature types. therefore the API has changed.
|
||||||
|
|
||||||
</notes>
|
</notes>
|
||||||
<contents>
|
<contents>
|
||||||
|
@ -66,6 +65,20 @@ So you can sign, encrypt, verify directly from php
|
||||||
<providesextension>gnupg</providesextension>
|
<providesextension>gnupg</providesextension>
|
||||||
<extsrcrelease />
|
<extsrcrelease />
|
||||||
<changelog>
|
<changelog>
|
||||||
|
<release>
|
||||||
|
<version>
|
||||||
|
<release>0.5</release>
|
||||||
|
<api>0.5</api>
|
||||||
|
</version>
|
||||||
|
<stability>
|
||||||
|
<release>beta</release>
|
||||||
|
<api>beta</api>
|
||||||
|
</stability>
|
||||||
|
<date>2005-10-25</date>
|
||||||
|
<license uri="http://www.php.net/license">PHP License</license>
|
||||||
|
<notes>now supports multiple keys. added getsignatures. verify can now handle all signature types. therefore the API has changed.
|
||||||
|
</notes>
|
||||||
|
</release>
|
||||||
<release>
|
<release>
|
||||||
<version>
|
<version>
|
||||||
<release>0.4</release>
|
<release>0.4</release>
|
||||||
|
|
Loading…
Reference in a new issue