diff options
author | Caleb Tennis <caleb@gentoo.org> | 2007-09-25 12:53:27 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2007-09-25 12:53:27 +0000 |
commit | 31386ed9eab673ad8357e766b378b62879566843 (patch) | |
tree | c35cfc89bd3c0f03f4874b7dffa9f666aac843e2 /dev-ruby/IceRuby/files | |
parent | remove old version (diff) | |
download | gentoo-2-31386ed9eab673ad8357e766b378b62879566843.tar.gz gentoo-2-31386ed9eab673ad8357e766b378b62879566843.tar.bz2 gentoo-2-31386ed9eab673ad8357e766b378b62879566843.zip |
remove old versions
(Portage version: 2.1.3.9)
Diffstat (limited to 'dev-ruby/IceRuby/files')
-rw-r--r-- | dev-ruby/IceRuby/files/IceRuby-3.2.0-Makefile.patch | 116 | ||||
-rw-r--r-- | dev-ruby/IceRuby/files/cached_connection.patch | 11 | ||||
-rw-r--r-- | dev-ruby/IceRuby/files/digest-IceRuby-3.2.0 | 3 | ||||
-rw-r--r-- | dev-ruby/IceRuby/files/digest-IceRuby-3.2.0-r1 | 3 | ||||
-rw-r--r-- | dev-ruby/IceRuby/files/digest-IceRuby-3.2.1 | 3 |
5 files changed, 0 insertions, 136 deletions
diff --git a/dev-ruby/IceRuby/files/IceRuby-3.2.0-Makefile.patch b/dev-ruby/IceRuby/files/IceRuby-3.2.0-Makefile.patch deleted file mode 100644 index 3093e58a78bc..000000000000 --- a/dev-ruby/IceRuby/files/IceRuby-3.2.0-Makefile.patch +++ /dev/null @@ -1,116 +0,0 @@ ---- Makefile.orig 2007-03-13 08:29:51.000000000 -0400 -+++ Makefile 2007-03-13 08:31:16.000000000 -0400 -@@ -13,13 +13,13 @@ - - SUBDIRS = src ruby - --INSTALL_SUBDIRS = $(install_libdir) $(install_rubydir) -+INSTALL_SUBDIRS = $(install_rubylibdir) $(install_rubyarchdir) - - install:: - @if test ! -d $(prefix) ; \ - then \ - echo "Creating $(prefix)..." ; \ -- $(call mkdir,$(prefix)) ; \ -+ mkdir -p $(prefix) ; \ - fi - @for subdir in $(INSTALL_SUBDIRS); \ - do \ -@@ -38,9 +38,5 @@ - ( cd $$subdir && $(MAKE) $@ ) || exit 1; \ - done - --install:: -- $(call installdata,ICE_LICENSE,$(prefix)) -- $(call installdata,LICENSE,$(prefix)) -- - test:: - @python $(top_srcdir)/allTests.py ---- ruby/Makefile.orig 2007-03-13 08:31:21.000000000 -0400 -+++ ruby/Makefile 2007-03-13 08:31:50.000000000 -0400 -@@ -128,8 +128,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 2007-03-13 08:31:58.000000000 -0400 -+++ src/IceRuby/Makefile 2007-03-13 08:35:59.000000000 -0400 -@@ -48,6 +48,6 @@ - ln -s $(SONAME) $@ - - install:: all -- $(call installlib,$(install_libdir),$(libdir),$(LIBFILENAME),$(SONAME),$(LIBNAME)) -+ $(call installlib,$(install_rubyarchdir),$(libdir),$(LIBFILENAME),$(SONAME),$(LIBNAME)) - - include .depend ---- config/Make.rules.orig 2007-03-13 08:33:15.000000000 -0400 -+++ config/Make.rules 2007-03-13 08:35:04.000000000 -0400 -@@ -18,13 +18,13 @@ - # if it does not exist. - # - --prefix = /opt/IceRuby-$(VERSION) -+prefix = $(DESTDIR)/usr - - # - # The "root directory" for runpath embedded in executables. Can be unset - # to avoid adding a runpath to Ice executables. - # --embedded_runpath_prefix ?= /opt/Ice-$(VERSION_MAJOR).$(VERSION_MINOR) -+#embedded_runpath_prefix ?= /opt/Ice-$(VERSION_MAJOR).$(VERSION_MINOR) - - # - # Define OPTIMIZE as yes if you want to build with optimization. -@@ -51,8 +51,10 @@ - RUBY = ruby - 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"]') - -@@ -62,7 +64,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),) -@@ -100,7 +102,8 @@ - endif - - install_bindir = $(prefix)/bin --install_rubydir = $(prefix)/ruby -+install_rubylibdir = $(DESTDIR)/$(RUBY_SITELIB_DIR) -+install_rubyarchdir = $(DESTDIR)/$(RUBY_SITEARCH_DIR) - - INSTALL = cp -fp - INSTALL_PROGRAM = ${INSTALL} ---- config/Make.rules.orig 2007-03-13 09:51:34.000000000 -0400 -+++ config/Make.rules 2007-03-13 09:51:59.000000000 -0400 -@@ -93,11 +93,7 @@ - libdir = $(top_srcdir)/ruby - rubydir = $(top_srcdir)/ruby - --ifneq ($(ICE_HOME),) -- slicedir = $(ICE_HOME)/slice --else -- slicedir = /usr/share/Ice-$(VERSION)/slice --endif -+slicedir = /usr/share/Ice/slice - - install_bindir = $(prefix)/bin - install_rubydir = $(prefix)/ruby diff --git a/dev-ruby/IceRuby/files/cached_connection.patch b/dev-ruby/IceRuby/files/cached_connection.patch deleted file mode 100644 index 2acd2f8f3868..000000000000 --- a/dev-ruby/IceRuby/files/cached_connection.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- src/IceRuby/Proxy.cpp.orig 2007-07-24 08:02:19.000000000 -0400 -+++ src/IceRuby/Proxy.cpp 2007-07-24 08:02:35.000000000 -0400 -@@ -990,7 +990,7 @@ - { - Ice::ObjectPrx p = getProxy(self); - Ice::ConnectionPtr conn = p->ice_getCachedConnection(); -- if(!conn) -+ if(conn) - { - return createConnection(conn); - } diff --git a/dev-ruby/IceRuby/files/digest-IceRuby-3.2.0 b/dev-ruby/IceRuby/files/digest-IceRuby-3.2.0 deleted file mode 100644 index 657acb05e89f..000000000000 --- a/dev-ruby/IceRuby/files/digest-IceRuby-3.2.0 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 12acd1d20ea9ca0350651c1094a673e2 IceRuby-3.2.0.tar.gz 95823 -RMD160 56c8464918673820993a4c364a16069bf5420cbf IceRuby-3.2.0.tar.gz 95823 -SHA256 b3d89a8811f163dc6725bde1b56487675e6549d203129abad4abb6a6167ce87f IceRuby-3.2.0.tar.gz 95823 diff --git a/dev-ruby/IceRuby/files/digest-IceRuby-3.2.0-r1 b/dev-ruby/IceRuby/files/digest-IceRuby-3.2.0-r1 deleted file mode 100644 index 657acb05e89f..000000000000 --- a/dev-ruby/IceRuby/files/digest-IceRuby-3.2.0-r1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 12acd1d20ea9ca0350651c1094a673e2 IceRuby-3.2.0.tar.gz 95823 -RMD160 56c8464918673820993a4c364a16069bf5420cbf IceRuby-3.2.0.tar.gz 95823 -SHA256 b3d89a8811f163dc6725bde1b56487675e6549d203129abad4abb6a6167ce87f IceRuby-3.2.0.tar.gz 95823 diff --git a/dev-ruby/IceRuby/files/digest-IceRuby-3.2.1 b/dev-ruby/IceRuby/files/digest-IceRuby-3.2.1 deleted file mode 100644 index 81a0e82c619d..000000000000 --- a/dev-ruby/IceRuby/files/digest-IceRuby-3.2.1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 17c61065ab67c232283d8710302379d3 IceRuby-3.2.1.tar.gz 98496 -RMD160 7c852a275fe5d37bee2654889ed268022e7f1cd7 IceRuby-3.2.1.tar.gz 98496 -SHA256 319ccbf5945a9f213695c67a4bdead8605c25c0c6de926e272c4a21619ae30bf IceRuby-3.2.1.tar.gz 98496 |