diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2014-08-30 10:14:22 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2014-08-30 10:14:22 +0000 |
commit | 7227354bec142bd8470fabcb33e32d20b61bdae2 (patch) | |
tree | 9e624cf548f72a6c61d8c049506d95599cb2d2e8 /dev-ruby/prawn-table | |
parent | Version bump (diff) | |
download | gentoo-2-7227354bec142bd8470fabcb33e32d20b61bdae2.tar.gz gentoo-2-7227354bec142bd8470fabcb33e32d20b61bdae2.tar.bz2 gentoo-2-7227354bec142bd8470fabcb33e32d20b61bdae2.zip |
Version bump.
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-ruby/prawn-table')
-rw-r--r-- | dev-ruby/prawn-table/ChangeLog | 8 | ||||
-rw-r--r-- | dev-ruby/prawn-table/prawn-table-0.1.1.ebuild | 31 |
2 files changed, 38 insertions, 1 deletions
diff --git a/dev-ruby/prawn-table/ChangeLog b/dev-ruby/prawn-table/ChangeLog index 30158d17440d..164fea74e09a 100644 --- a/dev-ruby/prawn-table/ChangeLog +++ b/dev-ruby/prawn-table/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-ruby/prawn-table # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/prawn-table/ChangeLog,v 1.5 2014/08/19 12:16:31 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/prawn-table/ChangeLog,v 1.6 2014/08/30 10:14:22 mrueg Exp $ + +*prawn-table-0.1.1 (30 Aug 2014) + + 30 Aug 2014; Manuel Rüger <mrueg@gentoo.org> +prawn-table-0.1.1.ebuild, + prawn-table-0.1.0.ebuild: + Version bump. 19 Aug 2014; Raúl Porcel <armin76@gentoo.org> prawn-table-0.1.0.ebuild: Drop alpha/ia64/sparc diff --git a/dev-ruby/prawn-table/prawn-table-0.1.1.ebuild b/dev-ruby/prawn-table/prawn-table-0.1.1.ebuild new file mode 100644 index 000000000000..1867bad18627 --- /dev/null +++ b/dev-ruby/prawn-table/prawn-table-0.1.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/prawn-table/prawn-table-0.1.1.ebuild,v 1.1 2014/08/30 10:14:22 mrueg Exp $ + +EAPI=5 +USE_RUBY="ruby19 ruby20 ruby21" + +RUBY_FAKEGEM_RECIPE_DOC="yard" +RUBY_FAKEGEM_RECIPE_TEST="rspec" + +inherit ruby-fakegem + +DESCRIPTION="Provides support for tables in Prawn" +HOMEPAGE="http://prawn.majesticseacreature.com/" +LICENSE="|| ( GPL-2+ Ruby )" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/mocha + >=dev-ruby/pdf-inspector-1.1.0 + >=dev-ruby/pdf-reader-1.2 + >=dev-ruby/prawn-1.2.1 + )" + +all_ruby_prepare() { + sed -i -e "/[Bb]undler/s/^/#/" spec/spec_helper.rb || die + # Remove failing test + # See https://github.com/prawnpdf/prawn-table/issues/10 + sed -i -e "/Prints table on one page when using subtable with colspan > 1/,+24 s/^/#/" spec/table_spec.rb || die +} |