aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorMike McQuaid2015-02-26 11:15:32 +0000
committerMike McQuaid2015-02-26 11:32:42 +0000
commit9891e7839b2a61061d2ac5bcfbbe6cacaeef94f7 (patch)
tree54c9d75371dbda7afda5ef019c1753a5701c9631 /Library/Homebrew/cmd
parent7dfbb3858925f6cead8177e205b15ca0d8e69639 (diff)
downloadhomebrew-9891e7839b2a61061d2ac5bcfbbe6cacaeef94f7.tar.bz2
Remove SourceForge references.
It was fun but we just love Bintray more than you. Closes #37211. Closes #37213. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/test-bot.rb20
1 files changed, 1 insertions, 19 deletions
diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb
index 6ba85396f..8ea39bf5c 100644
--- a/Library/Homebrew/cmd/test-bot.rb
+++ b/Library/Homebrew/cmd/test-bot.rb
@@ -452,11 +452,7 @@ module Homebrew
bottle_args = ["--rb", formula_name]
if @tap
tap_user, tap_repo = @tap.split "/"
- if ENV["HOMEBREW_SOURCEFORGE_TESTING"]
- bottle_args << "--root-url=#{BottleSpecification::DEFAULT_ROOT_URL}/#{tap_repo}"
- else
- bottle_args << "--root-url=#{BottleSpecification::DEFAULT_DOMAIN}/#{Bintray.repository(@tap)}"
- end
+ bottle_args << "--root-url=#{BottleSpecification::DEFAULT_DOMAIN}/#{Bintray.repository(@tap)}"
end
bottle_args << { :puts_output_on_success => true }
test "brew", "bottle", *bottle_args
@@ -746,7 +742,6 @@ module Homebrew
tag = pr ? "pr-#{pr}" : "testing-#{number}"
safe_system "git", "push", "--force", remote, "master:master", ":refs/tags/#{tag}"
- # Bintray upload (will take over soon)
bintray_repo = Bintray.repository(tap)
bintray_repo_url = "https://api.bintray.com/packages/homebrew/#{bintray_repo}"
formula_packaged = {}
@@ -775,19 +770,6 @@ module Homebrew
puts
end
- # SourceForge upload (will be removed soon)
- path = "/home/frs/project/m/ma/machomebrew/Bottles/"
- if tap
- tap_user, tap_repo = tap.split "/"
- path += "#{tap_repo}/"
- end
- url = "BrewTestBot,machomebrew@frs.sourceforge.net:#{path}"
-
- rsync_args = %w[--partial --progress --human-readable --compress]
- rsync_args += Dir["*.bottle*.tar.gz"] + [url]
-
- safe_system "rsync", *rsync_args
-
safe_system "git", "tag", "--force", tag
safe_system "git", "push", "--force", remote, "refs/tags/#{tag}"
return