From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-919230-garchives=archives.gentoo.org@lists.gentoo.org> 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 E8C20139085 for <garchives@archives.gentoo.org>; Sat, 24 Dec 2016 13:55:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 432F3E0D12; Sat, 24 Dec 2016 13:55:46 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 1C2E4E0D12 for <gentoo-commits@lists.gentoo.org>; Sat, 24 Dec 2016 13:55:45 +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 098DD341117 for <gentoo-commits@lists.gentoo.org>; Sat, 24 Dec 2016 13:55:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D0351F2F for <gentoo-commits@lists.gentoo.org>; Sat, 24 Dec 2016 13:55:42 +0000 (UTC) From: "Manuel Rüger" <mrueg@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" <mrueg@gentoo.org> Message-ID: <1482587729.ca1f2fe3d3d52e58c6b186b831e2b67e2c75dcd4.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/mechanize/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/mechanize/mechanize-2.7.5-r1.ebuild X-VCS-Directories: dev-ruby/mechanize/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: ca1f2fe3d3d52e58c6b186b831e2b67e2c75dcd4 X-VCS-Branch: master Date: Sat, 24 Dec 2016 13:55:42 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 909ec82d-74c8-4ea0-b8f9-ce4c09365b8e X-Archives-Hash: e8c823ec1e29367495c9f37419977e0b commit: ca1f2fe3d3d52e58c6b186b831e2b67e2c75dcd4 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org> AuthorDate: Sat Dec 24 13:55:29 2016 +0000 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org> CommitDate: Sat Dec 24 13:55:29 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca1f2fe3 dev-ruby/mechanize: Add ruby23 Package-Manager: portage-2.3.3 dev-ruby/mechanize/mechanize-2.7.5-r1.ebuild | 39 ++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/dev-ruby/mechanize/mechanize-2.7.5-r1.ebuild b/dev-ruby/mechanize/mechanize-2.7.5-r1.ebuild new file mode 100644 index 00000000..d185ac7 --- /dev/null +++ b/dev-ruby/mechanize/mechanize-2.7.5-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +USE_RUBY="ruby21 ruby22 ruby23" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" + +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.rdoc EXAMPLES.rdoc GUIDE.rdoc README.rdoc" + +inherit ruby-fakegem + +DESCRIPTION="A Ruby library used for automating interaction with websites" +HOMEPAGE="https://github.com/sparklemotion/mechanize" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" +IUSE="" + +ruby_add_bdepend ">=dev-ruby/hoe-3.7 + test? ( dev-ruby/minitest:5 )" +ruby_add_rdepend ">=dev-ruby/nokogiri-1.6 + >=dev-ruby/net-http-digest_auth-1.1.1 + >=dev-ruby/net-http-persistent-2.5.2 + >=dev-ruby/ntlm-http-0.1.1 + >=dev-ruby/webrobots-0.0.9 + >=dev-ruby/http-cookie-1.0.2 + >=dev-ruby/mime-types-1.17.2:* + >=dev-ruby/domain_name-0.5.1" + +all_ruby_install() { + all_fakegem_install + + docinto examples + dodoc examples/* || die +}