Update package meta info

Provide version split in major, minor and micro release numbers, as well
as the all in one string. Have separate package name variable to have
pure version in _VERSION. Update copyright year.
This commit is contained in:
Tim Niemueller 2010-09-14 22:17:37 -04:00
parent ea9546305b
commit c50a904b56

View File

@ -14,9 +14,13 @@ local parse = lxp.lom.parse
module (...)
_COPYRIGHT = "Copyright (C) 2003-2007 Kepler Project"
_COPYRIGHT = "Copyright (C) 2003-2010 Kepler Project"
_DESCRIPTION = "LuaXMLRPC is a library to make remote procedure calls using XML-RPC"
_VERSION = "LuaXMLRPC 1.1.0"
_PKGNAME = "LuaXMLRPC"
_VERSION_MAJOR = 1
_VERSION_MINOR = 2
_VERSION_MICRO = 0
_VERSION = _VERSION_MAJOR .. "." .. _VERSION_MINOR .. "." .. _VERSION_MICRO
---------------------------------------------------------------------
-- XML-RPC Parser