public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] dev/graaff:master commit in: dev-ruby/draper/
Date: Fri, 21 Feb 2014 12:23:23 +0000 (UTC)	[thread overview]
Message-ID: <1392969100.6a1874df148b4ceedb36b346faa65ad9670f4925.graaff@gentoo> (raw)

commit:     6a1874df148b4ceedb36b346faa65ad9670f4925
Author:     Hans de Graaff <hans <AT> degraaff <DOT> org>
AuthorDate: Fri Feb 21 07:51:40 2014 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri Feb 21 07:51:40 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/graaff.git;a=commit;h=6a1874df

Version bump.

Package-Manager: portage-2.2.7

---
 dev-ruby/draper/ChangeLog           |  7 +++++-
 dev-ruby/draper/Manifest            |  1 +
 dev-ruby/draper/draper-1.3.0.ebuild | 47 +++++++++++++++++++++++++++++++++++++
 3 files changed, 54 insertions(+), 1 deletion(-)

diff --git a/dev-ruby/draper/ChangeLog b/dev-ruby/draper/ChangeLog
index 00f7bf8..d644731 100644
--- a/dev-ruby/draper/ChangeLog
+++ b/dev-ruby/draper/ChangeLog
@@ -1,7 +1,12 @@
 # ChangeLog for dev-ruby/draper
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*draper-1.3.0 (21 Feb 2014)
+
+  21 Feb 2014; Hans de Graaff <graaff@gentoo.org> +draper-1.3.0.ebuild:
+  Version bump.
+
   01 Nov 2013; Hans de Graaff <graaff@gentoo.org> -draper-0.14.0.ebuild,
   -draper-0.17.0.ebuild:
   Cleanup.

diff --git a/dev-ruby/draper/Manifest b/dev-ruby/draper/Manifest
index 47a4bd3..ebce5c6 100644
--- a/dev-ruby/draper/Manifest
+++ b/dev-ruby/draper/Manifest
@@ -1,2 +1,3 @@
 DIST draper-0.18.0.gem 26624 SHA256 32c3fb7931d1861b4b8e43d6141cc63439ac5572486846e2577ff9754fcd1e8c SHA512 d427f303b6fb5769194ac7dc44facc75c3c060cd77ff62a7e08ec621a78723d2897d58125c5f713036df15290f25ece71fb98ff9eda236a78e9c86a628dfd62e WHIRLPOOL 344328debc6a7e3e56e73016857325a8aeb6bdd76188756d0a7e3d736896caa9262f47e953fb57b02c453d31ca955737c86f206cd4975782d04bc8a43de454cb
 DIST draper-1.2.1.gem 53760 SHA256 d5bdeeb054eb6b9acd998cda768c69768946d55952fdc46b8a801bea5c06ddbd SHA512 57f63818ef2c1dcd038da404b5d411a41c9d6ea0988249e5ef1ea360129d329684ddb3d41dd7e7dd5298757720cbf6283762c48014316246735b6fabd64bec51 WHIRLPOOL f7f0980ecac535def962529563c95a5cadbb0238badaef642daa059ed635888cb4e1a2c4261fbabe1f851217175afcb5bebaf3a6374d8065bc9f7a17779cfb94
+DIST draper-1.3.0.gem 54784 SHA256 2161deafd9cc9d5288af03fa3c30db648aa2243ddaeacab6f63d07a884b6231f SHA512 6fc7a6afa3dd8c7227178849458692248dcd4c4527c3f1515cabdf82164a553e05e9a50b3834218484ad3cc79651455f870a8c4c03c5849a7e8e58c85126632f WHIRLPOOL c50d603e56060cb02aa889ef645cdf563c9830268ef882ce17869ca27e3fc69c4b64ffccd84947feaf1065c23d77e354d650a10d79178b5347d58ebd2c6a61dd

diff --git a/dev-ruby/draper/draper-1.3.0.ebuild b/dev-ruby/draper/draper-1.3.0.ebuild
new file mode 100644
index 0000000..c31feb6
--- /dev/null
+++ b/dev-ruby/draper/draper-1.3.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header:  $
+
+EAPI=5
+USE_RUBY="ruby19"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_RECIPE_TEST="rspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="View Models for Rails"
+HOMEPAGE="https://github.com/drapergem/draper"
+LICENSE="MIT"
+
+KEYWORDS="~amd64"
+SLOT="1"
+IUSE="test"
+
+ruby_add_rdepend "
+	>=dev-ruby/actionpack-3.2
+	dev-ruby/active_model_serializers
+	>=dev-ruby/activesupport-3.2
+	>=dev-ruby/request_store-1.0.3"
+
+ruby_add_bdepend "test? (
+		>=dev-ruby/ammeter-0.2.2
+		>=dev-ruby/railties-3.2
+	)"
+
+all_ruby_prepare() {
+	rm Gemfile || die
+	sed -i -e '/[Bb]undler/ s:^:#:' spec/spec_helper.rb || die
+	sed -i -e '3i require "draper"' spec/spec_helper.rb || die
+
+	# Avoid tests also failing on 1.2.1 which we already use. Could be
+	# more precise for the 4 specific specs failing.
+	rm spec/draper/{decorator,decoratable}_spec.rb || die
+}
+
+each_ruby_test() {
+	${RUBY} -S rspec spec/draper || die
+}


             reply	other threads:[~2014-02-21 12:23 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-21 12:23 Hans de Graaff [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-07-26 18:12 [gentoo-commits] dev/graaff:master commit in: dev-ruby/draper/ Hans de Graaff
2016-07-26 18:12 Hans de Graaff
2015-06-10  6:50 Hans de Graaff
2015-04-17 13:02 Hans de Graaff
2015-04-17 13:02 Hans de Graaff
2014-09-24  7:31 Hans de Graaff
2014-09-24  7:31 Hans de Graaff
2014-06-18  9:32 Hans de Graaff
2013-11-01  7:33 Hans de Graaff
2013-06-28 13:18 Hans de Graaff
2012-11-14 15:20 Hans de Graaff
2012-09-10  8:45 Hans de Graaff
2012-09-10  8:45 Hans de Graaff
2012-08-28 14:11 Hans de Graaff
2012-07-05  8:47 Hans de Graaff

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1392969100.6a1874df148b4ceedb36b346faa65ad9670f4925.graaff@gentoo \
    --to=graaff@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox