Skip to content

Commit

Permalink
Release 2.0.4 version bump and rockspec added. Also fix issue #237 ad…
Browse files Browse the repository at this point in the history
…d OSX to rockspec platforms.
  • Loading branch information
kernelsauce committed Dec 12, 2015
1 parent 37b48a1 commit f43bffa
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ALL_LUA_FILES := $(call rwildcard,./,*.lua)
ALL_LUAC_FILES := $(call rwildcard,./,*.luac)
MAJVER= 2
MINVER= 0
MICVER= 3
MICVER= 4
TVERSION= $(MAJVER).$(MINVER).$(MICVER)
PREFIX ?= /usr/local
TDEPS= deps
Expand Down
22 changes: 22 additions & 0 deletions rockspecs/turbo-2.0-4.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package = "turbo"
version = "2.0-4"
supported_platforms = {"linux", "macosx"}
source = {
url = "git://github.com/kernelsauce/turbo",
tag = "v2.0.4"
}
description = {
summary = "A networking suite for LuaJIT2, optimized for performance.",
detailed = [[Turbo.lua is just another framework to create network programs for Linux. It uses kernel
event polling to manage network connections instead of the traditional concurency models that employ
threads. As it does not use threads, no locks, mutexes or other bad things are required. It solves the
same issues as Node.js, Tornado etc. except it solves it with Lua. A simple, yet powerful language that
fits nicely with the event polling model with its builtin coroutines.]],
homepage = "http://turbolua.org",
maintainer = "John Abrahamsen <[email protected]>",
license = "Apache 2.0"
}
build = {
type = "make",
makefile = "Makefile"
}
4 changes: 2 additions & 2 deletions turbo.lua
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ local turbo = {} -- turbo main namespace.
-- changes, the major version is incremented and others are set to zero.
turbo.MAJOR_VERSION = 2
turbo.MINOR_VERSION = 0
turbo.MICRO_VERSION = 3
turbo.MICRO_VERSION = 4
-- A 3-byte hexadecimal representation of the version, e.g. 0x010201 for
-- version 1.2.1 and 0x010300 for version 1.3.
turbo.VERSION_HEX = 0x020003
turbo.VERSION_HEX = 0x020004
if turbo.MICRO_VERSION then
turbo.VERSION = string.format("%d.%d.%d",
turbo.MAJOR_VERSION,
Expand Down

0 comments on commit f43bffa

Please sign in to comment.