Skip to content

Commit c1a6bc8

Browse files
committed
Merge upstream changes.
2 parents 33cc1d0 + 9563b5a commit c1a6bc8

File tree

4 files changed

+119
-15
lines changed

4 files changed

+119
-15
lines changed

CHANGELOG.md

+51
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,54 @@
1+
## v40 (10/14/2012)
2+
3+
Features:
4+
5+
* Cache version of the buildpack we used to deploy
6+
* Purge cache when v38 is detected
7+
8+
## v39 (10/14/2012)
9+
10+
Bugfixes:
11+
12+
* Don't display cache clearing message for new apps
13+
* Actually clear bundler cache on ruby version change
14+
15+
## v38 (10/14/2012)
16+
17+
Bugfixes:
18+
19+
* Stop bundle cache from continually growing
20+
21+
## v37 (10/12/2012)
22+
23+
Bugfixes:
24+
25+
* Remove temporary workaround from v36.
26+
* Clear bundler cache upon Ruby version change
27+
28+
## v36 (10/12/2012)
29+
30+
Bugfixes:
31+
32+
* Always clear the cache for ruby 1.9.3 as a temporary workaround due to the security upgrade
33+
34+
## v35 (9/19/2012)
35+
36+
Features:
37+
38+
* Upgrade to Bundler 1.2.1
39+
* Display bundle clean output
40+
* More resilent to rubygems.org API outages
41+
42+
Bugfixes:
43+
44+
* `bundle clean` works again
45+
46+
## v34 (8/30/2012)
47+
48+
Features:
49+
50+
* Upgrade to Bundler 1.2.0
51+
152
## v33 (8/9/2012)
253

354
Features:

Rakefile

+13-11
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@ def build_ruby_command(name, output, prefix, usr_dir, tmpdir, rubygems = nil)
5757
build_command = [
5858
# need to move libyaml/libffi to dirs we can see
5959
"mv #{usr_dir} /tmp",
60-
"./configure --disable-install-doc --prefix #{prefix}",
60+
"./configure --enable-load-relative --disable-install-doc --prefix #{prefix}",
6161
"env CPATH=/tmp/#{usr_dir}/include:\\$CPATH CPPATH=/tmp/#{usr_dir}/include:\\$CPPATH LIBRARY_PATH=/tmp/#{usr_dir}/lib:\\$LIBRARY_PATH make",
6262
"make install"
6363
]
64-
build_command << "#{prefix}/bin/ruby /tmp/#{usr_dir}/rubygems-#{rubygems}/setup.rb"
65-
build_command << "mv #{prefix} /app/vendor/#{name}" if name != output
64+
build_command << "#{prefix}/bin/ruby /tmp/#{usr_dir}/rubygems-#{rubygems}/setup.rb" if rubygems
65+
build_command << "mv #{prefix} /app/vendor/#{output}" if prefix != "/app/vendor/#{output}"
6666
build_command = build_command.join(" && ")
6767

68-
sh "vulcan build -v -o #{output}.tgz --source #{name} --command=\"#{build_command}\""
68+
sh "vulcan build -v -o #{output}.tgz --prefix #{prefix} --source #{name} --command=\"#{build_command}\""
6969
s3_upload(tmpdir, output)
7070
end
7171

@@ -106,16 +106,17 @@ task "libyaml:install", :version do |t, args|
106106
Dir.mktmpdir("libyaml-") do |tmpdir|
107107
Dir.chdir(tmpdir) do |dir|
108108
FileUtils.rm_rf("#{tmpdir}/*")
109+
prefix = "/app/vendor/yaml-#{version}"
109110

110111
sh "curl http://pyyaml.org/download/libyaml/yaml-#{version}.tar.gz -s -o - | tar vzxf -"
111112

112113
build_command = [
113-
"env CFLAGS=-fPIC ./configure --enable-static --disable-shared --prefix=/app/vendor/yaml-#{version}",
114+
"env CFLAGS=-fPIC ./configure --enable-static --disable-shared --prefix=#{prefix}",
114115
"make",
115116
"make install"
116117
].join(" && ")
117118

118-
sh "vulcan build -v -o #{name}.tgz --source yaml-#{version} --command=\"#{build_command}\""
119+
sh "vulcan build -v -o #{name}.tgz --source yaml-#{version} --prefix=#{prefix} --command=\"#{build_command}\""
119120
s3_upload(tmpdir, name)
120121
end
121122
end
@@ -175,9 +176,11 @@ task "ruby:install", :version do |t, args|
175176
build_ruby_command(full_name, name, prefix, usr_dir, tmpdir, rubygems)
176177

177178
# build ruby
178-
output = "ruby-build-#{version}"
179-
prefix = "/tmp/#{name}"
180-
build_ruby_command(full_name, output, prefix, usr_dir, tmpdir, rubygems)
179+
if major_ruby == "1.8"
180+
output = "ruby-build-#{version}"
181+
prefix = "/app/vendor/ruby-build-#{version}"
182+
build_ruby_command(full_name, output, prefix, usr_dir, tmpdir, rubygems)
183+
end
181184
end
182185
end
183186
end
@@ -246,7 +249,6 @@ task "jruby:install", :version, :ruby_version do |t, args|
246249
launcher = "launcher"
247250

