diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-lua/luafilesystem | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-lua/luafilesystem')
-rw-r--r-- | dev-lua/luafilesystem/Manifest | 2 | ||||
-rw-r--r-- | dev-lua/luafilesystem/luafilesystem-1.5.0.ebuild | 34 | ||||
-rw-r--r-- | dev-lua/luafilesystem/luafilesystem-1.6.2.ebuild | 34 | ||||
-rw-r--r-- | dev-lua/luafilesystem/metadata.xml | 15 |
4 files changed, 85 insertions, 0 deletions
diff --git a/dev-lua/luafilesystem/Manifest b/dev-lua/luafilesystem/Manifest new file mode 100644 index 000000000000..47081b8ee4a2 --- /dev/null +++ b/dev-lua/luafilesystem/Manifest @@ -0,0 +1,2 @@ +DIST luafilesystem-1.5.0.tar.gz 26660 SHA256 00f6e1dc1e1da7f0fa77e375f0a04908ec4241a4c5e8d98031614f4a4a50c7cb SHA512 79e767be5b923424c2f3c0025e050b6a5b15550cf96d153072f817b0f94757032feeaa579e4d73cc009a5954d38a30079db1c1c15545a45e9f13c0c776080aac WHIRLPOOL 67b3e3c82ddf0732afbd0c49dcff7608520742c7aca0aa38d709f282322d8b0487654c662327b68f3f451492e70ff5e9b485453090d792541a7aedf1efdc8fdf +DIST luafilesystem-1.6.2.tar.gz 27886 SHA256 4ad16df9958314662a459fec848d233d59313ef4992808a290053c1614532018 SHA512 75debecd3b35d43e76b51de02cface73808547be6a26e15c06c969c50bbfd7c4d0801ccb68812b7ecb99e56eaa63deeadaba6d0387748e215e5bdab784d463ff WHIRLPOOL 156fcb9b902fe8191925c12bbeaac14525c24ebbeff22bfb1bead3429090b074a29e41bf25d903692cf33fe53ca5983b3f935476e765b1ba0804e2113e026561 diff --git a/dev-lua/luafilesystem/luafilesystem-1.5.0.ebuild b/dev-lua/luafilesystem/luafilesystem-1.5.0.ebuild new file mode 100644 index 000000000000..1213d97f4ba6 --- /dev/null +++ b/dev-lua/luafilesystem/luafilesystem-1.5.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +inherit multilib toolchain-funcs + +DESCRIPTION="File System Library for the Lua Programming Language" +HOMEPAGE="http://keplerproject.github.com/luafilesystem/" +SRC_URI="mirror://github/keplerproject/luafilesystem/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm hppa ~mips ppc ppc64 sparc x86 ~x86-fbsd" +IUSE="" + +DEPEND=">=dev-lang/lua-5.1" +RDEPEND="${DEPEND}" + +src_prepare() { + sed -i \ + -e "s|/usr/local|/usr|" \ + -e "s|/lib|/$(get_libdir)|" \ + -e "s|-O2|${CFLAGS}|" \ + -e "/^LIB_OPTION/s|= |= ${LDFLAGS} |" \ + -e "s|gcc|$(tc-getCC)|" \ + config || die +} + +src_install() { + emake PREFIX="${ED}usr" install || die + dodoc README || die + dohtml doc/us/* || die +} diff --git a/dev-lua/luafilesystem/luafilesystem-1.6.2.ebuild b/dev-lua/luafilesystem/luafilesystem-1.6.2.ebuild new file mode 100644 index 000000000000..334a50e1de9d --- /dev/null +++ b/dev-lua/luafilesystem/luafilesystem-1.6.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit multilib toolchain-funcs + +DESCRIPTION="File System Library for the Lua Programming Language" +HOMEPAGE="http://keplerproject.github.com/luafilesystem/" +SRC_URI="mirror://github/keplerproject/luafilesystem/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86 ~x86-fbsd" +IUSE="" + +DEPEND=">=dev-lang/lua-5.1" +RDEPEND="${DEPEND}" + +src_prepare() { + sed -i \ + -e "s|/usr/local|/usr|" \ + -e "s|/lib|/$(get_libdir)|" \ + -e "s|-O2|${CFLAGS}|" \ + -e "/^LIB_OPTION/s|= |= ${LDFLAGS} |" \ + -e "s|gcc|$(tc-getCC)|" \ + config || die +} + +src_install() { + emake PREFIX="${ED}usr" install + dodoc README + dohtml doc/us/* +} diff --git a/dev-lua/luafilesystem/metadata.xml b/dev-lua/luafilesystem/metadata.xml new file mode 100644 index 000000000000..8a505cb1b837 --- /dev/null +++ b/dev-lua/luafilesystem/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>rafaelmartins@gentoo.org</email> + </maintainer> + <longdescription lang="en"> + LuaFileSystem is a Lua library developed to complement the set of functions + related to file systems offered by the standard Lua distribution. + + LuaFileSystem offers a portable way to access the underlying directory + structure and file attributes. + </longdescription> +</pkgmetadata> + |