From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 92D641381F3 for ; Sat, 15 Dec 2012 11:05:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC8C521C04B; Sat, 15 Dec 2012 11:05:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4AB9A21C04B for ; Sat, 15 Dec 2012 11:05:22 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 288D133DCC3 for ; Sat, 15 Dec 2012 11:05:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id B9B02E543C for ; Sat, 15 Dec 2012 11:05:19 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1355569505.370e056886fefe022bc24478856bff2623bc5e69.graaff@gentoo> Subject: [gentoo-commits] proj/ruby-overlay:master commit in: dev-ruby/bundler/ X-VCS-Repository: proj/ruby-overlay X-VCS-Files: dev-ruby/bundler/ChangeLog dev-ruby/bundler/bundler-1.2.0.ebuild dev-ruby/bundler/metadata.xml X-VCS-Directories: dev-ruby/bundler/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 370e056886fefe022bc24478856bff2623bc5e69 X-VCS-Branch: master Date: Sat, 15 Dec 2012 11:05:19 +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: ce9078bd-6abc-4353-8bcc-cbc2dd4fda32 X-Archives-Hash: 2b7b5e5ba784e37c600efc19bca856f2 commit: 370e056886fefe022bc24478856bff2623bc5e69 Author: Hans de Graaff degraaff org> AuthorDate: Sat Dec 15 11:05:05 2012 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Dec 15 11:05:05 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/ruby-overlay.git;a=commit;h=370e0568 A newer version is now in the Gentoo tree. --- dev-ruby/bundler/ChangeLog | 7 ----- dev-ruby/bundler/bundler-1.2.0.ebuild | 45 --------------------------------- dev-ruby/bundler/metadata.xml | 5 --- 3 files changed, 0 insertions(+), 57 deletions(-) diff --git a/dev-ruby/bundler/ChangeLog b/dev-ruby/bundler/ChangeLog deleted file mode 100644 index 8453f8d..0000000 --- a/dev-ruby/bundler/ChangeLog +++ /dev/null @@ -1,7 +0,0 @@ -# ChangeLog for dev-ruby/bundler -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler/ChangeLog,v 1.41 2012/08/14 03:10:38 flameeyes Exp $ - -*bundler-1.2.0 (03 Sep 2012) - 03 Sep 2012; Michel Boaventura +bundler-1.2.0.ebuild +Manifest +Changelog +metadata.xml: - Version bump diff --git a/dev-ruby/bundler/bundler-1.2.0.ebuild b/dev-ruby/bundler/bundler-1.2.0.ebuild deleted file mode 100644 index 45675dd..0000000 --- a/dev-ruby/bundler/bundler-1.2.0.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler/bundler-1.1.5.ebuild,v 1.2 2012/08/14 03:10:38 flameeyes Exp $ - -EAPI=4 - -# jruby → needs to be tested because jruby-1.5.1 fails in multiple -# ways unrelated to this package. - -USE_RUBY="ruby18 ruby19 ree18" - -RUBY_FAKEGEM_RECIPE_TEST="rspec" - -# No documentation task -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md ISSUES.md UPGRADING.md" - -inherit ruby-fakegem - -DESCRIPTION="An easy way to vendor gem dependencies" -HOMEPAGE="http://github.com/carlhuda/bundler" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -ruby_add_rdepend virtual/rubygems - -ruby_add_bdepend "test? ( app-text/ronn )" - -RDEPEND+=" dev-vcs/git" -DEPEND+=" test? ( dev-vcs/git )" - -all_ruby_prepare() { - # Bundler only supports running the specs from git: - # http://github.com/carlhuda/bundler/issues/issue/738 - sed -i -e '751s/should/should_not/' spec/runtime/setup_spec.rb || die - - # Fails randomly and no clear cause can be found. Might be related - # to bug 346357. This was broken in previous releases without a - # failing spec, so patch out this spec for now since it is not a - # regression. - sed -i -e '/works when you bundle exec bundle/,/^ end/ s:^:#:' spec/install/deploy_spec.rb || die -} diff --git a/dev-ruby/bundler/metadata.xml b/dev-ruby/bundler/metadata.xml deleted file mode 100644 index 8521361..0000000 --- a/dev-ruby/bundler/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - -ruby -