-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.xml
71 lines (71 loc) · 2.57 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
<?xml version="1.0" encoding="UTF-8"?>
<package 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" packagerversion="1.4.7" version="2.0" 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>proctitle</name>
<channel>pecl.php.net</channel>
<summary>Allows setting the current process name on Linux and BSD</summary>
<description>
This extension allows changing the current process' name on Linux and *BSD systems. This is useful when using pcntl_fork() to identify running processes in process list
</description>
<lead>
<name>Mark Karpeles</name>
<user>magicaltux</user>
<email>magicaltux@php.net</email>
<active>yes</active>
</lead>
<date>2012-05-11</date>
<version>
<release>0.1.2</release><api>0.1.2</api>
</version>
<stability>
<release>alpha</release><api>alpha</api>
</stability>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Fixed package version by using a define (suggested by rza)
- Added setthreadtitle() (bjori)
- Fixed compatibility for PHP 5.4+ (johannes)
</notes>
<contents>
<dir name="/">
<file name="README" role="doc"/>
<file name="LICENSE" role="doc"/>
<file name="config.m4" role="src"/>
<file name="proctitle.c" role="src"/>
<file name="php_proctitle.h" role="src">
<tasks:replace from="@PACKAGE_VERSION@" to="version" type="package-info" />
</file>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.2.0</min>
</php>
<pearinstaller>
<min>1.4.0</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>proctitle</providesextension>
<extsrcrelease/>
<changelog>
<release>
<stability><release>alpha</release><api>alpha</api></stability>
<version><release>0.1.1</release><api>0.1.1</api></version>
<date>2009-01-30</date>
<notes>
- Fixed copyright (thanks to Wez)
- Added BSD system autodetection (native call "setproctitle")
</notes>
</release>
<release>
<stability><release>alpha</release><api>alpha</api></stability>
<version><release>0.1.0</release><api>0.1.0</api></version>
<date>2009-01-29</date>
<notes>
- Fixed/improved parts of the code based on suggestions by johannes
- Merged code from various sources (initial wikipedia code, code found on bug report, etc)
</notes>
</release>
</changelog>
</package>