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 83609138262 for ; Thu, 19 May 2016 01:37:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7BACF21C01D; Thu, 19 May 2016 01:37:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 165D521C01D for ; Thu, 19 May 2016 01:37:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C5163340D06 for ; Thu, 19 May 2016 01:37:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AFE03968 for ; Thu, 19 May 2016 01:37:15 +0000 (UTC) From: "Ian Delaney" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Delaney" Message-ID: <1463621779.0b6c7701bc3aa2884adf4c5507fd80bccd69c967.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/miller/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/miller/Manifest sys-apps/miller/metadata.xml sys-apps/miller/miller-4.0.0.ebuild X-VCS-Directories: sys-apps/miller/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 0b6c7701bc3aa2884adf4c5507fd80bccd69c967 X-VCS-Branch: master Date: Thu, 19 May 2016 01:37:15 +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: ebd1cb6f-67ff-4d32-8f97-ec7c49b003e2 X-Archives-Hash: d34ac96e778fd9e4ab2f1e7c1c5a0d20 commit: 0b6c7701bc3aa2884adf4c5507fd80bccd69c967 Author: Jan Chren gmail com> AuthorDate: Wed May 18 12:48:27 2016 +0000 Commit: Ian Delaney gentoo org> CommitDate: Thu May 19 01:36:19 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b6c7701 sys-apps/miller: new package, initial vn. 4.0.0 To be maintained under the Proxy Maintainers Project Initial ebuild / git patch submitted via the pull request Closes: https://github.com/gentoo/gentoo/pull/1484 Signed-off-by: Ian Delaney gentoo.org> sys-apps/miller/Manifest | 1 + sys-apps/miller/metadata.xml | 12 ++++++++ sys-apps/miller/miller-4.0.0.ebuild | 59 +++++++++++++++++++++++++++++++++++++ 3 files changed, 72 insertions(+) diff --git a/sys-apps/miller/Manifest b/sys-apps/miller/Manifest new file mode 100644 index 0000000..945c2fb --- /dev/null +++ b/sys-apps/miller/Manifest @@ -0,0 +1 @@ +DIST miller-4.0.0.tar.gz 3320261 SHA256 c702eb3423e96fb2f39d6339117fd7678ac1b63258d0bd9b8c76859993ec1a0c SHA512 13612c18ad1d995797a760618fe4ca44c845c03f35df79cc5e981fd9d224ba60b0f3dc57ae454d32877711d216b32de5c22520cd9906f9866a5b59a3f488edb2 WHIRLPOOL d6b7851436572ba1dfb83fac362408195d242065d5547e85363a809514bafab2d5085da1813048fa34616ecf879bf9b026630567e672b152dcfa26e427d99f1a diff --git a/sys-apps/miller/metadata.xml b/sys-apps/miller/metadata.xml new file mode 100644 index 0000000..ce15c23 --- /dev/null +++ b/sys-apps/miller/metadata.xml @@ -0,0 +1,12 @@ + + + + + dev.rindeal+gentoo@gmail.com + Jan Chren (rindeal) + + + proxy-maint@gentoo.org + Proxy Maintainers + + diff --git a/sys-apps/miller/miller-4.0.0.ebuild b/sys-apps/miller/miller-4.0.0.ebuild new file mode 100644 index 0000000..add619a --- /dev/null +++ b/sys-apps/miller/miller-4.0.0.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools + +DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..)" +HOMEPAGE="http://johnkerl.org/miller" +LICENSE="BSD-2" + +SLOT="0" +SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +KEYWORDS="~amd64 ~arm ~x86" +IUSE="doc test" + +DEPEND="sys-devel/flex" + +my_for_each_test_dir() { + local test_dirs=( c/{reg,unit}_test ) + if use test ; then + for d in "${test_dirs[@]}" ; do + pushd "${d}" >/dev/null || die + "${@}" || die + popd >/dev/null || die + done + fi +} + +src_prepare() { + default + + local sed_args=( + # respect FLAGS + -e '/.*FLAGS[^=]*=/ s:(-g|-pg|-O[0-9]) ::g' + ) + find -type f -name "Makefile.am" | xargs sed -r "${sed_args[@]}" -i -- + assert + + # disable docs rebuilding as they're shipped prebuilt + sed -e '/SUBDIRS[^=]*=/ s:doc::g' -i -- Makefile.am || die + + # disable building tests automagically + use test || sed -e '/SUBDIRS[^=]*=/ s:[^ ]*_test::g' -i -- c/Makefile.am || die + + eautoreconf +} + +src_test() { + my_for_each_test_dir emake check +} + +src_install() { + local HTML_DOCS=( $(usev doc) ) + + default +}