diff options
author | Hans de Graaff <graaff@gentoo.org> | 2012-12-14 15:44:55 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2012-12-14 15:44:55 +0000 |
commit | 2c599c98534cd27a4f41d179d0d04b83642353da (patch) | |
tree | 2ae64bdcc5d4c0dd098dc1a18ba129b234ed6bc5 /dev-ruby | |
parent | Remove redundant USE=upnp description; it matches the global flag meaning. (diff) | |
download | gentoo-2-2c599c98534cd27a4f41d179d0d04b83642353da.tar.gz gentoo-2-2c599c98534cd27a4f41d179d0d04b83642353da.tar.bz2 gentoo-2-2c599c98534cd27a4f41d179d0d04b83642353da.zip |
Version bump.
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/amq-protocol/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/amq-protocol/amq-protocol-1.0.1.ebuild | 26 |
2 files changed, 32 insertions, 1 deletions
diff --git a/dev-ruby/amq-protocol/ChangeLog b/dev-ruby/amq-protocol/ChangeLog index 66ad0ab619f0..6fa7831d9528 100644 --- a/dev-ruby/amq-protocol/ChangeLog +++ b/dev-ruby/amq-protocol/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/amq-protocol # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amq-protocol/ChangeLog,v 1.5 2012/10/02 06:03:38 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amq-protocol/ChangeLog,v 1.6 2012/12/14 15:44:55 graaff Exp $ + +*amq-protocol-1.0.1 (14 Dec 2012) + + 14 Dec 2012; Hans de Graaff <graaff@gentoo.org> +amq-protocol-1.0.1.ebuild: + Version bump. *amq-protocol-0.9.5 (02 Oct 2012) diff --git a/dev-ruby/amq-protocol/amq-protocol-1.0.1.ebuild b/dev-ruby/amq-protocol/amq-protocol-1.0.1.ebuild new file mode 100644 index 000000000000..cddf28ec8e58 --- /dev/null +++ b/dev-ruby/amq-protocol/amq-protocol-1.0.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amq-protocol/amq-protocol-1.0.1.ebuild,v 1.1 2012/12/14 15:44:55 graaff Exp $ + +EAPI=4 +USE_RUBY="ruby18 ruby19 ree18 jruby" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_RECIPE_TEST="rspec" + +inherit versionator ruby-fakegem + +DESCRIPTION="An AMQP 0.9.1 serialization library for Ruby." +HOMEPAGE="http://github.com/ruby-amqp/amq-protocol" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +all_ruby_prepare() { + rm Gemfile || die + sed -i -e '/bundler/d' spec/spec_helper.rb || die +} |