From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9008B1384B4 for ; Wed, 11 Nov 2015 17:50:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A5DC21C0C9; Wed, 11 Nov 2015 17:50:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1FCE121C08C for ; Wed, 11 Nov 2015 17:50:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 229B33403C1 for ; Wed, 11 Nov 2015 17:50:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96A2123BD for ; Wed, 11 Nov 2015 17:50:47 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1447263565.c2505de3a5d467f34c4d8fb5acf1ff865f3a1ea6.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/say/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lua/say/Manifest dev-lua/say/metadata.xml dev-lua/say/say-1.3_p1.ebuild X-VCS-Directories: dev-lua/say/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: c2505de3a5d467f34c4d8fb5acf1ff865f3a1ea6 X-VCS-Branch: master Date: Wed, 11 Nov 2015 17:50:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 04d62f33-80c6-44e2-a54f-04478d2d867d X-Archives-Hash: 4cfd6a01ddabf24f00591d28840be3a2 commit: c2505de3a5d467f34c4d8fb5acf1ff865f3a1ea6 Author: William Hubbs gentoo org> AuthorDate: Tue Nov 10 18:47:44 2015 +0000 Commit: William Hubbs gentoo org> CommitDate: Wed Nov 11 17:39:25 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2505de3 dev-lua/say: initial commit dev-lua/say/Manifest | 1 + dev-lua/say/metadata.xml | 11 +++++++++++ dev-lua/say/say-1.3_p1.ebuild | 30 ++++++++++++++++++++++++++++++ 3 files changed, 42 insertions(+) diff --git a/dev-lua/say/Manifest b/dev-lua/say/Manifest new file mode 100644 index 0000000..de40929 --- /dev/null +++ b/dev-lua/say/Manifest @@ -0,0 +1 @@ +DIST say-1.3_p1.tar.gz 3667 SHA256 23e8cd378bb4ab1693279100a785acb2246418e3570b7de7d995b5847b3507ca SHA512 8d4a360bf0731c2a70c23edb9e6e81cab1e7d9b861aa35103a5c6e521633410860d76c46dc2ea62a06ac8ab3b522bc71c11143d6fe7e26e7fa24dd3f5ea1e5f6 WHIRLPOOL fd5a8f65e297151d55595f501e407796126caa02f5d22b5d1b0db2107277e6fc3b83ebb5189fb59cea7252f3111e4cf29ec3d57137b6beba7ab81583f5f57100 diff --git a/dev-lua/say/metadata.xml b/dev-lua/say/metadata.xml new file mode 100644 index 0000000..d593da1 --- /dev/null +++ b/dev-lua/say/metadata.xml @@ -0,0 +1,11 @@ + + + + + williamh@gentoo.org + William Hubbs + + + Useful for internationalization. + + diff --git a/dev-lua/say/say-1.3_p1.ebuild b/dev-lua/say/say-1.3_p1.ebuild new file mode 100644 index 0000000..ff54acc --- /dev/null +++ b/dev-lua/say/say-1.3_p1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +MY_PV=1.3-1 + +inherit toolchain-funcs + +DESCRIPTION="Lua String Hashing/Indexing Library" +HOMEPAGE="http://olivinelabs.com/busted/" +SRC_URI="https://github.com/Olivine-Labs/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +COMMON_DEPEND=">=dev-lang/lua-5.1:=" +DEPEND="${COMMON_DEPEND} +virtual/pkgconfig" +RDEPEND="${COMMON_DEPEND}" + +S="${WORKDIR}/${PN}-${MY_PV}" + +src_install() { + insinto "$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD lua)"/${PN} +doins src/init.lua +dodoc CONTRIBUTING.md README.md +}