Skip to content

Commit

Permalink
Create rockspec release v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
opomuc committed Jan 22, 2018
1 parent 0ab1f7e commit 553051c
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions rockspecs/queue-1.0.2-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
package = 'queue'
version = '1.0.2-1'
source = {
url = 'git://github.com/tarantool/queue.git',
tag = '1.0.2',
}
description = {
summary = "A set of persistent in-memory queues",
homepage = 'https://github.com/tarantool/queue.git',
license = 'BSD',
}
dependencies = {
'lua >= 5.1'
}
build = {
type = 'builtin',

modules = {
['queue.abstract'] = 'queue/abstract.lua',
['queue.abstract.state'] = 'queue/abstract/state.lua',
['queue.abstract.driver.fifottl'] = 'queue/abstract/driver/fifottl.lua',
['queue.abstract.driver.utubettl'] = 'queue/abstract/driver/utubettl.lua',
['queue.abstract.driver.fifo'] = 'queue/abstract/driver/fifo.lua',
['queue.abstract.driver.utube'] = 'queue/abstract/driver/utube.lua',
['queue.compat'] = 'queue/compat.lua',
['queue'] = 'queue/init.lua'
}
}

-- vim: syntax=lua
File renamed without changes.

0 comments on commit 553051c

Please sign in to comment.