graaff 15/03/08 08:27:29 Modified: ChangeLog Added: mongo-1.12.0.ebuild Log: Version bump. Add ruby20, ruby21. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Revision Changes Path 1.9 dev-ruby/mongo/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mongo/ChangeLog?rev=1.9&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mongo/ChangeLog?rev=1.9&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mongo/ChangeLog?r1=1.8&r2=1.9 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-ruby/mongo/ChangeLog,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- ChangeLog 5 Aug 2014 16:00:35 -0000 1.8 +++ ChangeLog 8 Mar 2015 08:27:29 -0000 1.9 @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/mongo -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mongo/ChangeLog,v 1.8 2014/08/05 16:00:35 mrueg Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mongo/ChangeLog,v 1.9 2015/03/08 08:27:29 graaff Exp $ + +*mongo-1.12.0 (08 Mar 2015) + + 08 Mar 2015; Hans de Graaff <[email protected]> +mongo-1.12.0.ebuild: + Version bump. Add ruby20, ruby21. 05 Aug 2014; Manuel RĂ¼ger <[email protected]> mongo-1.6.2.ebuild: Remove trailing '.' from DESCRIPTION. 1.1 dev-ruby/mongo/mongo-1.12.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mongo/mongo-1.12.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mongo/mongo-1.12.0.ebuild?rev=1.1&content-type=text/plain Index: mongo-1.12.0.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/mongo/mongo-1.12.0.ebuild,v 1.1 2015/03/08 08:27:29 graaff Exp $ EAPI=5 USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_TASK_TEST="test:unit" RUBY_FAKEGEM_RECIPE_DOC="rdoc" RUBY_FAKEGEM_EXTRADOC="" RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" GITHUB_USER="mongodb" GITHUB_PROJECT="mongo-ruby-driver" RUBY_S="${GITHUB_USER}-${GITHUB_PROJECT}-*" inherit ruby-fakegem DESCRIPTION="A Ruby driver for MongoDB" HOMEPAGE="http://www.mongodb.org/" SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_PROJECT}/archive/v${PV}.tar.gz -> ${GITHUB_PROJECT}-${PV}.tar.gz" LICENSE="APSL-2" SLOT="0" KEYWORDS="~amd64" IUSE="test" # This is the same source package as bson, so keep them the same # version, but not revision ruby_add_rdepend "~dev-ruby/bson-${PV}" ruby_add_bdepend \ "test? ( dev-ruby/bundler >=dev-ruby/rake-10.1 dev-ruby/sfl >=dev-ruby/shoulda-3.3.2 dev-ruby/mocha dev-ruby/test-unit:2 )" all_ruby_prepare() { # remove the stuff that is actually part of dev-ruby/bson rm -f bin/{b2j,j2b}son || die # Avoid test dependency on pry sed -i -e '/\(pry\|coverall\)/I s:^:#:' Gemfile tasks/testing.rake test/test_helper.rb || die # Avoid deployment dependencies and fix version issues sed -i -e '/rest-client/ s/1.6.8/~> 1.6/' \ -e '/test-unit/ s/~>2.0/>= 2.0/' \ -e '/rake/ s/10.1.1/~>10.1/' \ -e '/:deploy/,/end/ s:^:#:' Gemfile || die } each_ruby_test() { JENKINS_CI=true ${RUBY} -S rake test:unit || die "Tests failed." } each_ruby_install() { # Remove bson code used for testing. This is installed as part of # dev-ruby/bson. rm -rf lib/bson* || die each_fakegem_install }
