File: coxpcall-1.14.0-2.rockspec

package info (click to toggle)
lua-coxpcall 1.17.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 172 kB
  • sloc: sh: 28; makefile: 16
file content (25 lines) | stat: -rw-r--r-- 590 bytes parent folder | download | duplicates (2)
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
package = "Coxpcall"

version = "1.14.0-1"

source = {
  url = "http://www.keplerproject.org/files/coxpcall-1.14.0.tar.gz",
}

description = {
  summary = "Coroutine safe xpcall and pcall",
  detailed = [[
 Encapsulates the protected calls with a coroutine based loop, so errors can
 be dealed without the usual Lua 5.x pcall/xpcall issues with coroutines
 yielding inside the call to pcall or xpcall.
  ]],
  license = "MIT/X11",
  homepage = "http://keplerproject.github.com/coxpcall"
}

dependencies = { }

build = {
   type = "builtin",
   modules = { coxpcall = "src/coxpcall.lua" }
}