aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-04-17 14:05:47 -0500
committerJack Nagel2013-04-17 14:12:41 -0500
commit7ea15918bb15aa6f8570db3d08be88240131088e (patch)
tree65fd1db9a8e272a50140d9a22d8dd626011cf5a8 /Library
parenta7714a804b028523d3c213ae9cf2cb150876bec4 (diff)
downloadbrew-7ea15918bb15aa6f8570db3d08be88240131088e.tar.bz2
Reorder dep spec types by frequency
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/dependency_collector.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Homebrew/dependency_collector.rb b/Library/Homebrew/dependency_collector.rb
index bf5c014f3..f4c5ed3ac 100644
--- a/Library/Homebrew/dependency_collector.rb
+++ b/Library/Homebrew/dependency_collector.rb
@@ -50,16 +50,14 @@ class DependencyCollector
def parse_spec spec, tag
case spec
- when Symbol
- parse_symbol_spec(spec, tag)
when String
if tag && LANGUAGE_MODULES.include?(tag)
LanguageModuleDependency.new(tag, spec)
else
Dependency.new(spec, tag)
end
- when Formula
- Dependency.new(spec.name, tag)
+ when Symbol
+ parse_symbol_spec(spec, tag)
when Dependency, Requirement
spec
when Class
@@ -68,6 +66,8 @@ class DependencyCollector
else
raise "#{spec} is not a Requirement subclass"
end
+ when Formula
+ Dependency.new(spec.name, tag)
else
raise "Unsupported type #{spec.class} for #{spec}"
end
@@ -78,13 +78,13 @@ class DependencyCollector
when :autoconf, :automake, :bsdmake, :libtool, :libltdl
# Xcode no longer provides autotools or some other build tools
autotools_dep(spec, tag)
+ when :x11 then X11Dependency.new(spec.to_s, tag)
when *X11Dependency::Proxy::PACKAGES
x11_dep(spec, tag)
when :cairo, :pixman
# We no longer use X11 psuedo-deps for cairo or pixman,
# so just return a standard formula dependency.
Dependency.new(spec.to_s, tag)
- when :x11 then X11Dependency.new(spec.to_s, tag)
when :xcode then XcodeDependency.new(tag)
when :mysql then MysqlDependency.new(tag)
when :postgresql then PostgresqlDependency.new(tag)
d='n165' href='#n165'>165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323