diff options
author | Hans de Graaff <graaff@gentoo.org> | 2012-09-23 08:41:53 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2012-09-23 08:41:53 +0000 |
commit | e35ae161e9a0ca7d953df4a1fc840cdec3d2f4d4 (patch) | |
tree | e5ee52d8bc800cddaddf32d9fabe385dfe2a0060 /dev-ruby/storable | |
parent | EAPI=4. Remove useless test dependency. Document ruby19 status. (diff) | |
download | gentoo-2-e35ae161e9a0ca7d953df4a1fc840cdec3d2f4d4.tar.gz gentoo-2-e35ae161e9a0ca7d953df4a1fc840cdec3d2f4d4.tar.bz2 gentoo-2-e35ae161e9a0ca7d953df4a1fc840cdec3d2f4d4.zip |
Cleanup.
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/storable')
-rw-r--r-- | dev-ruby/storable/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/storable/storable-0.8.7.ebuild | 52 |
2 files changed, 5 insertions, 54 deletions
diff --git a/dev-ruby/storable/ChangeLog b/dev-ruby/storable/ChangeLog index 3d68e8c022e5..7dfad4b2b4d1 100644 --- a/dev-ruby/storable/ChangeLog +++ b/dev-ruby/storable/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ruby/storable -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/storable/ChangeLog,v 1.19 2011/05/22 06:10:32 graaff Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/storable/ChangeLog,v 1.20 2012/09/23 08:41:52 graaff Exp $ + + 23 Sep 2012; Hans de Graaff <graaff@gentoo.org> -storable-0.8.7.ebuild: + Cleanup. 22 May 2011; Hans de Graaff <graaff@gentoo.org> -storable-0.8.2.ebuild, -storable-0.8.6.ebuild: diff --git a/dev-ruby/storable/storable-0.8.7.ebuild b/dev-ruby/storable/storable-0.8.7.ebuild deleted file mode 100644 index e16758c885cb..000000000000 --- a/dev-ruby/storable/storable-0.8.7.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/storable/storable-0.8.7.ebuild,v 1.1 2011/03/04 06:58:00 graaff Exp $ - -EAPI=2 - -# jruby → yajl-ruby won't work, as it's compiled extension -USE_RUBY="ruby18 ruby19" - -RUBY_FAKEGEM_TASK_TEST="" - -RUBY_FAKEGEM_TASK_DOC="rdoc" -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="CHANGES.txt README.rdoc" - -inherit ruby-fakegem - -DESCRIPTION="Marshal Ruby classes into and out of multiple formats" -HOMEPAGE="http://solutious.com/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -SRC_URI="http://github.com/delano/${PN}/tarball/v${PV} -> ${PN}-git-${PV}.tgz" -S="${WORKDIR}/delano-${PN}-*" - -# technically, it could work without either; on the other hand, it -# would break a bit of stuff. -#ruby_add_rdepend "|| ( dev-ruby/json dev-ruby/yajl-ruby )" - -# Somehow it infinite-recurse if JSON is used, see issue #1, so use -# yajl directly. -ruby_add_rdepend dev-ruby/yajl-ruby - -ruby_add_bdepend "test? ( dev-ruby/tryouts:2 )" - -all_ruby_prepare() { - mv bin examples || die -} - -each_ruby_test() { - ${RUBY} -S try || die "tests failed" -} - -all_ruby_install() { - all_fakegem_install - - docinto examples - dodoc examples/* || die -} |