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 43E61138A1F for ; Thu, 24 Apr 2014 14:43:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 086B6E0942; Thu, 24 Apr 2014 14:43:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9EF88E0942 for ; Thu, 24 Apr 2014 14:43:39 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B362133FEFE for ; Thu, 24 Apr 2014 14:43:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 067AA1818D for ; Thu, 24 Apr 2014 14:43:37 +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: <1398350603.c8c70c35a0158765826dd7a3ed7a42bf374beb1e.graaff@gentoo> Subject: [gentoo-commits] dev/graaff:master commit in: dev-ruby/acts-as-taggable-on/ X-VCS-Repository: dev/graaff X-VCS-Files: dev-ruby/acts-as-taggable-on/ChangeLog dev-ruby/acts-as-taggable-on/acts-as-taggable-on-3.1.1-r1.ebuild X-VCS-Directories: dev-ruby/acts-as-taggable-on/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: c8c70c35a0158765826dd7a3ed7a42bf374beb1e X-VCS-Branch: master Date: Thu, 24 Apr 2014 14:43:37 +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: c42f7065-6781-4e58-8d60-1fdebda55feb X-Archives-Hash: 1f052ddcc6ddc1434b735e120b86e418 commit: c8c70c35a0158765826dd7a3ed7a42bf374beb1e Author: Hans de Graaff degraaff org> AuthorDate: Thu Apr 24 14:43:23 2014 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Thu Apr 24 14:43:23 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/graaff.git;a=commit;h=c8c70c35 Intall the db migrations as well. Package-Manager: portage-2.2.8-r1 --- dev-ruby/acts-as-taggable-on/ChangeLog | 6 ++++ .../acts-as-taggable-on-3.1.1-r1.ebuild | 38 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) diff --git a/dev-ruby/acts-as-taggable-on/ChangeLog b/dev-ruby/acts-as-taggable-on/ChangeLog index 6f0e402..9b0c5cc 100644 --- a/dev-ruby/acts-as-taggable-on/ChangeLog +++ b/dev-ruby/acts-as-taggable-on/ChangeLog @@ -2,6 +2,12 @@ # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*acts-as-taggable-on-3.1.1-r1 (24 Apr 2014) + + 24 Apr 2014; Hans de Graaff + +acts-as-taggable-on-3.1.1-r1.ebuild: + Intall the db migrations as well. + *acts-as-taggable-on-3.1.1 (11 Apr 2014) 11 Apr 2014; Hans de Graaff diff --git a/dev-ruby/acts-as-taggable-on/acts-as-taggable-on-3.1.1-r1.ebuild b/dev-ruby/acts-as-taggable-on/acts-as-taggable-on-3.1.1-r1.ebuild new file mode 100644 index 0000000..afe6080 --- /dev/null +++ b/dev-ruby/acts-as-taggable-on/acts-as-taggable-on-3.1.1-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 +USE_RUBY="ruby19" + +RUBY_FAKEGEM_RECIPE_TEST="rspec" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md UPGRADING.md" + +RUBY_FAKEGEM_EXTRAINSTALL="db" + +inherit ruby-fakegem + +DESCRIPTION="Advanced tagging for Rails." +HOMEPAGE="https://github.com/mbleigh/acts-as-taggable-on/" + +LICENSE="MIT" +SLOT="3" +KEYWORDS="~amd64" +IUSE="" + +# Compatibility issues with rspec-rails and test-unit autorunner. +RESTRICT="test" + +ruby_add_rdepend ">=dev-ruby/rails-3 =dev-ruby/ammeter-0.1.3 dev-ruby/activerecord[sqlite3] )" + +all_ruby_prepare() { + sed -i -e '/git ls-files/d' ${PN}.gemspec || die + + # Provide a database.yml file for sqlite3. + cp spec/database.yml.sample spec/database.yml || die + sed -i -e '/^mysql/,$d' spec/database.yml || die +}