diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-07-16 22:25:10 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-07-16 22:25:10 +0000 |
commit | 1e257d407835b603b562a010419a0bb430c8d35e (patch) | |
tree | 5c001541e36d6162d3c50f1cda28e6fe174efd67 /dev-ruby/prawn | |
parent | For 5.34 branch demand pythia8 to be within [8.1.80, 8.2.0) range (diff) | |
download | gentoo-2-1e257d407835b603b562a010419a0bb430c8d35e.tar.gz gentoo-2-1e257d407835b603b562a010419a0bb430c8d35e.tar.bz2 gentoo-2-1e257d407835b603b562a010419a0bb430c8d35e.zip |
Version bump.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-ruby/prawn')
-rw-r--r-- | dev-ruby/prawn/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/prawn/prawn-2.0.2.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/dev-ruby/prawn/ChangeLog b/dev-ruby/prawn/ChangeLog index 472dad690199..375ce5795379 100644 --- a/dev-ruby/prawn/ChangeLog +++ b/dev-ruby/prawn/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/prawn # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/prawn/ChangeLog,v 1.30 2015/07/08 10:43:30 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/prawn/ChangeLog,v 1.31 2015/07/16 22:25:10 mrueg Exp $ + +*prawn-2.0.2 (16 Jul 2015) + + 16 Jul 2015; Manuel Rüger <mrueg@gentoo.org> +prawn-2.0.2.ebuild: + Version bump. 08 Jul 2015; Hans de Graaff <graaff@gentoo.org> prawn-2.0.1.ebuild: Add ruby22. diff --git a/dev-ruby/prawn/prawn-2.0.2.ebuild b/dev-ruby/prawn/prawn-2.0.2.ebuild new file mode 100644 index 000000000000..ef55c442121b --- /dev/null +++ b/dev-ruby/prawn/prawn-2.0.2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/prawn/prawn-2.0.2.ebuild,v 1.1 2015/07/16 22:25:10 mrueg Exp $ + +EAPI=5 +USE_RUBY="ruby19 ruby20 ruby21 ruby22" + +RUBY_FAKEGEM_RECIPE_DOC="yard" +RUBY_FAKEGEM_RECIPE_TEST="rspec" +RUBY_FAKEGEM_EXTRAINSTALL="data" + +inherit ruby-fakegem + +DESCRIPTION="Fast, Nimble PDF Generation For Ruby" +HOMEPAGE="http://prawn.majesticseacreature.com/" +SRC_URI="https://github.com/prawnpdf/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="|| ( GPL-2 Ruby )" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +ruby_add_rdepend ">=dev-ruby/pdf-core-0.6.0 + >=dev-ruby/ttfunk-1.4.0" +ruby_add_bdepend "test? ( dev-ruby/coderay + dev-ruby/mocha + >=dev-ruby/pdf-inspector-1.2.0 + >=dev-ruby/pdf-reader-1.2 + )" + +all_ruby_prepare() { + sed -i -e "/[Bb]undler/d" Rakefile spec/spec_helper.rb || die + # Remove failing tests + # https://github.com/prawnpdf/prawn/pull/693 + # https://github.com/prawnpdf/prawn/issues/603 + sed -i -e "/should process UTF-8 chars/,+9 s/^/#/" spec/line_wrap_spec.rb || die + sed -i -e "/shrink_to_fit with special utf-8 text/,+12 s/^/#/" spec/text_spec.rb || die +} |