diff options
author | Hans de Graaff <graaff@gentoo.org> | 2010-04-04 08:43:49 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2010-04-04 08:43:49 +0000 |
commit | bde2de7bd210f10e7c66594979c5df7ac6d02d66 (patch) | |
tree | a0d8e6c0e05d08969b8f58fc2b3d81e56ee28ade /dev-ruby | |
parent | Make sure all ebuilds have the fix for libpng-1.4, bug #310959 by (diff) | |
download | gentoo-2-bde2de7bd210f10e7c66594979c5df7ac6d02d66.tar.gz gentoo-2-bde2de7bd210f10e7c66594979c5df7ac6d02d66.tar.bz2 gentoo-2-bde2de7bd210f10e7c66594979c5df7ac6d02d66.zip |
Version bump. Convert to ruby-fakegem. Fix QA notice. Run tests.
(Portage version: 2.1.7.17/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/msgpack/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/msgpack/msgpack-0.3.6.ebuild | 46 |
2 files changed, 52 insertions, 1 deletions
diff --git a/dev-ruby/msgpack/ChangeLog b/dev-ruby/msgpack/ChangeLog index a96e6846dbe7..4164ee8d6e11 100644 --- a/dev-ruby/msgpack/ChangeLog +++ b/dev-ruby/msgpack/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/msgpack # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/msgpack/ChangeLog,v 1.1 2010/03/02 15:51:40 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/msgpack/ChangeLog,v 1.2 2010/04/04 08:43:49 graaff Exp $ + +*msgpack-0.3.6 (04 Apr 2010) + + 04 Apr 2010; Hans de Graaff <graaff@gentoo.org> +msgpack-0.3.6.ebuild: + Version bump. Convert to ruby-fakegem. Fix QA notice. Run tests. 02 Mar 2010; MATSUU Takuto <matsuu@gentoo.org> +msgpack-0.3.3.ebuild, +metadata.xml: diff --git a/dev-ruby/msgpack/msgpack-0.3.6.ebuild b/dev-ruby/msgpack/msgpack-0.3.6.ebuild new file mode 100644 index 000000000000..4348a5eca20b --- /dev/null +++ b/dev-ruby/msgpack/msgpack-0.3.6.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/msgpack/msgpack-0.3.6.ebuild,v 1.1 2010/04/04 08:43:49 graaff Exp $ + +EAPI="2" +USE_RUBY="ruby18" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_TASK_TEST="" + +RUBY_FAKEGEM_EXTRADOC="README" + +inherit ruby-fakegem + +DESCRIPTION="Binary-based efficient data interchange format for ruby binding" +HOMEPAGE="http://msgpack.sourceforge.jp/" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +ruby_add_bdepend test virtual/ruby-test-unit + +each_ruby_configure() { + pushd ext + ${RUBY} extconf.rb || die "Configuration of extension failed." + popd +} + +each_ruby_compile() { + pushd ext + emake || die + popd +} + +each_ruby_test() { + ${RUBY} test/msgpack_test.rb +} + +each_ruby_install() { + mkdir lib || die "Unable to make lib directory." + cp ext/msgpack.so lib/ || die "Unable to install msgpack library." + + each_fakegem_install +} |