From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A5C061395E1 for ; Mon, 31 Oct 2016 07:35:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9392E0C22; Mon, 31 Oct 2016 07:35:08 +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 C32E5E0C22 for ; Mon, 31 Oct 2016 07:35:08 +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 E71D8340F98 for ; Mon, 31 Oct 2016 07:35:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E0CE77D2 for ; Mon, 31 Oct 2016 07:35:03 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1477899179.23a0534045ba68ab395fd445c0e60b95ea0988e4.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/ripgrep/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/ripgrep/Manifest sys-apps/ripgrep/metadata.xml sys-apps/ripgrep/ripgrep-0.2.5.ebuild X-VCS-Directories: sys-apps/ripgrep/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 23a0534045ba68ab395fd445c0e60b95ea0988e4 X-VCS-Branch: master Date: Mon, 31 Oct 2016 07:35:03 +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: 1140a6ef-7730-494f-8ef8-ef0e363831a6 X-Archives-Hash: 0f9dd766090eb49a3c9390ff580063e0 commit: 23a0534045ba68ab395fd445c0e60b95ea0988e4 Author: Tim Harder gentoo org> AuthorDate: Mon Oct 31 07:11:34 2016 +0000 Commit: Tim Harder gentoo org> CommitDate: Mon Oct 31 07:32:59 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23a05340 sys-apps/ripgrep: initial import sys-apps/ripgrep/Manifest | 1 + sys-apps/ripgrep/metadata.xml | 11 +++++++++++ sys-apps/ripgrep/ripgrep-0.2.5.ebuild | 30 ++++++++++++++++++++++++++++++ 3 files changed, 42 insertions(+) diff --git a/sys-apps/ripgrep/Manifest b/sys-apps/ripgrep/Manifest new file mode 100644 index 00000000..5c805b9 --- /dev/null +++ b/sys-apps/ripgrep/Manifest @@ -0,0 +1 @@ +DIST ripgrep-0.2.5.tar.gz 389606 SHA256 2e535701ed4c36875a29041b4a47629af514182177b82d681a8e4d0fed4a9767 SHA512 c5359ab5120ed355c8e72fded34c311440b357244be6b3950732953b8b6cd558d429e4c6e86737983bdea9118f58e4f26048c4b2374559cf8e14146afcc20fec WHIRLPOOL c5ead5378942cf9f75bd1681e9d18e58704597dc7512c50edfbf3600d326519fa8493fa7d61addef81b19650fdfcd000a5dbfd905f5d50194ad88a062fefe4c4 diff --git a/sys-apps/ripgrep/metadata.xml b/sys-apps/ripgrep/metadata.xml new file mode 100644 index 00000000..7cecc57 --- /dev/null +++ b/sys-apps/ripgrep/metadata.xml @@ -0,0 +1,11 @@ + + + + + radhermit@gentoo.org + Tim Harder + + + BurntSushi/ripgrep + + diff --git a/sys-apps/ripgrep/ripgrep-0.2.5.ebuild b/sys-apps/ripgrep/ripgrep-0.2.5.ebuild new file mode 100644 index 00000000..bb241f2 --- /dev/null +++ b/sys-apps/ripgrep/ripgrep-0.2.5.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit cargo + +DESCRIPTION="a command line search tool that combines usability with raw speed" +HOMEPAGE="https://github.com/BurntSushi/ripgrep" +SRC_URI="https://github.com/BurntSushi/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="|| ( MIT Unlicense )" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="dev-util/cargo" + +src_compile() { + cargo build --release || die +} + +src_test() { + cargo test || die "tests failed" +} + +src_install() { + dobin target/release/rg + doman doc/rg.1 +}