50:5dc03ec4ebbc
Anton Shestakov <av6@dwimlabs.net>, 2018-09-23
spec: no need to check exact phrasing, especially single vs double quote marks

previous change 46:a6b688f75d89

rockspecs/hglib-0.8-1.rockspec

Permissions: -rw-r--r--

Other formats: Feeds:
19
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
package = 'hglib'
46
46:a6b688f75d89 rockspecs: add 0.8-1
Anton Shestakov <av6@dwimlabs.net>
previous changes: 35:9dcbc37ecb32
line | diff
version = '0.8-1'
19
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
source = {
46
46:a6b688f75d89 rockspecs: add 0.8-1
Anton Shestakov <av6@dwimlabs.net>
previous changes: 35:9dcbc37ecb32
line | diff
url = 'https://bitbucket.org/av6/lua-hglib/get/0.8.tar.bz2',
46:a6b688f75d89 rockspecs: add 0.8-1
Anton Shestakov <av6@dwimlabs.net>
previous changes: 35:9dcbc37ecb32
line | diff
file = 'av6-lua-hglib-e11df013b0a0.tar.bz2'
19
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
}
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
description = {
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
summary = 'Mercurial command server client library.',
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
detailed = [[
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
A pure-Lua library for interacting with Mercurial's command server.
35
35:9dcbc37ecb32 rockspecs: more detailed description
Anton Shestakov <av6@dwimlabs.net>
previous changes: 19:2a601f9fd2ab
line | diff
It's useful for Lua applications that want to get all kinds of
35:9dcbc37ecb32 rockspecs: more detailed description
Anton Shestakov <av6@dwimlabs.net>
previous changes: 19:2a601f9fd2ab
line | diff
repository data fast. Compared to the usual way of executing multiple
35:9dcbc37ecb32 rockspecs: more detailed description
Anton Shestakov <av6@dwimlabs.net>
previous changes: 19:2a601f9fd2ab
line | diff
`hg command`, this library skips the overhead of starting up a new
35:9dcbc37ecb32 rockspecs: more detailed description
Anton Shestakov <av6@dwimlabs.net>
previous changes: 19:2a601f9fd2ab
line | diff
process every time.
19
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
]],
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
homepage = 'https://bitbucket.org/av6/lua-hglib',
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
license = 'MIT'
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
}
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
dependencies = {
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
'lpc ~> 1.0.0',
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
-- lpc seems to be 5.1-only (contrary to what its rockspec says), at least
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
-- until https://github.com/LuaDist/lpc/pull/1 is merged, for example.
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
-- Since hglib is depending on it, it's also 5.1-only at the moment.
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
'lua ~> 5.1'
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
}
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
build = {
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
type = 'builtin',
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
modules = {
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
hglib = 'hglib.lua'
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
},
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
copy_directories = { 'examples', 'spec' }
19:2a601f9fd2ab rockspecs: scm-0
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
}