diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2013-11-17 19:29:42 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2013-11-17 19:29:42 +0000 |
commit | 46f201b71a8a5cb4b26e8a5103a909da3cc4497b (patch) | |
tree | 655a74630e59248bb0816c4bb34fd34f234f5320 /dev-ruby/slop | |
parent | Version bump thanks to Marios Andreopoulos <opensource@andmarios.com> (diff) | |
download | gentoo-2-46f201b71a8a5cb4b26e8a5103a909da3cc4497b.tar.gz gentoo-2-46f201b71a8a5cb4b26e8a5103a909da3cc4497b.tar.bz2 gentoo-2-46f201b71a8a5cb4b26e8a5103a909da3cc4497b.zip |
Version bump.
(Portage version: 2.2.7/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.7.ebuild | 27 |
2 files changed, 33 insertions, 1 deletions
diff --git a/dev-ruby/slop/ChangeLog b/dev-ruby/slop/ChangeLog index eb09f8bcdcfa..670b40db226d 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.23 2013/11/11 11:04:39 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/slop/ChangeLog,v 1.24 2013/11/17 19:29:42 mrueg Exp $ + +*slop-3.4.7 (17 Nov 2013) + + 17 Nov 2013; Manuel Rüger <mrueg@gentoo.org> +slop-3.4.7.ebuild: + Version bump. 11 Nov 2013; Manuel Rüger <mrueg@gentoo.org> -slop-2.4.4.ebuild, -slop-3.3.3.ebuild, -slop-3.4.6.ebuild: diff --git a/dev-ruby/slop/slop-3.4.7.ebuild b/dev-ruby/slop/slop-3.4.7.ebuild new file mode 100644 index 000000000000..8a7d48924042 --- /dev/null +++ b/dev-ruby/slop/slop-3.4.7.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.7.ebuild,v 1.1 2013/11/17 19:29:42 mrueg Exp $ + +EAPI=5 +USE_RUBY="ruby18 ruby19 ruby20 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 +} |