diff options
author | 2013-07-22 14:01:43 +0000 | |
---|---|---|
committer | 2013-07-22 14:01:43 +0000 | |
commit | 1157c9615e18f0ee90e859781c759e9148fa65d7 (patch) | |
tree | 107ef9ddd0e6bb98e58b86c6d6975741e899d562 /dev-ruby/slop | |
parent | amd64 stable, bug #477588 (diff) | |
download | gentoo-2-1157c9615e18f0ee90e859781c759e9148fa65d7.tar.gz gentoo-2-1157c9615e18f0ee90e859781c759e9148fa65d7.tar.bz2 gentoo-2-1157c9615e18f0ee90e859781c759e9148fa65d7.zip |
Version bump
(Portage version: 2.1.12.13/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-ruby/slop')
-rw-r--r-- | dev-ruby/slop/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/slop/slop-3.4.5.ebuild | 27 |
2 files changed, 33 insertions, 1 deletions
diff --git a/dev-ruby/slop/ChangeLog b/dev-ruby/slop/ChangeLog index ab1393488998..019e71cec0ba 100644 --- a/dev-ruby/slop/ChangeLog +++ b/dev-ruby/slop/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/slop # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/slop/ChangeLog,v 1.18 2013/04/20 06:39:43 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/slop/ChangeLog,v 1.19 2013/07/22 14:01:43 mrueg Exp $ + +*slop-3.4.5 (22 Jul 2013) + + 22 Jul 2013; Manuel Rüger <mrueg@gentoo.org> +slop-3.4.5.ebuild: + Version bump *slop-3.4.4 (20 Apr 2013) diff --git a/dev-ruby/slop/slop-3.4.5.ebuild b/dev-ruby/slop/slop-3.4.5.ebuild new file mode 100644 index 000000000000..347c8128ac25 --- /dev/null +++ b/dev-ruby/slop/slop-3.4.5.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/slop/slop-3.4.5.ebuild,v 1.1 2013/07/22 14:01:43 mrueg Exp $ + +EAPI=5 +USE_RUBY="ruby18 ruby19 jruby" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md" + +inherit ruby-fakegem + +DESCRIPTION="A simple option parser with an easy to remember syntax and friendly API." +HOMEPAGE="https://github.com/injekt/slop" +SRC_URI="https://github.com/injekt/${PN}/archive/v${PV}.tar.gz -> ${P}.tgz" + +LICENSE="MIT" +SLOT="3" +KEYWORDS="~amd64 ~ppc64 ~x86" + +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/minitest )" + +all_ruby_prepare() { + sed -i -e '/git ls-files/d' slop.gemspec || die +} |