From 9667f17d6ec3ca1b719d230e69569cf57c766a4d Mon Sep 17 00:00:00 2001 From: Armin Kuster Date: Sat, 4 Apr 2015 08:37:57 -0700 Subject: ruby: package update to verison 2.2.1 LIC_FILES_CHKSUM changes: BDSL: update copyright notice with "2013" GPL: update to GPLv2 LEGAL: added license info for ccan files dropped patches since they are now incorperated. several security fixes included: CVE-2014-2525 CVE-2014-0160 CVE-2014-2734 CVE-2014-8080 CVE-2014-8090 for addional information: http://svn.ruby-lang.org/repos/ruby/tags/v2_2_1/ChangeLog Signed-off-by: Armin Kuster --- ...kmf.rb-fix-race-conditions-at-install-ext.patch | 31 ---------------------- 1 file changed, 31 deletions(-) delete mode 100644 meta-ruby/recipes-devtools/ruby/ruby/ruby-mkmf.rb-fix-race-conditions-at-install-ext.patch (limited to 'meta-ruby/recipes-devtools/ruby/ruby/ruby-mkmf.rb-fix-race-conditions-at-install-ext.patch') diff --git a/meta-ruby/recipes-devtools/ruby/ruby/ruby-mkmf.rb-fix-race-conditions-at-install-ext.patch b/meta-ruby/recipes-devtools/ruby/ruby/ruby-mkmf.rb-fix-race-conditions-at-install-ext.patch deleted file mode 100644 index 5ac5d54a3f..0000000000 --- a/meta-ruby/recipes-devtools/ruby/ruby/ruby-mkmf.rb-fix-race-conditions-at-install-ext.patch +++ /dev/null @@ -1,31 +0,0 @@ -Subject: [PATCH] mkmf.rb: fix race conditions at install-ext - -Upstream-Status: backport - -* lib/mkmf.rb (create_makefile): fix race conditions at install-ext. - target files need to depend on destination directory timestamp - files, not phony trgets. - -git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36863 b2dd03c8-39d4-4d8f-98ff-823fe69b080e - -Signed-off-by: Jackie Huang ---- - lib/mkmf.rb | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/lib/mkmf.rb b/lib/mkmf.rb -index 556684c..a277354 100644 ---- a/lib/mkmf.rb -+++ b/lib/mkmf.rb -@@ -2055,7 +2055,7 @@ static: $(STATIC_LIB)#{$extout ? " install-rb" : ""} - for f in files - dest = "#{dir}/#{File.basename(f)}" - mfile.print("install-rb#{sfx}: #{dest}\n") -- mfile.print("#{dest}: #{f}\n") -+ mfile.print("#{dest}: #{f} #{timestamp_file(dir)}\n") - mfile.print("\t$(Q) $(#{$extout ? 'COPY' : 'INSTALL_DATA'}) #{f} $(@D#{sep})\n") - if defined?($installed_list) and !$extout - mfile.print("\t@echo #{dest}>>$(INSTALLED_LIST)\n") --- -2.0.0 - -- cgit 1.2.3-korg