commit: 99f1aa3f68e3bb7ec54362eee510524299228aab Author: Vadim A. Misbakh-Soloviov <mva <AT> mva <DOT> name> AuthorDate: Tue Jul 22 07:34:38 2014 +0000 Commit: Vadim A. Misbakh-Soloviov <mva <AT> mva <DOT> name> CommitDate: Tue Jul 22 07:34:38 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/lua.git;a=commit;h=99f1aa3f
[dev-lua/resty-template] added Signed-off-by: Vadim A. Misbakh-Soloviov <mva <AT> mva.name> --- dev-lua/resty-template/Manifest | 1 + dev-lua/resty-template/metadata.xml | 14 ++++++++ dev-lua/resty-template/resty-template-9999.ebuild | 40 +++++++++++++++++++++++ 3 files changed, 55 insertions(+) diff --git a/dev-lua/resty-template/Manifest b/dev-lua/resty-template/Manifest new file mode 100644 index 0000000..3369b09 --- /dev/null +++ b/dev-lua/resty-template/Manifest @@ -0,0 +1 @@ +DIST resty-upload-0.09.tar.gz 7080 SHA256 56ab35526b8f3e2d8f7872a8de332ea2fb8656c4bf3ca161fe964be1689d28ed SHA512 237deb87684bcd99ee9c94ede2795e7475a81f142d3451a8ac6df7b01ad91adfae68f91f059c135a536b0bb2dfcf4fe3aeee6099ec6ca51d58f064d1b375536b WHIRLPOOL cd2df65b02788402a823c41527fba95e63d66d59776a37d0b6296c8f2464c772f551512ed3de78de85f2af208f4bf6c98f8f8b017edce47efeb642e6b7cdbe8f diff --git a/dev-lua/resty-template/metadata.xml b/dev-lua/resty-template/metadata.xml new file mode 100644 index 0000000..23da526 --- /dev/null +++ b/dev-lua/resty-template/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer> + <email>m...@mva.name</email> + <description> + If you have any issues, please contact me, or try to find me in IRC on Freenode, OFTC or RusNet. + </description> + <name>Vadim A. Misbakh-Soloviov</name> +</maintainer> +<longdescription>FIXME</longdescription> +<use> +</use> +</pkgmetadata> diff --git a/dev-lua/resty-template/resty-template-9999.ebuild b/dev-lua/resty-template/resty-template-9999.ebuild new file mode 100644 index 0000000..088f954 --- /dev/null +++ b/dev-lua/resty-template/resty-template-9999.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: This ebuild is from Lua overlay; Bumped by mva; $ + +EAPI="5" + +inherit base eutils toolchain-funcs git-r3 + +DESCRIPTION="Templating Engine (HTML) for Lua and OpenResty." +HOMEPAGE="https://github.com/bungle/lua-${PN}" +SRC_URI="" + +EGIT_REPO_URI="https://github.com/bungle/lua-${PN}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="" +IUSE="luajit" + +RDEPEND=" + !luajit? ( >=dev-lang/lua-5.1 ) + luajit? ( dev-lang/luajit:2 ) + www-servers/nginx[nginx_modules_http_lua] +" +DEPEND=" + ${RDEPEND} + dev-util/pkgconfig +" + +DOCS=( "README.md" ) + +src_install() { + local lua=lua; + use luajit && lua=luajit; + + insinto "$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD ${lua})" + doins -r lib/resty + + base_src_install_docs +}