Received: by mail.netbsd.org (Postfix, from userid 605) id 4929784D5F; Fri, 13 Oct 2017 16:29:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CF2A284D5A for ; Fri, 13 Oct 2017 16:29:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id VgDPQJSr_6rF for ; Fri, 13 Oct 2017 16:29:08 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 254F684CE1 for ; Fri, 13 Oct 2017 16:29:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1C5B9FBC7; Fri, 13 Oct 2017 16:29:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150791214884010" MIME-Version: 1.0 Date: Fri, 13 Oct 2017 16:29:08 +0000 From: "Min Sik Kim" Subject: CVS commit: pkgsrc/security/ruby-rex-ole To: pkgsrc-changes@NetBSD.org Reply-To: minskim@netbsd.org X-Mailer: log_accum Message-Id: <20171013162908.1C5B9FBC7@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_150791214884010 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: minskim Date: Fri Oct 13 16:29:08 UTC 2017 Added Files: pkgsrc/security/ruby-rex-ole: DESCR Makefile PLIST distinfo Log Message: security/ruby-rex-ole: Import version 0.1.6 Ruby Exploitation(Rex) Library which contains architecture specific information such as registers, opcodes, and stack manipulation routines. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/security/ruby-rex-ole/DESCR \ pkgsrc/security/ruby-rex-ole/Makefile pkgsrc/security/ruby-rex-ole/PLIST \ pkgsrc/security/ruby-rex-ole/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150791214884010 Content-Disposition: inline Content-Length: 3108 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/security/ruby-rex-ole/DESCR diff -u /dev/null pkgsrc/security/ruby-rex-ole/DESCR:1.1 --- /dev/null Fri Oct 13 16:29:08 2017 +++ pkgsrc/security/ruby-rex-ole/DESCR Fri Oct 13 16:29:07 2017 @@ -0,0 +1,3 @@ +Ruby Exploitation(Rex) Library which contains architecture specific +information such as registers, opcodes, and stack manipulation +routines. Index: pkgsrc/security/ruby-rex-ole/Makefile diff -u /dev/null pkgsrc/security/ruby-rex-ole/Makefile:1.1 --- /dev/null Fri Oct 13 16:29:08 2017 +++ pkgsrc/security/ruby-rex-ole/Makefile Fri Oct 13 16:29:07 2017 @@ -0,0 +1,14 @@ +# $NetBSD: Makefile,v 1.1 2017/10/13 16:29:07 minskim Exp $ + +DISTNAME= rex-ole-0.1.6 +CATEGORIES= security + +MAINTAINER= minskim@NetBSD.org +HOMEPAGE= https://github.com/rapid7/rex-ole +COMMENT= Rex Library for reading/writing OLE files and streams +LICENSE= modified-bsd + +DEPENDS+= ${RUBY_PKGPREFIX}-rex-text-[0-9]*:../../security/ruby-rex-text + +.include "../../lang/ruby/gem.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/security/ruby-rex-ole/PLIST diff -u /dev/null pkgsrc/security/ruby-rex-ole/PLIST:1.1 --- /dev/null Fri Oct 13 16:29:08 2017 +++ pkgsrc/security/ruby-rex-ole/PLIST Fri Oct 13 16:29:07 2017 @@ -0,0 +1,34 @@ +@comment $NetBSD: PLIST,v 1.1 2017/10/13 16:29:07 minskim Exp $ +${GEM_HOME}/cache/${GEM_NAME}.gem +${GEM_LIBDIR}/.gitignore +${GEM_LIBDIR}/.rspec +${GEM_LIBDIR}/.travis.yml +${GEM_LIBDIR}/CODE_OF_CONDUCT.md +${GEM_LIBDIR}/Gemfile +${GEM_LIBDIR}/LICENSE +${GEM_LIBDIR}/README.md +${GEM_LIBDIR}/Rakefile +${GEM_LIBDIR}/bin/console +${GEM_LIBDIR}/bin/setup +${GEM_LIBDIR}/lib/rex/ole.rb +${GEM_LIBDIR}/lib/rex/ole/clsid.rb +${GEM_LIBDIR}/lib/rex/ole/difat.rb +${GEM_LIBDIR}/lib/rex/ole/directory.rb +${GEM_LIBDIR}/lib/rex/ole/direntry.rb +${GEM_LIBDIR}/lib/rex/ole/docs/dependencies.txt +${GEM_LIBDIR}/lib/rex/ole/docs/references.txt +${GEM_LIBDIR}/lib/rex/ole/fat.rb +${GEM_LIBDIR}/lib/rex/ole/header.rb +${GEM_LIBDIR}/lib/rex/ole/minifat.rb +${GEM_LIBDIR}/lib/rex/ole/propset.rb +${GEM_LIBDIR}/lib/rex/ole/samples/create_ole.rb +${GEM_LIBDIR}/lib/rex/ole/samples/dir.rb +${GEM_LIBDIR}/lib/rex/ole/samples/dump_stream.rb +${GEM_LIBDIR}/lib/rex/ole/samples/ole_info.rb +${GEM_LIBDIR}/lib/rex/ole/storage.rb +${GEM_LIBDIR}/lib/rex/ole/stream.rb +${GEM_LIBDIR}/lib/rex/ole/substorage.rb +${GEM_LIBDIR}/lib/rex/ole/util.rb +${GEM_LIBDIR}/lib/rex/ole/version.rb +${GEM_LIBDIR}/rex-ole.gemspec +${GEM_HOME}/specifications/${GEM_NAME}.gemspec Index: pkgsrc/security/ruby-rex-ole/distinfo diff -u /dev/null pkgsrc/security/ruby-rex-ole/distinfo:1.1 --- /dev/null Fri Oct 13 16:29:08 2017 +++ pkgsrc/security/ruby-rex-ole/distinfo Fri Oct 13 16:29:07 2017 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2017/10/13 16:29:07 minskim Exp $ + +SHA1 (rex-ole-0.1.6.gem) = f602ea4796f27d4405123b5ec6bbbae23e1332de +RMD160 (rex-ole-0.1.6.gem) = ece061a7b16d6715eaad0adeb1d947357846ff0d +SHA512 (rex-ole-0.1.6.gem) = 5fae70ec85058e3dca08fdedd595fb27b46de263aa727fd291606d4f8f226bc0d9a2f135bf4673a8e389d6a2e932e7514eb97954f765c1ce9401233ac2cd7da1 +Size (rex-ole-0.1.6.gem) = 26112 bytes --_----------=_150791214884010--