248251
Dir.mktmpdir("jruby-") do |tmpdir|
249-
tmpdir = Dir.mktmpdir("jruby-")
250252
Dir.chdir(tmpdir) do
251253
sh "curl http://jruby.org.s3.amazonaws.com/downloads/#{version}/#{name}.tar.gz -s -o - | tar vzxf -"
252254
sh "rm -rf test"
@@ -336,7 +338,7 @@ task "libffi:install", :version do |t, args|
336338
"rm -rf #{prefix}/lib/#{name}"
337339
].join(" && ")
338340

339-
sh "vulcan build -v -o #{name}.tgz --source #{name} --command=\"#{build_command}\""
341+
sh "vulcan build -v -o #{name}.tgz --source #{name} --prefix=#{prefix} --command=\"#{build_command}\""
340342
s3_upload(tmpdir, name)
341343
end
342344
end

lib/language_pack/base.rb

+7-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def run_stdout(command)
153153
%x{ #{command} 2>/dev/null }
154154
end
155155

156-
# run a shell command and stream the ouput
156+
# run a shell command and stream the output
157157
# @param [String] command to be run
158158
def pipe(command)
159159
output = ""
@@ -222,5 +222,11 @@ def cache_copy(from, to)
222222
system("cp -a #{from}/. #{to}")
223223
end
224224

225+
# check if the cache content exists
226+
# @param [String] relative path of the cache contents
227+
# @param [Boolean] true if the path exists in the cache and false if otherwise
228+
def cache_exists?(path)
229+
File.exists?(cache_base + path)
230+
end
225231
end
226232

lib/language_pack/ruby.rb

+48-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55

66
# base Ruby Language Pack. This is for any base ruby app.
77
class LanguagePack::Ruby < LanguagePack::Base
8+
BUILDPACK_VERSION = "v40"
89
LIBYAML_VERSION = "0.1.4"
910
LIBYAML_PATH = "libyaml-#{LIBYAML_VERSION}"
10-
BUNDLER_VERSION = "1.2.0.rc.2"
11+
BUNDLER_VERSION = "1.2.1"
1112
BUNDLER_GEM_PATH = "bundler-#{BUNDLER_VERSION}"
1213
NODE_VERSION = "0.4.7"
1314
NODE_JS_BINARY_PATH = "node-#{NODE_VERSION}"
@@ -380,7 +381,7 @@ def build_bundler
380381
version = run("env RUBYOPT=\"#{syck_hack}\" bundle version").strip
381382
topic("Installing dependencies using #{version}")
382383

383-
cache_load "vendor/bundle"
384+
load_bundler_cache
384385

385386
bundler_output = ""
386387
Dir.mktmpdir("libyaml-") do |tmpdir|
@@ -402,7 +403,7 @@ def build_bundler
402403
if $?.success?
403404
log "bundle", :status => "success"
404405
puts "Cleaning up the bundler cache."
405-
run "bundle clean"
406+
pipe "bundle clean"
406407
cache_store ".bundle"
407408
cache_store "vendor/bundle"
408409

@@ -582,4 +583,48 @@ def generate_jekyll_site
582583
error "Failed to generate site with jekyll."
583584
end
584585
end
586+
587+
def bundler_cache
588+
"vendor/bundle"
589+
end
590+
591+
def load_bundler_cache
592+
cache_load "vendor"
593+
594+
full_ruby_version = run(%q(ruby -v)).chomp
595+
heroku_metadata = "vendor/heroku"
596+
ruby_version_cache = "#{heroku_metadata}/ruby_version"
597+
buildpack_version_cache = "vendor/heroku/buildpack_version"
598+
599+
# fix bug from v37 deploy
600+
if File.exists?("vendor/ruby_version")
601+
puts "Broken cache detected. Purging build cache."
602+
cache_clear("vendor")
603+
FileUtils.rm_rf("vendor/ruby_version")
604+
purge_bundler_cache
605+
# fix bug introduced in v38
606+
elsif !File.exists?(buildpack_version_cache) && File.exists?(ruby_version_cache)
607+
puts "Broken cache detected. Purging build cache."
608+
purge_bundler_cache
609+
elsif cache_exists?(bundler_cache) && !(File.exists?(ruby_version_cache) && full_ruby_version == File.read(ruby_version_cache).chomp)
610+
puts "Ruby version change detected. Clearing bundler cache."
611+
purge_bundler_cache
612+
end
613+
614+
FileUtils.mkdir_p(heroku_metadata)
615+
File.open(ruby_version_cache, 'w') do |file|
616+
file.puts full_ruby_version
617+
end
618+
File.open(buildpack_version_cache, 'w') do |file|
619+
file.puts BUILDPACK_VERSION
620+
end
621+
cache_store heroku_metadata
622+
end
623+
624+
def purge_bundler_cache
625+
FileUtils.rm_rf(bundler_cache)
626+
cache_clear bundler_cache
627+
# need to reinstall language pack gems
628+
install_language_pack_gems
629+
end
585630
end

0 commit comments

Comments
 (0)