|
|
| |
| local record cvs |
| end |
|
|
| local fs = require("luarocks.fs") |
| local dir = require("luarocks.dir") |
| local util = require("luarocks.util") |
|
|
| local type Rockspec = require("luarocks.core.types.rockspec").Rockspec |
|
|
| |
| |
| |
| |
| |
| |
| |
| function cvs.get_sources(rockspec: Rockspec, _extract: boolean, dest_dir?: string): string, string |
| local cvs_cmd = rockspec.variables.CVS |
| local ok, err_msg = fs.is_tool_available(cvs_cmd, "CVS") |
| if not ok then |
| return nil, err_msg |
| end |
|
|
| local name_version = rockspec.name .. "-" .. rockspec.version |
| local module = rockspec.source.module or dir.base_name(rockspec.source.url) |
| local command = {cvs_cmd, "-d"..rockspec.source.pathname, "export", module} |
| if rockspec.source.tag then |
| table.insert(command, 4, "-r") |
| table.insert(command, 5, rockspec.source.tag) |
| end |
| local store_dir: string |
| if not dest_dir then |
| store_dir = fs.make_temp_dir(name_version) |
| if not store_dir then |
| return nil, "Failed creating temporary directory." |
| end |
| util.schedule_function(fs.delete, store_dir) |
| else |
| store_dir = dest_dir |
| end |
| local okchange, err = fs.change_dir(store_dir) |
| if not okchange then return nil, err end |
| if not fs.execute(table.unpack(command)) then |
| return nil, "Failed fetching files from CVS." |
| end |
| fs.pop_dir() |
| return module, store_dir |
| end |
|
|
|
|
| return cvs |
|
|