aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2014-03-07 16:42:20 +0000
committerMike McQuaid2014-03-08 01:12:02 +0000
commitaa15b265e531fa66ddda6136a4aaaa2a601159ab (patch)
tree81af331ea1e3aaf006f28f2ef2917bd189ccde97 /Library
parenta5bed1ea312fb3936b5cd2f5b530fa5b841948a3 (diff)
downloadbrew-aa15b265e531fa66ddda6136a4aaaa2a601159ab.tar.bz2
pull: general cleanup/fixes.
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Contributions/cmd/brew-pull.rb34
1 files changed, 18 insertions, 16 deletions
diff --git a/Library/Contributions/cmd/brew-pull.rb b/Library/Contributions/cmd/brew-pull.rb
index 79ef9cb61..8e3a5112d 100755
--- a/Library/Contributions/cmd/brew-pull.rb
+++ b/Library/Contributions/cmd/brew-pull.rb
@@ -17,7 +17,7 @@ if ARGV[0] == '--rebase'
onoe 'You meant `git pull --rebase`.'
end
-ARGV.named.each do|arg|
+ARGV.named.each do |arg|
if arg.to_i > 0
url = 'https://github.com/Homebrew/homebrew/pull/' + arg
else
@@ -59,7 +59,6 @@ ARGV.named.each do|arg|
ohai 'Applying patch'
patch_args = []
- patch_args << '--signoff' unless ARGV.include? '--clean'
# Normally we don't want whitespace errors, but squashing them can break
# patches so an option is provided to skip this step.
if ARGV.include? '--ignore-whitespace' or ARGV.include? '--clean'
@@ -76,16 +75,24 @@ ARGV.named.each do|arg|
odie 'Patch failed to apply: aborted.'
end
- if issue and not ARGV.include? '--clean'
+ changed_formulae = []
+
+ `git diff #{revision}.. --name-status`.each_line do |line|
+ status, filename = line.split
+ # Don't try and do anything to removed files.
+ if (status =~ /A|M/) && (filename =~ %r{Formula/.+\.rb$}) || tap(url)
+ formula = File.basename(filename, '.rb')
+ changed_formulae << Formula.factory(formula)
+ end
+ end
+ if issue && !ARGV.include?('--clean')
ohai "Patch closes issue ##{issue}"
message = `git log HEAD^.. --format=%B`
# If this is a pull request, append a close message.
unless message.include? 'Closes #'
- issueline = "Closes ##{issue}."
- signed = 'Signed-off-by:'
- message = message.gsub signed, issueline + "\n\n" + signed
- safe_system 'git', 'commit', '--amend', '-q', '-m', message
+ message += "\nCloses ##{issue}."
+ safe_system 'git', 'commit', '--amend', '--signoff', '-q', '-m', message
end
end
@@ -93,15 +100,10 @@ ARGV.named.each do|arg|
safe_system 'git', '--no-pager', 'diff', "#{revision}..", '--stat'
if ARGV.include? '--install'
- `git diff #{revision}.. --name-status`.each_line do |line|
- status, filename = line.split
- # Don't try and do anything to removed files.
- if (status == 'A' or status == 'M') and filename.match /Formula\/.+\.rb$/ or tap url
- formula = File.basename(filename, '.rb')
- ohai "Installing #{formula}"
- install = Formula.factory(formula).installed? ? 'upgrade' : 'install'
- safe_system 'brew', install, '--debug', '--fresh', formula
- end
+ changed_formulae.each do |f|
+ ohai "Installing #{formula}"
+ install = f.installed? ? 'upgrade' : 'install'
+ safe_system 'brew', install, '--debug', '--fresh', formula
end
end
end