Skip to content

Commit

Permalink
release v0.1-rc3
Browse files Browse the repository at this point in the history
  • Loading branch information
s-ol committed Apr 17, 2020
1 parent 6a95678 commit 2c56831
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 2 deletions.
4 changes: 2 additions & 2 deletions alv/version.moon
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
-- @tfield string repo the git repo URL
-- @tfield string release the web URL of this release
{
tag: "v0.1-rc2"
tag: "v0.1-rc3"
web: "https://github.com/s-ol/alive"
repo: "https://github.com/s-ol/alive.git"
release: "https://github.com/s-ol/alive/releases/tag/v0.1"
release: "https://github.com/s-ol/alive/releases/tag/v0.1-rc3"
}
82 changes: 82 additions & 0 deletions dist/rocks/alive-0.1rc3-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
package = "alive"
version = "0.1rc3-1"

source = {
url = "git://github.com/s-ol/alive.git",
tag = "v0.1-rc3",
}

description = {
summary = "Experimental livecoding environment with persistent expressions",
detailed = [[
This is an experimental livecoding language and environment, in which
expressions persist and update until they are removed from the source code, and
the interpreter keeps no state that you cannot manipulate directly in the
source. This yields a direct-manipulation like experience with a purely
text-based language and works without special editor support.]],
homepage = "https://alive.s-ol.nu",
license = "GPL-3",
}

dependencies = {
"lua >= 5.3",
"moonscript >= 0.5.0",
"lpeg ~> 0.10",
"luafilesystem",
"luasystem",
"luasocket",
"osc",
}

build = {
type = "builtin",
modules = {},
copy_directories = { "docs" },
install = {
lua = {
["alv.result"] = "alv/result.moon",
["alv.stream.io"] = "alv/stream/io.moon",
["alv.stream.base"] = "alv/stream/base.moon",
["alv.stream.value"] = "alv/stream/value.moon",
["alv.stream.event"] = "alv/stream/event.moon",
["alv.stream.init"] = "alv/stream/init.moon",
["alv.builtin"] = "alv/builtin.moon",
["alv.cell"] = "alv/cell.moon",
["alv.tag"] = "alv/tag.moon",
["alv.copilot"] = "alv/copilot.moon",
["alv.version"] = "alv/version.moon",
["alv.error"] = "alv/error.moon",
["alv.invoke"] = "alv/invoke.moon",
["alv.cycle"] = "alv/cycle.moon",
["alv.ast"] = "alv/ast.moon",
["alv.base.builtin"] = "alv/base/builtin.moon",
["alv.base.op"] = "alv/base/op.moon",
["alv.base.fndef"] = "alv/base/fndef.moon",
["alv.base.match"] = "alv/base/match.moon",
["alv.base.input"] = "alv/base/input.moon",
["alv.base.init"] = "alv/base/init.moon",
["alv.registry"] = "alv/registry.moon",
["alv.logger"] = "alv/logger.moon",
["alv.init"] = "alv/init.moon",
["alv.parsing"] = "alv/parsing.moon",
["alv.scope"] = "alv/scope.moon",

["alv-lib.osc"] = "alv-lib/osc.moon",
["alv-lib.midi"] = "alv-lib/midi.moon",
["alv-lib.sc"] = "alv-lib/sc.moon",
["alv-lib.pilot"] = "alv-lib/pilot.moon",
["alv-lib.random"] = "alv-lib/random.moon",
["alv-lib.util"] = "alv-lib/util.moon",
["alv-lib.string"] = "alv-lib/string.moon",
["alv-lib.midi.launchctl"] = "alv-lib/midi/launchctl.moon",
["alv-lib.midi.core"] = "alv-lib/midi/core.moon",
["alv-lib.time"] = "alv-lib/time.moon",
["alv-lib.logic"] = "alv-lib/logic.moon",
["alv-lib.math"] = "alv-lib/math.moon",
},
bin = {
"bin/alv",
"bin/alv-copilot"
},
},
}

0 comments on commit 2c56831

Please sign in to comment.