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 7E5B213832E for ; Sat, 30 Jul 2016 04:07:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8EE821C054; Sat, 30 Jul 2016 04:07:06 +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 B951621C04D for ; Sat, 30 Jul 2016 04:07:05 +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 AAFF0340D2F for ; Sat, 30 Jul 2016 04:07:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D36CE6B for ; Sat, 30 Jul 2016 04:07:01 +0000 (UTC) From: "Richard Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Farina" Message-ID: <1469851585.ed7e39a961cdd9ab8c1bce270c81609f302f5219.zerochaos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rex-arch/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/rex-arch/Manifest dev-ruby/rex-arch/metadata.xml dev-ruby/rex-arch/rex-arch-0.1.1.ebuild X-VCS-Directories: dev-ruby/rex-arch/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Richard Farina X-VCS-Revision: ed7e39a961cdd9ab8c1bce270c81609f302f5219 X-VCS-Branch: master Date: Sat, 30 Jul 2016 04:07:01 +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: e9ec42dd-c4ef-4099-a000-2adedf63399e X-Archives-Hash: 0f81d1b510f5fc24f15e9d82c41a3b29 commit: ed7e39a961cdd9ab8c1bce270c81609f302f5219 Author: Zero_Chaos gentoo org> AuthorDate: Sat Jul 30 03:27:07 2016 +0000 Commit: Richard Farina gentoo org> CommitDate: Sat Jul 30 04:06:25 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed7e39a9 dev-ruby/rex-arch: initial ebuild, metasploit dep Package-Manager: portage-2.3.0 dev-ruby/rex-arch/Manifest | 1 + dev-ruby/rex-arch/metadata.xml | 13 +++++++++++++ dev-ruby/rex-arch/rex-arch-0.1.1.ebuild | 30 ++++++++++++++++++++++++++++++ 3 files changed, 44 insertions(+) diff --git a/dev-ruby/rex-arch/Manifest b/dev-ruby/rex-arch/Manifest new file mode 100644 index 0000000..8595abb --- /dev/null +++ b/dev-ruby/rex-arch/Manifest @@ -0,0 +1 @@ +DIST rex-arch-0.1.1.gem 19968 SHA256 f502716c1d23e97e6082797a31edad61202ffdc2db3047641c2181e8500baf2a SHA512 ec6963d7256451dc35a768ba16ac6f44ccdb35d1be1427134f191b39a6b62f519db3de4529109bcddb5887afc6bdd65756c07ccc231425271aaee0838b7eec38 WHIRLPOOL d400643d3bc8b19c88394c9521295d9c4e702234153ba093c6216aa17f3f18d88cfb2100827b754802861273f832840cc9114f212a4e0acf8bde87fd828a7a36 diff --git a/dev-ruby/rex-arch/metadata.xml b/dev-ruby/rex-arch/metadata.xml new file mode 100644 index 0000000..4ddce1c --- /dev/null +++ b/dev-ruby/rex-arch/metadata.xml @@ -0,0 +1,13 @@ + + + + + zerochaos@gentoo.org + Rick Farina + + + + + rapid7/rex-arch + + diff --git a/dev-ruby/rex-arch/rex-arch-0.1.1.ebuild b/dev-ruby/rex-arch/rex-arch-0.1.1.ebuild new file mode 100644 index 0000000..1b81856 --- /dev/null +++ b/dev-ruby/rex-arch/rex-arch-0.1.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +USE_RUBY="ruby20 ruby21 ruby22 ruby23" +#RUBY_FAKEGEM_RECIPE_TEST="rspec3" +RUBY_FAKEGEM_TASK_DOC="" + +inherit ruby-fakegem + +DESCRIPTION="architecture specific information for Rex" +HOMEPAGE="https://rubygems.org/gems/rex-arch" + +LICENSE="BSD" + +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +# doesn't seem to actually run any tests +RESTRICT=test + +ruby_add_bdepend "dev-ruby/rex-text" + +all_ruby_install() { + ruby_fakegem_binwrapper console ${PN}-console + ruby_fakegem_binwrapper setup ${PN}-setup +}