forked from php/pecl-event-libevent
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.xml
119 lines (119 loc) · 3.63 KB
/
package.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.4.11" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0
http://pear.php.net/dtd/tasks-1.0.xsd
http://pear.php.net/dtd/package-2.0
http://pear.php.net/dtd/package-2.0.xsd">
<name>libevent</name>
<channel>pecl.php.net</channel>
<summary>Libevent - event notification</summary>
<description>This extension is a wrapper for libevent - event notification library.
</description>
<lead>
<name>Antony Dovgal</name>
<user>tony2001</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<lead>
<name>Arnaud Le Blanc</name>
<user>lbarnaud</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2013-05-22</date>
<time>16:00:00</time>
<version>
<release>0.1.0</release>
<api>0.1.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- Added event_base_reinit(). (Ivan Shalganov, Andy Skelton)
- Added config.w32. (bruno at chalopin dot fr)
- Fixed windows compilation with libevent 2.x. (Anatol Belski)
- Fixed bug #61673 (callback function args are wrong for signal handler).
- Fixed bug #61653 (Segfault on event_free()).
</notes>
<contents>
<dir name="/">
<file name="config.m4" role="src" />
<file name="CREDITS" role="doc" />
<file name="libevent.c" role="src" />
<file name="libevent.php" role="doc" />
<file name="php_libevent.h" role="src" />
</dir> <!-- / -->
</contents>
<dependencies>
<required>
<php>
<min>5.3.0</min>
<max>6.0.0</max>
<exclude>6.0.0</exclude>
</php>
<pearinstaller>
<min>1.4.0b1</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>libevent</providesextension>
<extsrcrelease>
<configureoption default="autodetect" name="with-libevent" prompt="Please provide the prefix of libevent installation" />
</extsrcrelease>
<changelog>
<release>
<date>2012-04-02</date>
<time>19:00:00</time>
<version>
<release>0.0.5</release>
<api>0.0.5</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>- Fixed build with museum PHP versions.
- Fixed PECL bug #22705 (event_set() resets event base to NULL).
- Changed event_set(), event_buffer_new() and event_buffer_set_fd() to
accept numerical file descriptors.
- Added event_priority_set() (patch by Ruslan Osmanov).
- Fixed build with 5_4.
</notes>
</release>
<release>
<date>2010-06-23</date>
<time>14:00:00</time>
<version>
<release>0.0.4</release>
<api>0.0.4</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>- Added signal support to event_set().
- Added add event_buffer_set_callback().
- Fixed possible segfault in event_del().
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.3</release><api>0.0.3</api></version>
<date>2009-08-29</date>
<notes>- Added support for sockets created with socket_create() (requires PHP 5.3.1+).
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.2</release><api>0.0.2</api></version>
<date>2009-08-29</date>
<notes>Initial release (after a long testing period).
</notes>
</release>
</changelog>
</package>