Skip to content

Commit

Permalink
Merge pull request #24 from alerque/rockspecs
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Sep 25, 2020
2 parents dd236e3 + 2dc25d9 commit 9f7dba6
Show file tree
Hide file tree
Showing 8 changed files with 200 additions and 9 deletions.
20 changes: 11 additions & 9 deletions cassowary-scm-0.rockspec
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
package = "Cassowary"
rockspec_format = "3.0"
package = "cassowary"
version = "scm-0"

source = {
url = "git://github.com/sile-typesetter/cassowary.lua",
branch = "master"
}

description = {
summary = "The cassowary constraint solver.",
detailed = [[
This is a lua port of the cassowary constraint solving toolkit.
It allows you to use lua to solve algebraic equations and inequalities
and find the values of unknown variables which satisfy those inequalities.
]],
summary = "The cassowary constraint solver",
detailed = [[This is a Lua port of the Cassowary constraint solving toolkit.
It allows you to use Lua to solve algebraic equations and inequalities
and find the values of unknown variables which satisfy those
inequalities.]],
license = "Apache 2",
homepage = "https://github.com/sile-typesetter/cassowary.lua",
license = "Apache 2"
issues_url = "https://github.com/sile-typesetter/cassowary.lua/issues"
}

dependencies = {
"lua",
"lua >= 5.1",
"penlight"
}

Expand Down
26 changes: 26 additions & 0 deletions rockspecs/cassowary-1.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package = "Cassowary"
version = "1.0-1"
source = {
url = "git://github.com/simoncozens/cassowary.lua",
tag = "v1.0",
}
description = {
summary = "The cassowary constraint solver.",
detailed = [[
This is a lua port of the cassowary constraint solving toolkit.
It allows you to use lua to solve algebraic equations and inequalities
and find the values of unknown variables which satisfy those inequalities.
]],
homepage = "https://github.com/simoncozens/cassowary.lua",
license = "Apache 2"
}
dependencies = {
"lua ~> 5.1";
"stdlib"
}
build = {
type = "builtin",
modules = {
cassowary = "cassowary.lua/cassowary.lua"
}
}
26 changes: 26 additions & 0 deletions rockspecs/cassowary-1.0-2.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package = "Cassowary"
version = "1.0-2"
source = {
url = "git://github.com/simoncozens/cassowary.lua",
tag = "v1.0",
}
description = {
summary = "The cassowary constraint solver.",
detailed = [[
This is a lua port of the cassowary constraint solving toolkit.
It allows you to use lua to solve algebraic equations and inequalities
and find the values of unknown variables which satisfy those inequalities.
]],
homepage = "https://github.com/simoncozens/cassowary.lua",
license = "Apache 2"
}
dependencies = {
"lua";
"stdlib"
}
build = {
type = "builtin",
modules = {
cassowary = "cassowary.lua/cassowary.lua"
}
}
26 changes: 26 additions & 0 deletions rockspecs/cassowary-1.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package = "Cassowary"
version = "1.1-1"
source = {
url = "git://github.com/simoncozens/cassowary.lua",
tag = "v1.1",
}
description = {
summary = "The cassowary constraint solver.",
detailed = [[
This is a lua port of the cassowary constraint solving toolkit.
It allows you to use lua to solve algebraic equations and inequalities
and find the values of unknown variables which satisfy those inequalities.
]],
homepage = "https://github.com/simoncozens/cassowary.lua",
license = "Apache 2"
}
dependencies = {
"lua";
"stdlib"
}
build = {
type = "builtin",
modules = {
cassowary = "cassowary.lua/cassowary.lua"
}
}
26 changes: 26 additions & 0 deletions rockspecs/cassowary-2.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package = "Cassowary"
version = "2.0-1"
source = {
url = "git://github.com/simoncozens/cassowary.lua",
tag = "v2.0",
}
description = {
summary = "The cassowary constraint solver.",
detailed = [[
This is a lua port of the cassowary constraint solving toolkit.
It allows you to use lua to solve algebraic equations and inequalities
and find the values of unknown variables which satisfy those inequalities.
]],
homepage = "https://github.com/simoncozens/cassowary.lua",
license = "Apache 2"
}
dependencies = {
"lua";
"penlight"
}
build = {
type = "builtin",
modules = {
cassowary = "cassowary.lua/cassowary.lua"
}
}
26 changes: 26 additions & 0 deletions rockspecs/cassowary-2.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package = "Cassowary"
version = "2.1-1"
source = {
url = "git://github.com/simoncozens/cassowary.lua",
tag = "v2.1",
}
description = {
summary = "The cassowary constraint solver.",
detailed = [[
This is a lua port of the cassowary constraint solving toolkit.
It allows you to use lua to solve algebraic equations and inequalities
and find the values of unknown variables which satisfy those inequalities.
]],
homepage = "https://github.com/simoncozens/cassowary.lua",
license = "Apache 2"
}
dependencies = {
"lua";
"penlight"
}
build = {
type = "builtin",
modules = {
cassowary = "cassowary.lua/cassowary.lua"
}
}
29 changes: 29 additions & 0 deletions rockspecs/cassowary-2.2-0.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
package = "Cassowary"
version = "2.2-0"

source = {
url = "git://github.com/simoncozens/cassowary.lua",
}

description = {
summary = "The cassowary constraint solver.",
detailed = [[
This is a lua port of the cassowary constraint solving toolkit.
It allows you to use lua to solve algebraic equations and inequalities
and find the values of unknown variables which satisfy those inequalities.
]],
homepage = "https://github.com/simoncozens/cassowary.lua",
license = "Apache 2"
}

dependencies = {
"lua",
"penlight"
}

build = {
type = "builtin",
modules = {
cassowary = "cassowary.lua"
}
}
30 changes: 30 additions & 0 deletions rockspecs/cassowary-2.2-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
package = "Cassowary"
version = "2.2-1"

source = {
url = "git://github.com/simoncozens/cassowary.lua",
dir = "cassowary.lua"
}

description = {
summary = "The cassowary constraint solver.",
detailed = [[
This is a lua port of the cassowary constraint solving toolkit.
It allows you to use lua to solve algebraic equations and inequalities
and find the values of unknown variables which satisfy those inequalities.
]],
homepage = "https://github.com/simoncozens/cassowary.lua",
license = "Apache 2"
}

dependencies = {
"lua",
"penlight"
}

build = {
type = "builtin",
modules = {
cassowary = "cassowary.lua"
}
}

0 comments on commit 9f7dba6

Please sign in to comment.