diff options
author | Caleb Tennis <caleb@gentoo.org> | 2007-07-24 12:07:18 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2007-07-24 12:07:18 +0000 |
commit | dc4f7e730a0c7511de149241ad563b40993a89ae (patch) | |
tree | d3cd618703a97fce74d0b05be1f248ff1b1222ff /dev-ruby/IceRuby | |
parent | Bump for a cached connection fix (diff) | |
download | gentoo-2-dc4f7e730a0c7511de149241ad563b40993a89ae.tar.gz gentoo-2-dc4f7e730a0c7511de149241ad563b40993a89ae.tar.bz2 gentoo-2-dc4f7e730a0c7511de149241ad563b40993a89ae.zip |
remove old version
(Portage version: 2.1.2.7)
Diffstat (limited to 'dev-ruby/IceRuby')
-rw-r--r-- | dev-ruby/IceRuby/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/IceRuby/IceRuby-3.1.1-r1.ebuild | 61 | ||||
-rw-r--r-- | dev-ruby/IceRuby/files/IceRuby-3.1.1-Makefile.patch | 96 | ||||
-rw-r--r-- | dev-ruby/IceRuby/files/array_fix-3.1.1.patch | 72 | ||||
-rw-r--r-- | dev-ruby/IceRuby/files/digest-IceRuby-3.1.1-r1 | 3 |
5 files changed, 6 insertions, 233 deletions
diff --git a/dev-ruby/IceRuby/ChangeLog b/dev-ruby/IceRuby/ChangeLog index ea44d1b065cc..8751019fef4b 100644 --- a/dev-ruby/IceRuby/ChangeLog +++ b/dev-ruby/IceRuby/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/IceRuby # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/IceRuby/ChangeLog,v 1.5 2007/07/24 12:06:28 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/IceRuby/ChangeLog,v 1.6 2007/07/24 12:07:18 caleb Exp $ + + 24 Jul 2007; Caleb Tennis <caleb@gentoo.org> + -files/IceRuby-3.1.1-Makefile.patch, -files/array_fix-3.1.1.patch, + -IceRuby-3.1.1-r1.ebuild: + remove old version *IceRuby-3.2.0-r1 (24 Jul 2007) diff --git a/dev-ruby/IceRuby/IceRuby-3.1.1-r1.ebuild b/dev-ruby/IceRuby/IceRuby-3.1.1-r1.ebuild deleted file mode 100644 index a92d5e20fb6f..000000000000 --- a/dev-ruby/IceRuby/IceRuby-3.1.1-r1.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/IceRuby/IceRuby-3.1.1-r1.ebuild,v 1.1 2007/02/02 14:10:48 caleb Exp $ - -inherit eutils - -DESCRIPTION="ICE middleware C++ bindings" -HOMEPAGE="http://www.zeroc.com/index.html" -SRC_URI="http://www.zeroc.com/download/Ice/3.1/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86" -IUSE="test debug" - -DEPEND="=dev-cpp/Ice-3.1* - >=dev-lang/ruby-1.8.4 - test? ( >=dev-lang/python-2.4 )" - -ICE_HOME=/usr - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch ${FILESDIR}/${P}-Makefile.patch - epatch ${FILESDIR}/array_fix-${PV}.patch - - mkdir -p ${WORKDIR}/bin - mkdir -p ${WORKDIR}/lib - - if use amd64; then - sed -i -e "s:^#LP64:LP64:g" ${S}/config/Make.rules \ - || die "Failed to set lib64 directory" - fi - - if ! use debug; then - sed -i -e "s:#OPTIMIZE:OPTIMIZE:" \ - ${S}/config/Make.rules || die "Failed to remove debug" - fi - - sed -i -e \ - "s:.*CXXFLAGS[^\+]*\=\s:CXXFLAGS = ${CXXFLAGS} :g" \ - ${S}/config/Make.rules.Linux || die "CXXFLAGS patching failed!" -} - -src_compile() { - cd ${S} - export ICE_HOME=/usr - make || die "Died during make" -} - -src_install() { - export ICE_HOME=/usr - make DESTDIR="${D}" install || die "Install Failed!" -} - -src_test() { - export ICE_HOME=/usr - make test || die "Test failed" -} diff --git a/dev-ruby/IceRuby/files/IceRuby-3.1.1-Makefile.patch b/dev-ruby/IceRuby/files/IceRuby-3.1.1-Makefile.patch deleted file mode 100644 index 609d57cad93f..000000000000 --- a/dev-ruby/IceRuby/files/IceRuby-3.1.1-Makefile.patch +++ /dev/null @@ -1,96 +0,0 @@ ---- Makefile.orig 2006-10-30 08:59:43.000000000 -0500 -+++ Makefile 2006-10-30 09:03:30.000000000 -0500 -@@ -13,13 +13,13 @@ - - SUBDIRS = src ruby - --INSTALL_SUBDIRS = $(install_bindir) $(install_libdir) $(install_rubydir) $(install_slicedir) -+INSTALL_SUBDIRS = $(install_bindir) $(install_libdir) $(install_rubyarchdir) $(install_slicedir) $(install_rubylibdir) - - install:: - @if test ! -d $(prefix) ; \ - then \ - echo "Creating $(prefix)..." ; \ -- $(call mkdir,$(prefix)) ; \ -+ mkdir -p $(prefix) ; \ - fi - @for subdir in $(INSTALL_SUBDIRS); \ - do \ -@@ -61,9 +61,5 @@ - done \ - fi - --install:: -- $(call installdata,ICE_LICENSE,$(prefix)) -- $(call installdata,LICENSE,$(prefix)) -- - test:: - @python $(top_srcdir)/allTests.py ---- ruby/Makefile.orig 2006-10-30 08:54:37.000000000 -0500 -+++ ruby/Makefile 2006-10-30 08:56:21.000000000 -0500 -@@ -125,8 +125,8 @@ - @echo "Installing generated code" - @for i in $(MODULES) ; \ - do \ -- $(INSTALL_DATA) $${i}.rb $(install_rubydir) ; \ -- $(INSTALL_DATA) -r $$i $(install_rubydir) ; \ -+ $(INSTALL_DATA) $${i}.rb $(install_rubylibdir) ; \ -+ $(INSTALL_DATA) -r $$i $(install_rubylibdir) ; \ - done - - clean:: ---- src/IceRuby/Makefile.orig 2006-10-30 08:56:33.000000000 -0500 -+++ src/IceRuby/Makefile 2006-10-30 08:56:48.000000000 -0500 -@@ -38,6 +38,6 @@ - $(call mkshlib,$@,$(SONAME),$(OBJS),$(LINKWITH)) - - install:: all -- $(call installrubylib,$(rubydir)/$(LIBNAME),$(install_rubydir)) -+ $(call installrubylib,$(rubydir)/$(LIBNAME),$(install_rubyarchdir)) - - include .depend ---- config/Make.rules.orig 2006-10-30 09:21:53.000000000 -0500 -+++ config/Make.rules 2006-10-30 09:23:59.000000000 -0500 -@@ -18,7 +18,7 @@ - # if it does not exist. - # - --prefix = /opt/IceRuby-$(VERSION) -+prefix = $(DESTDIR)/usr - - # - # Define OPTIMIZE as yes if you want to build with optimization. -@@ -52,8 +52,10 @@ - endif - endif - --RUBY_INCLUDE_DIR = $(shell $(RUBY) -e 'require "rbconfig"; puts Config::expand("$$(archdir)")') --RUBY_LIB_DIR = $(shell $(RUBY) -e 'require "rbconfig"; puts Config::expand("$$(libdir)")') -+RUBY_ARCH_DIR = $(shell $(RUBY) -e 'require "rbconfig"; puts Config::expand("$$(archdir)")') -+RUBY_LIB_DIR = $(shell $(RUBY) -e 'require "rbconfig"; puts Config::expand("$$(rubylibdir)")') -+RUBY_SITEARCH_DIR = $(shell $(RUBY) -e 'require "rbconfig"; puts Config::expand("$$(sitearchdir)")') -+RUBY_SITELIB_DIR = $(shell $(RUBY) -e 'require "rbconfig"; puts Config::expand("$$(sitelibdir)")') - - RUBY_SHARED = $(shell $(RUBY) -e 'require "rbconfig"; puts Config::MAKEFILE_CONFIG["ENABLE_SHARED"]') - -@@ -63,7 +65,7 @@ - RUBY_LIB = $(shell $(RUBY) -e 'require "rbconfig"; puts Config::expand("-l$$(RUBY_SO_NAME)-static")') - endif - --RUBY_FLAGS = -I$(RUBY_INCLUDE_DIR) -+RUBY_FLAGS = -I$(RUBY_ARCH_DIR) - RUBY_LIBS = -L$(RUBY_LIB_DIR) $(RUBY_LIB) - - ifneq ($(ICE_HOME),) -@@ -109,8 +111,9 @@ - endif - - install_bindir = $(prefix)/bin --install_slicedir = $(prefix)/slice --install_rubydir = $(prefix)/ruby -+install_slicedir = $(prefix)/share/IceRuby-$(VERSION)/slice -+install_rubylibdir = $(DESTDIR)/$(RUBY_SITELIB_DIR) -+install_rubyarchdir = $(DESTDIR)/$(RUBY_SITEARCH_DIR) - - INSTALL = cp -fp - INSTALL_PROGRAM = ${INSTALL} diff --git a/dev-ruby/IceRuby/files/array_fix-3.1.1.patch b/dev-ruby/IceRuby/files/array_fix-3.1.1.patch deleted file mode 100644 index ab9309d1d2cc..000000000000 --- a/dev-ruby/IceRuby/files/array_fix-3.1.1.patch +++ /dev/null @@ -1,72 +0,0 @@ ---- src/IceRuby/Types.cpp.orig 2007-02-02 12:50:42.000000000 -0500 -+++ src/IceRuby/Types.cpp 2007-02-02 12:51:39.000000000 -0500 -@@ -547,8 +547,8 @@ - for(long i = 0; i < sz; ++i) - { - RARRAY(arr)->ptr[i] = INT2FIX(seq[i]); -+ RARRAY(arr)->len++; - } -- RARRAY(arr)->len = sz; - break; - } - case PrimitiveInfo::KindShort: -@@ -560,8 +560,8 @@ - for(long i = 0; i < sz; ++i) - { - RARRAY(arr)->ptr[i] = INT2FIX(seq[i]); -+ RARRAY(arr)->len++; - } -- RARRAY(arr)->len = sz; - break; - } - case PrimitiveInfo::KindInt: -@@ -573,8 +573,8 @@ - for(long i = 0; i < sz; ++i) - { - RARRAY(arr)->ptr[i] = INT2FIX(seq[i]); -+ RARRAY(arr)->len++; - } -- RARRAY(arr)->len = sz; - break; - } - case PrimitiveInfo::KindLong: -@@ -586,8 +586,8 @@ - for(long i = 0; i < sz; ++i) - { - RARRAY(arr)->ptr[i] = callRuby(rb_ll2inum, seq[i]); -+ RARRAY(arr)->len++; - } -- RARRAY(arr)->len = sz; - break; - } - case PrimitiveInfo::KindFloat: -@@ -599,8 +599,8 @@ - for(long i = 0; i < sz; ++i) - { - RARRAY(arr)->ptr[i] = callRuby(rb_float_new, seq[i]); -+ RARRAY(arr)->len++; - } -- RARRAY(arr)->len = sz; - break; - } - case PrimitiveInfo::KindDouble: -@@ -612,8 +612,8 @@ - for(long i = 0; i < sz; ++i) - { - RARRAY(arr)->ptr[i] = callRuby(rb_float_new, seq[i]); -+ RARRAY(arr)->len++; - } -- RARRAY(arr)->len = sz; - break; - } - case PrimitiveInfo::KindString: -@@ -625,8 +625,8 @@ - for(long i = 0; i < sz; ++i) - { - RARRAY(arr)->ptr[i] = createString(seq[i]); -+ RARRAY(arr)->len++; - } -- RARRAY(arr)->len = sz; - break; - } - } diff --git a/dev-ruby/IceRuby/files/digest-IceRuby-3.1.1-r1 b/dev-ruby/IceRuby/files/digest-IceRuby-3.1.1-r1 deleted file mode 100644 index 4a75c2084f7c..000000000000 --- a/dev-ruby/IceRuby/files/digest-IceRuby-3.1.1-r1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 d48d954b92afb3399ffdfea9f3ff0c21 IceRuby-3.1.1.tar.gz 337998 -RMD160 7c8fdd43469432bbfabc9ca49018349a4418c928 IceRuby-3.1.1.tar.gz 337998 -SHA256 1dee046bab93e4320a2b69a6b6b4beb16bd7a2e8b45553299c468773f9e57f8e IceRuby-3.1.1.tar.gz 337998 |