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 D769613832F for ; Sat, 30 Jul 2016 04:07:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B62521C043; 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 9AD7321C043 for ; Sat, 30 Jul 2016 04:07:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 773D5340C8A 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 3F3881B9B 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: <1469851587.54e7c6c70dff80a46a8545fa5d18b122343a8f04.zerochaos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rex-ole/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/rex-ole/Manifest dev-ruby/rex-ole/metadata.xml dev-ruby/rex-ole/rex-ole-0.1.2.ebuild X-VCS-Directories: dev-ruby/rex-ole/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Richard Farina X-VCS-Revision: 54e7c6c70dff80a46a8545fa5d18b122343a8f04 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: df109537-4768-4e6f-82a6-5e62d5daa7ba X-Archives-Hash: f78e140a9f114754e2c88411da2699db commit: 54e7c6c70dff80a46a8545fa5d18b122343a8f04 Author: Zero_Chaos gentoo org> AuthorDate: Sat Jul 30 03:30:37 2016 +0000 Commit: Richard Farina gentoo org> CommitDate: Sat Jul 30 04:06:27 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54e7c6c7 dev-ruby/rex-ole: initial ebuild, metasploit dep Package-Manager: portage-2.3.0 dev-ruby/rex-ole/Manifest | 1 + dev-ruby/rex-ole/metadata.xml | 13 +++++++++++++ dev-ruby/rex-ole/rex-ole-0.1.2.ebuild | 30 ++++++++++++++++++++++++++++++ 3 files changed, 44 insertions(+) diff --git a/dev-ruby/rex-ole/Manifest b/dev-ruby/rex-ole/Manifest new file mode 100644 index 0000000..6cef638 --- /dev/null +++ b/dev-ruby/rex-ole/Manifest @@ -0,0 +1 @@ +DIST rex-ole-0.1.2.gem 26112 SHA256 f8517fb9d6c252ac85f0076d3b654df4e50330f87142fde960f7663f44ce80b1 SHA512 efb8c5977d71e32e6e78edff42f6ef0bb1a7179b3309ad2a33f50958ba039c919967ce6b7161a3959088705e17ed6560aab8434ea593de39b41c5a30e04b6dbb WHIRLPOOL e974d2e0a38951f69b4082b847a0c9daac37bb7df3d1687ba3022ffc54b6b89e9bfe90c5824fa1fedc9e94af257752cf38855ebdba456090bddbf989f05fc02c diff --git a/dev-ruby/rex-ole/metadata.xml b/dev-ruby/rex-ole/metadata.xml new file mode 100644 index 0000000..521209b --- /dev/null +++ b/dev-ruby/rex-ole/metadata.xml @@ -0,0 +1,13 @@ + + + + + zerochaos@gentoo.org + Rick Farina + + + + + rapid7/rex-ole + + diff --git a/dev-ruby/rex-ole/rex-ole-0.1.2.ebuild b/dev-ruby/rex-ole/rex-ole-0.1.2.ebuild new file mode 100644 index 0000000..80d7854 --- /dev/null +++ b/dev-ruby/rex-ole/rex-ole-0.1.2.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="Ruby Exploitation(Rex) library gem for reading/writing OLE files and streams" +HOMEPAGE="https://rubygems.org/gems/rex-ole" + +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 +}