graaff 15/06/11 06:00:36 Modified: ChangeLog Added: dalli-2.7.4-r1.ebuild Log: Revision bump for missing connection_pool test dependency. Dropped alpha, arm, hppa, ppc, ppc64, x86 keywords, bug 551722. (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Revision Changes Path 1.15 dev-ruby/dalli/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/dalli/ChangeLog?rev=1.15&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/dalli/ChangeLog?rev=1.15&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/dalli/ChangeLog?r1=1.14&r2=1.15 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-ruby/dalli/ChangeLog,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- ChangeLog 7 Jun 2015 17:36:32 -0000 1.14 +++ ChangeLog 11 Jun 2015 06:00:36 -0000 1.15 @@ -1,6 +1,12 @@ # ChangeLog for dev-ruby/dalli # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/dalli/ChangeLog,v 1.14 2015/06/07 17:36:32 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/dalli/ChangeLog,v 1.15 2015/06/11 06:00:36 graaff Exp $ + +*dalli-2.7.4-r1 (11 Jun 2015) + + 11 Jun 2015; Hans de Graaff <gra...@gentoo.org> +dalli-2.7.4-r1.ebuild: + Revision bump for missing connection_pool test dependency. Dropped alpha, + arm, hppa, ppc, ppc64, x86 keywords, bug 551722. 07 Jun 2015; Justin Lecher <j...@gentoo.org> metadata.xml: Add github to remote-id in metadata.xml 1.1 dev-ruby/dalli/dalli-2.7.4-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/dalli/dalli-2.7.4-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/dalli/dalli-2.7.4-r1.ebuild?rev=1.1&content-type=text/plain Index: dalli-2.7.4-r1.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/dalli/dalli-2.7.4-r1.ebuild,v 1.1 2015/06/11 06:00:36 graaff Exp $ EAPI=5 USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_TASK_TEST="test" RUBY_FAKEGEM_DOCDIR="doc" RUBY_FAKEGEM_EXTRADOC="History.md Performance.md README.md" inherit ruby-fakegem DESCRIPTION="A high performance pure Ruby client for accessing memcached servers" HOMEPAGE="https://github.com/mperham/dalli" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" IUSE="" DEPEND+="${DEPEND} test? ( >=net-misc/memcached-1.4.0 )" ruby_add_bdepend "test? ( dev-ruby/minitest:5 >=dev-ruby/mocha-0.13 >=dev-ruby/activesupport-4.1 dev-ruby/connection_pool )" all_ruby_prepare() { chmod 0755 "${HOME}" || die "Failed to fix permissions on home" sed -i -e '/\(appraisal\|bundler\)/ s:^:#:' Rakefile || die sed -i -e '1igem "minitest", "~> 5.0"' test/helper.rb || die # Drop rails dependency which is only used to display the version # number, so we only need to depend on activesupport and avoid # complicated circular dependencies. sed -i -e '/rails/I s:^:#:' test/helper.rb || die }