Skip to content
This repository was archived by the owner on Nov 20, 2020. It is now read-only.

Commit 38ff4bd

Browse files
author
carregal
committed
Packaging version 1.1.3
1 parent a0238f9 commit 38ff4bd

File tree

3 files changed

+46
-13
lines changed

3 files changed

+46
-13
lines changed

README

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,14 @@ http://coxpcall.luaforge.net/
44
Coxpcall encapsulates the protected calls with a coroutine based loop,
55
so errors can be dealed without the usual pcall/xpcall issues with coroutines.
66

7-
Using Coxpcall usually consists in simply loading the module and then replacing
8-
Lua pcall and xpcall by copcall and coxpcall.
7+
Using Coxpcall usually consists in simply loading the module and then replacing Lua
8+
pcall and xpcall by copcall and coxpcall.
99

1010
Coxpcall is free software and uses the same license as Lua 5.1.
1111

12-
Current version is 1.12. It was developed for Lua 5.1.
13-
1412
Coxpcall can be downloaded from its LuaForge page. You can also get Coxpcall using LuaRocks:
1513
luarocks install coxpcall
1614

1715
History
18-
19-
Coxpcall 1.12 [09/May/2008]
20-
* Added stack traces
16+
Coxpcall 1.13 [19/May/2008]
17+
* Fixed bug [#5275], found by Gary NG

doc/us/index.html

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ <h2><a name="over"></a>Overview</h2>
6464

6565
<h2><a name="status"></a>Status</h2>
6666

67-
<p>Current version is 1.12. It was developed for Lua 5.1.</p>
67+
<p>Current version is 1.13. It was developed for Lua 5.1.</p>
6868

6969
<h2><a name="download"></a>Download</h2>
7070

@@ -81,6 +81,11 @@ <h2><a name="download"></a>Download</h2>
8181
<h2><a name="history"></a>History</h2>
8282

8383
<dl>
84+
<dt><strong>Coxpcall 1.13</strong> [19/May/2008]</dt>
85+
<dd><ul>
86+
<li>Fixed bug <a href="http://luaforge.net/tracker/?func=detail&amp;group_id=101&amp;aid=5275&amp;atid=496">[#5275]</a>, found by Gary NG</li>
87+
</ul></dd>
88+
8489
<dt><strong>Coxpcall 1.12</strong> [09/May/2008]</dt>
8590
<dd><ul>
8691
<li>Added stack traces</li>
@@ -113,10 +118,10 @@ <h2><a name="credits"></a>Credits</h2>
113118

114119
<p>
115120
Coxpcall was designed and implemented by Roberto Ierusalimschy and
116-
Andr&eacute; Carregal with the colaboration of Thomas Harning Jr., Ignacio Burgue&ntilde;o and
117-
F&aacute;bio Mascarenhas as part of the
118-
<a href="http://www.keplerproject.org">Kepler Project</a> which
119-
holds its copyright. </p>
121+
Andr&eacute; Carregal with the colaboration of Thomas Harning Jr., Ignacio Burgue&ntilde;o,
122+
Gary NG and F&aacute;bio Mascarenhas as part of the
123+
<a href="http://www.keplerproject.org">Kepler Project</a> which holds its copyright.
124+
</p>
120125

121126
<h2><a name="contact"></a>Contact us</h2>
122127

@@ -137,7 +142,7 @@ <h2><a name="contact"></a>Contact us</h2>
137142

138143
<div id="about">
139144
<p><a href="http://validator.w3.org/check?uri=referer">Valid XHTML 1.0!</a></p>
140-
<p><small>$Id: index.html,v 1.3 2008/05/09 17:06:24 carregal Exp $</small></p>
145+
<p><small>$Id: index.html,v 1.4 2008/05/19 20:32:33 carregal Exp $</small></p>
141146
</div> <!-- id="about" -->
142147

143148
</div> <!-- id="container" -->

rockspec/coxpcall-1.13.0-1.rockspec

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
package = "Coxpcall"
2+
3+
version = "1.13.0-1"
4+
5+
source = {
6+
url = "",
7+
}
8+
9+
description = {
10+
summary = "Coroutine safe xpcall and pcall",
11+
detailed = [[
12+
Encapsulates the protected calls with a coroutine based loop, so errors can
13+
be dealed without the usual Lua 5.x pcall/xpcall issues with coroutines
14+
yielding inside the call to pcall or xpcall.
15+
]],
16+
license = "MIT/X11",
17+
homepage = "http://coxpcall.luaforge.net"
18+
}
19+
20+
dependencies = { }
21+
22+
build = {
23+
type = "make",
24+
build_pass = false,
25+
install_target = "install-rocks",
26+
install_variables = {
27+
PREFIX = "$(PREFIX)",
28+
LUA_DIR = "$(LUADIR)",
29+
BIN_DIR = "$(BINDIR)"
30+
}
31+
}

0 commit comments

Comments
 (0)