diff options
author | Hans de Graaff <graaff@gentoo.org> | 2010-04-03 12:06:33 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2010-04-03 12:06:33 +0000 |
commit | 47bbbfc0ed24416a2b0a471be3d442de877aa6db (patch) | |
tree | 5e75dc4c7fd482a84605da04d0fe3485d7b41cf8 /dev-ruby | |
parent | Update for new Hessian, update patch. (diff) | |
download | gentoo-2-47bbbfc0ed24416a2b0a471be3d442de877aa6db.tar.gz gentoo-2-47bbbfc0ed24416a2b0a471be3d442de877aa6db.tar.bz2 gentoo-2-47bbbfc0ed24416a2b0a471be3d442de877aa6db.zip |
Remove old versions.
(Portage version: 2.1.7.17/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/tzinfo/ChangeLog | 6 | ||||
-rw-r--r-- | dev-ruby/tzinfo/tzinfo-0.3.15.ebuild | 61 | ||||
-rw-r--r-- | dev-ruby/tzinfo/tzinfo-0.3.17.ebuild | 36 |
3 files changed, 5 insertions, 98 deletions
diff --git a/dev-ruby/tzinfo/ChangeLog b/dev-ruby/tzinfo/ChangeLog index dff983207639..b8ad95718822 100644 --- a/dev-ruby/tzinfo/ChangeLog +++ b/dev-ruby/tzinfo/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-ruby/tzinfo # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.50 2010/03/30 07:03:04 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.51 2010/04/03 12:06:33 graaff Exp $ + + 03 Apr 2010; Hans de Graaff <graaff@gentoo.org> -tzinfo-0.3.15.ebuild, + -tzinfo-0.3.17.ebuild: + Remove old versions. *tzinfo-0.3.18 (30 Mar 2010) diff --git a/dev-ruby/tzinfo/tzinfo-0.3.15.ebuild b/dev-ruby/tzinfo/tzinfo-0.3.15.ebuild deleted file mode 100644 index 661f12ff0d0b..000000000000 --- a/dev-ruby/tzinfo/tzinfo-0.3.15.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.15.ebuild,v 1.1 2009/10/27 10:06:35 flameeyes Exp $ - -inherit ruby - -DESCRIPTION="Library to provide daylight-savings aware transformations between timezones" -HOMEPAGE="http://tzinfo.rubyforge.org/" -SRC_URI="mirror://rubyforge/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -IUSE="doc test" - -RDEPEND="" -DEPEND="doc? ( dev-ruby/rake ) - test? ( dev-ruby/rake )" - -USE_RUBY="ruby18 ruby19" - -src_unpack() { - unpack ${A} - - # The package has all the files executable, probably coming from - # Windows. - find "${S}" -type f -perm +111 -exec chmod -x {} + - - # With rubygems 1.3.1 we get the following warning - # warning: Insecure world writable dir /var/tmp in LOAD_PATH, mode 041777 - # when running the test_get_tainted_not_loaded test. - sed -i -e '138,146s:^:#:' "${S}"/test/tc_timezone.rb || die "unable to sed out the test" -} - -src_compile() { - if use doc; then - rake rerdoc || die "rake rerdoc failed" - fi -} - -src_test() { - for ruby in $USE_RUBY; do - [[ -n `type -p $ruby` ]] || continue - $ruby $(type -p rake) test || die "testsuite failed" - done -} - -src_install() { - cd "${S}"/lib - doruby -r * || die "doruby failed" - - if use doc; then - dohtml -r "${S}"/doc/* || die "dohtml failed" - fi - - dodoc "${S}"/CHANGES "${S}"/README || die "dodoc failed" - - insinto $(${RUBY} -r rbconfig -e 'print Config::CONFIG["vendorlibdir"]' | sed -e 's:vendor_ruby:gems:')/specifications - sed -e "s:@VERSION@:${PV}:" "${FILESDIR}"/${PN}.gemspec > "${T}"/${P}.gemspec - doins "${T}"/${P}.gemspec || die "Unable to install fake gemspec" -} diff --git a/dev-ruby/tzinfo/tzinfo-0.3.17.ebuild b/dev-ruby/tzinfo/tzinfo-0.3.17.ebuild deleted file mode 100644 index 66f8ea038b0c..000000000000 --- a/dev-ruby/tzinfo/tzinfo-0.3.17.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.17.ebuild,v 1.1 2010/03/17 07:20:07 graaff Exp $ - -EAPI=2 -USE_RUBY="ruby18 ruby19 jruby" - -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="CHANGES README" - -inherit ruby-fakegem - -DESCRIPTION="Daylight-savings aware timezone library" -HOMEPAGE="http://tzinfo.rubyforge.org/" -SRC_URI="mirror://rubyforge/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x64-solaris ~x86-solaris" -IUSE="" - -RDEPEND="" -DEPEND="" - -ruby_add_bdepend test virtual/ruby-test-unit - -all_ruby_prepare() { - # The package has all the files executable, probably coming from - # Windows. - find "${S}" -type f -perm +111 -exec chmod -x {} + - - # With rubygems 1.3.1 we get the following warning - # warning: Insecure world writable dir /var/tmp in LOAD_PATH, mode 041777 - # when running the test_get_tainted_not_loaded test. - sed -i -e '138,146s:^:#:' "${S}"/test/tc_timezone.rb || die "unable to sed out the test" -} |