| 
									
										
										
										
											2019-04-19 15:38:03 +09:00
										 |  |  | # frozen_string_literal: true | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-03 13:09:07 +01:00
										 |  |  | require "options" | 
					
						
							| 
									
										
										
										
											2013-01-26 20:05:39 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | module Dependable | 
					
						
							| 
									
										
										
										
											2018-10-18 21:42:43 -04:00
										 |  |  |   # `:run` and `:linked` are no longer used but keep them here to avoid them being | 
					
						
							| 
									
										
										
										
											2018-03-19 10:11:08 +00:00
										 |  |  |   # misused in future. | 
					
						
							| 
									
										
										
										
											2018-03-05 10:36:39 +00:00
										 |  |  |   RESERVED_TAGS = [:build, :optional, :recommended, :run, :test, :linked].freeze | 
					
						
							| 
									
										
										
										
											2013-01-26 20:05:39 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def build? | 
					
						
							|  |  |  |     tags.include? :build | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def optional? | 
					
						
							|  |  |  |     tags.include? :optional | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def recommended? | 
					
						
							|  |  |  |     tags.include? :recommended | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-05 10:36:39 +00:00
										 |  |  |   def test? | 
					
						
							|  |  |  |     tags.include? :test | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-10 23:45:06 -05:00
										 |  |  |   def required? | 
					
						
							| 
									
										
										
										
											2018-03-05 10:36:39 +00:00
										 |  |  |     !build? && !test? && !optional? && !recommended? | 
					
						
							| 
									
										
										
										
											2013-05-10 23:45:06 -05:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-15 10:50:38 +01:00
										 |  |  |   def option_tags | 
					
						
							|  |  |  |     tags - RESERVED_TAGS | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-26 20:05:39 -06:00
										 |  |  |   def options | 
					
						
							| 
									
										
										
										
											2015-12-15 10:50:38 +01:00
										 |  |  |     Options.create(option_tags) | 
					
						
							| 
									
										
										
										
											2013-01-26 20:05:39 -06:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2018-03-24 16:55:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def prune_from_option?(build) | 
					
						
							|  |  |  |     return if !optional? && !recommended? | 
					
						
							| 
									
										
										
										
											2018-09-17 02:45:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-24 16:55:16 +00:00
										 |  |  |     build.without?(self) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def prune_if_build_and_not_dependent?(dependent, formula = nil) | 
					
						
							|  |  |  |     return false unless build? | 
					
						
							|  |  |  |     return dependent.installed? unless formula | 
					
						
							| 
									
										
										
										
											2018-09-17 02:45:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-24 16:55:16 +00:00
										 |  |  |     dependent != formula | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2013-01-26 20:05:39 -06:00
										 |  |  | end |