xtype (halted)

Check-in [f02bdad314]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix rockspecs.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: f02bdad314568ffb631173ec9dcbaa5b21c090cceaa333ffdeba8fe0f11af871
User & Date: imagic 2021-11-22 23:13:40.000
Context
2021-11-25
20:41
Add warning about `eq` operator. ... (check-in: 2fe1114560 user: imagic tags: trunk)
2021-11-22
23:13
Fix rockspecs. ... (check-in: f02bdad314 user: imagic tags: trunk)
2021-11-18
16:01
Release 1.0. ... (check-in: 09d75937b5 user: imagic tags: trunk, 1.0)
Changes
Unified Diff Ignore Whitespace Patch
Deleted rockspecs/xtype-1.0-1.rockspec.
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
package = "xtype"
version = "1.0-1"
source = {
  url = "git://github.com/ImagicTheCat/lua-xtype",
  tag = "1.0"
}

description = {
  summary = "A dynamic type system library for Lua.",
  detailed = [[
xtype, or Extended Type, is a dynamic type system library for Lua.
  ]],
  homepage = "https://github.com/ImagicTheCat/lua-xtype",
  license = "MIT"
}

dependencies = {
  "lua >= 5.1, <= 5.4"
}

build = {
  type = "builtin",
  modules = {
    Luaseq = "src/xtype.lua"
  }
}
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<




















































Added rockspecs/xtype-1.0-2.rockspec.




















































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
package = "xtype"
version = "1.0-2"
source = {
  url = "git://github.com/ImagicTheCat/lua-xtype",
  tag = "1.0"
}

description = {
  summary = "A dynamic type system library for Lua.",
  detailed = [[
xtype, or Extended Type, is a dynamic type system library for Lua.
  ]],
  homepage = "https://github.com/ImagicTheCat/lua-xtype",
  license = "MIT"
}

dependencies = {
  "lua >= 5.1, <= 5.4"
}

build = {
  type = "builtin",
  modules = {
    xtype = "src/xtype.lua"
  }
}
Deleted rockspecs/xtype-scm-1.rockspec.
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 = "xtype"
version = "scm-1"
source = {
  url = "git://github.com/ImagicTheCat/lua-xtype",
}

description = {
  summary = "A dynamic type system library for Lua.",
  detailed = [[
xtype, or Extended Type, is a dynamic type system library for Lua.
  ]],
  homepage = "https://github.com/ImagicTheCat/lua-xtype",
  license = "MIT"
}

dependencies = {
  "lua >= 5.1, <= 5.4"
}

build = {
  type = "builtin",
  modules = {
    Luaseq = "src/xtype.lua"
  }
}
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<


















































Added rockspecs/xtype-scm-2.rockspec.


















































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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 = "xtype"
version = "scm-2"
source = {
  url = "git://github.com/ImagicTheCat/lua-xtype",
}

description = {
  summary = "A dynamic type system library for Lua.",
  detailed = [[
xtype, or Extended Type, is a dynamic type system library for Lua.
  ]],
  homepage = "https://github.com/ImagicTheCat/lua-xtype",
  license = "MIT"
}

dependencies = {
  "lua >= 5.1, <= 5.4"
}

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