flgen 0.16.1 → 0.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9ffab1952f67689d9675b1a5f0ee47b4905b7ea098b5013b2467cfa54360e311
4
- data.tar.gz: bd33d9997f06c4b6a00ab54a2df2fefe9ff86d9eb766d098ed787e500f289db6
3
+ metadata.gz: 5660041e78d446e6127ef86bb45e93468f000750b2917df3e0b34de33ab4cfd0
4
+ data.tar.gz: f78fa09b2bac383f4f38270ad31ed7d67c98ea06e7709d2fd2aacd7a6b6d322d
5
5
  SHA512:
6
- metadata.gz: d698fd487524fd93687db00ff03b73351579fd8499092960f6b077f42afc3fdbc2910926e95bd8a00e9d08cc47c60baa1478cf17309c008bc131371af1cd977f
7
- data.tar.gz: 66c01f900315edc6d7355281112be92ef2e28eccfc174049c611959a5385b56b9ba1a9ee73f2102e34e250ead4a1a3805440c3e6c07a109d2c367312d279b1f1
6
+ metadata.gz: d3b76b55b57b5e52a316a9eed0c7051e6c1333536b9ead179f3b0616920a1bb1524af76f6d2a6e921553083cdb4d04e53f5f28742083312dbd0cadc88514ab45
7
+ data.tar.gz: 13a7d45bd399cc0bb57d52084599de7912f894844092d6054289b4c8a555ff7cb4ea07c6979206ee16548409afdb5ff3ae94a452426a79778abdb9cc1bda650a
data/README.md CHANGED
@@ -24,19 +24,23 @@ $ gem install flgen
24
24
 
25
25
  FLGen prives APIs listed below to describe your filelists.
26
26
 
27
- * `source_file(path, from: :current, base: nil)`
27
+ * `source_file(path, from: nil)`
28
28
  * Add the given source file to the current filelist.
29
- * `file_list(path, from: :root, base: nil)`
29
+ * `file_list(path, from: nil)`
30
30
  * Load the given filelist.
31
- * `include_directory(path, from: :current, base: nil)`
31
+ * `library_file(path, from: nil)`
32
+ * Add the given file to the list of library files.
33
+ * `include_directory(path, from: nil)`
32
34
  * Add the given directory to the list of include direcotries.
35
+ * `library_directory(path, from: nil)`
36
+ * Add the given directory to the list of library directories.
33
37
  * `define_macro(name, value = nil)`
34
38
  * Define a text macro.
35
39
  * `macro?(name)`/`macro_defined?(name)`
36
40
  * Return `true` if the given macro is defined.
37
- * `file?(path, from: :current, base: nil)`
41
+ * `file?(path, from: :current)`
38
42
  * Return `treu` if the given file exists.
39
- * `directory?(path, from: :current, base: nil)`
43
+ * `directory?(path, from: :current)`
40
44
  * Return `true` if the given directory exists.
41
45
  * `env?(name)`
42
46
  * Return `true` if the givne environment variable is defined.
@@ -50,6 +54,10 @@ FLGen prives APIs listed below to describe your filelists.
50
54
  * If `tool` is specified the given argument is added only when `tool` is matched with the targe tool.
51
55
  * `target_tool?(tool)`
52
56
  * Return `true` if the given tool is matched with the targe tool.
57
+ * `default_search_path(**seach_paths)`
58
+ * Change the default behavior when the `from` argument is not specified.
59
+ * `reset_default_search_path(*target_types)`
60
+ * Reset the default behavior when the `from` argument is not specified.
53
61
 
54
62
  FLGen's filelist is designed as an inernal DSL with Ruby. Therefore you can use Ruby's syntax. For example:
55
63
 
@@ -61,10 +69,12 @@ else
61
69
  end
62
70
  ```
63
71
 
64
- ### About `from`/`base` arguments
72
+ ### About the `from` argument
65
73
 
66
74
  The `from` argument is to specify how to search the given file or directory. You can specify one of three below.
67
75
 
76
+ * a directory path
77
+ * Seach the given file or directory from the directory path specified by the `from` argument.
68
78
  * `:current`
69
79
  * Search the given file or directory from the directory where the current filelist is.
70
80
  * `:root`
@@ -74,9 +84,31 @@ The `from` argument is to specify how to search the given file or directory. You
74
84
  * `:local_root`
75
85
  * Search the given file or directory from the repository root directory where the current filelist belongs to.
76
86
 
77
- The `from` argument is ignored if the given path is an absolute path or the `base` argument is specified.
87
+ Default behaviors when the `from` argument is not spcified are listed below:
78
88
 
79
- The `base` argument is to specify the serach direcotry for the given file or directory.
89
+ * `source_file`
90
+ * `:current`
91
+ * `file_list`
92
+ * `:root`
93
+ * `library_file`
94
+ * `:current`
95
+ * `include_directory`
96
+ * `:current`
97
+ * `library_directory`
98
+ * `:current`
99
+
100
+ You can change the above default behaviors by using the `default_search_path` API.
101
+ In addition, you can reset the default behaviors by using the `reset_default_search_path` API.
102
+
103
+ ```ruby
104
+ default_seach_path source_file: :root, file_list: :current
105
+ source_file 'foo.sv' # FLGen will search the 'foo.sv' file from the root directories.
106
+ file_list 'bar.list.rb' # FLGen will eaarch the 'bar.list.rb' file from the directory where this file list is.
107
+
108
+ reset_default_search_path :source_file, :file_list
109
+ source_file 'baz.sv' # FLGen will search the 'baz.sv' file from the directory where this file list is.
110
+ file_list 'qux.list.rb' # FLGen will eaarch the 'qux.list.rb' file from the root directories.
111
+ ```
80
112
 
81
113
  #### Example
82
114
 
@@ -141,7 +173,7 @@ You can find an exmpale from [here](https://github.com/pezy-computing/flgen/tree
141
173
  ```
142
174
  $ flgen --output=filelist.f sample/foo.list.rb
143
175
  $ cat filelist.f
144
- // flgen version 0.14.0
176
+ // flgen version 0.17.0
145
177
  // applied arguments
146
178
  // --output=filelist.f
147
179
  // sample/foo.list.rb
@@ -149,6 +181,8 @@ $ cat filelist.f
149
181
  +define+BAR_1=1
150
182
  +incdir+/home/taichi/workspace/pezy/flgen/sample/bar
151
183
  +incdir+/home/taichi/workspace/pezy/flgen/sample/bar/baz
184
+ -y /home/taichi/workspace/pezy/flgen/sample/bar/bar_lib
185
+ -v /home/taichi/workspace/pezy/flgen/sample/foo_lib.sv
152
186
  -foo_0
153
187
  /home/taichi/workspace/pezy/flgen/sample/foo.sv
154
188
  /home/taichi/workspace/pezy/flgen/sample/bar/bar.sv
@@ -27,6 +27,15 @@ module FLGen
27
27
  attr_reader :value
28
28
  end
29
29
 
30
+ class LibraryFile < Base
31
+ def initialize(path)
32
+ super(:library_file, nil)
33
+ @path = path
34
+ end
35
+
36
+ attr_reader :path
37
+ end
38
+
30
39
  class Include < Base
31
40
  def initialize(path)
32
41
  super(:include, nil)
@@ -36,6 +45,15 @@ module FLGen
36
45
  attr_reader :path
37
46
  end
38
47
 
48
+ class LibraryDirectory < Base
49
+ def initialize(path)
50
+ super(:library_directory, nil)
51
+ @path = path
52
+ end
53
+
54
+ attr_reader :path
55
+ end
56
+
39
57
  class Generic < Base
40
58
  def initialize(argument, tool)
41
59
  super(:generic, tool)
data/lib/flgen/context.rb CHANGED
@@ -12,14 +12,22 @@ module FLGen
12
12
  @source_files ||= []
13
13
  end
14
14
 
15
- def add_source_file(root, path)
15
+ def add_source_file(path)
16
16
  return if runtime?
17
17
 
18
- file = SourceFile.new(root, path)
18
+ file = SourceFile.new(path)
19
19
  add_source_file?(file) &&
20
20
  (source_files << file.remove_ext(@options[:rm_ext]))
21
21
  end
22
22
 
23
+ def add_library_file(path)
24
+ return if runtime?
25
+
26
+ file = SourceFile.new(path)
27
+ add_library_file?(file) &&
28
+ add_compile_argument(Arguments::LibraryFile.new(file))
29
+ end
30
+
23
31
  def define_macro(macro, value = nil)
24
32
  k, v =
25
33
  if value.nil? && macro.respond_to?(:split)
@@ -35,11 +43,17 @@ module FLGen
35
43
  end
36
44
 
37
45
  def add_include_directory(directory)
38
- return if include_directory_already_added?(directory)
46
+ return if directory_already_added?(:include, directory)
39
47
 
40
48
  add_compile_argument(Arguments::Include.new(directory))
41
49
  end
42
50
 
51
+ def add_library_directory(directory)
52
+ return if directory_already_added?(:library_directory, directory)
53
+
54
+ add_compile_argument(Arguments::LibraryDirectory.new(directory))
55
+ end
56
+
43
57
  def add_compile_argument(argument)
44
58
  return if runtime?
45
59
 
@@ -67,7 +81,7 @@ module FLGen
67
81
  end
68
82
 
69
83
  def add_source_file?(file)
70
- target_ext?(file) && !source_file_already_added?(file)
84
+ target_ext?(file) && source_files.none?(file)
71
85
  end
72
86
 
73
87
  def target_ext?(file)
@@ -77,16 +91,8 @@ module FLGen
77
91
  file.match_ext?(@options[:collect_ext])
78
92
  end
79
93
 
80
- def source_file_already_added?(file)
81
- return true if source_files.include?(file.path)
82
- return true if checksums.include?(file.checksum)
83
-
84
- checksums << file.checksum
85
- false
86
- end
87
-
88
- def checksums
89
- @checksums ||= []
94
+ def add_library_file?(file)
95
+ arguments.none? { |arg| arg.type == :library_file && arg.path == file }
90
96
  end
91
97
 
92
98
  def add_macro_definition(name, value)
@@ -96,9 +102,9 @@ module FLGen
96
102
  add_compile_argument(Arguments::Define.new(name, value))
97
103
  end
98
104
 
99
- def include_directory_already_added?(path)
105
+ def directory_already_added?(type, path)
100
106
  arguments
101
- .any? { |argument| argument.type == :include && argument.path == path }
107
+ .any? { |argument| argument.type == type && argument.path == path }
102
108
  end
103
109
 
104
110
  def add_argument(argument)
@@ -6,16 +6,30 @@ module FLGen
6
6
  @context = context
7
7
  @path = path
8
8
  @root_directories = extract_root
9
+ @default_search_path = {}
9
10
  end
10
11
 
11
- def file_list(path, from: :root, base: nil, raise_error: true)
12
+ def default_search_path(**seach_paths)
13
+ @default_search_path.update(seach_paths)
14
+ end
15
+
16
+ def reset_default_search_path(*target_types)
17
+ target_types.each { |type| @default_search_path.delete(type) }
18
+ end
19
+
20
+ def file_list(path, from: nil, raise_error: true)
21
+ location = caller_location
22
+ load_file_list(path, from, location, raise_error)
23
+ end
24
+
25
+ def source_file(path, from: nil, raise_error: true)
12
26
  location = caller_location
13
- load_file_list(path, from, base, location, raise_error)
27
+ add_file_entry(path, from, location, raise_error, :source_file)
14
28
  end
15
29
 
16
- def source_file(path, from: :current, base: nil, raise_error: true)
30
+ def library_file(path, from: nil, raise_error: true)
17
31
  location = caller_location
18
- add_source_file(path, from, base, location, raise_error)
32
+ add_file_entry(path, from, location, raise_error, :library_file)
19
33
  end
20
34
 
21
35
  def define_macro(macro, value = nil)
@@ -28,19 +42,24 @@ module FLGen
28
42
 
29
43
  alias_method :macro_defined?, :macro?
30
44
 
31
- def include_directory(path, from: :current, base: nil, raise_error: true)
45
+ def include_directory(path, from: nil, raise_error: true)
46
+ location = caller_location
47
+ add_directory_entry(path, from, location, raise_error, :include_directory)
48
+ end
49
+
50
+ def library_directory(path, from: nil, raise_error: true)
32
51
  location = caller_location
33
- add_include_directory(path, from, base, location, raise_error)
52
+ add_directory_entry(path, from, location, raise_error, :library_directory)
34
53
  end
35
54
 
36
- def file?(path, from: :current, base: nil)
55
+ def file?(path, from: :current)
37
56
  location = caller_location
38
- !lookup_root(path, from, base, location, :file?).nil?
57
+ !extract_file_path(path, from, location, :file).nil?
39
58
  end
40
59
 
41
- def directory?(path, from: :current, base: nil)
60
+ def directory?(path, from: :current)
42
61
  location = caller_location
43
- !lookup_root(path, from, base, location, :directory?).nil?
62
+ !extract_directory_path(path, from, location, :directory).nil?
44
63
  end
45
64
 
46
65
  def env?(name)
@@ -81,14 +100,14 @@ module FLGen
81
100
  File.exist?(path.join('.git').to_s)
82
101
  end
83
102
 
84
- def load_file_list(path, from, base, location, raise_error)
85
- unless (root = lookup_root(path, from, base, location, :file?))
103
+ def load_file_list(path, from, location, raise_error)
104
+ unless (list_path = extract_file_path(path, from, location, :file_list))
86
105
  raise_no_entry_error(path, location, raise_error)
87
106
  return
88
107
  end
89
108
 
90
109
  # Need to File.realpath to resolve symblic link
91
- list_path = File.realpath(concat_path(root, path))
110
+ list_path = File.realpath(list_path)
92
111
  file_list_already_loaded?(list_path) && return
93
112
 
94
113
  @context.loaded_file_lists << list_path
@@ -100,45 +119,61 @@ module FLGen
100
119
  @context.loaded_file_lists.include?(path)
101
120
  end
102
121
 
103
- def add_source_file(path, from, base, location, raise_error)
104
- unless (root = lookup_root(path, from, base, location, :file?))
122
+ def add_file_entry(path, from, location, raise_error, type)
123
+ unless (file_path = extract_file_path(path, from, location, type))
105
124
  raise_no_entry_error(path, location, raise_error)
106
125
  return
107
126
  end
108
127
 
109
- @context.add_source_file(root, path)
128
+ method = "add_#{type}".to_sym
129
+ @context.__send__(method, file_path)
110
130
  end
111
131
 
112
- def add_include_directory(path, from, base, location, raise_error)
113
- unless (root = lookup_root(path, from, base, location, :directory?))
132
+ def add_directory_entry(path, from, location, raise_error, type)
133
+ unless (directory_path = extract_directory_path(path, from, location, type))
114
134
  raise_no_entry_error(path, location, raise_error)
115
135
  return
116
136
  end
117
137
 
118
- directory_path = concat_path(root, path)
119
- @context.add_include_directory(directory_path)
138
+ method = "add_#{type}".to_sym
139
+ @context.__send__(method, directory_path)
120
140
  end
121
141
 
122
142
  def caller_location
123
143
  caller_locations(2, 1).first
124
144
  end
125
145
 
126
- def lookup_root(path, from, base, location, checker)
127
- search_root(path, from, base, location)
128
- .find { |root| File.__send__(checker, concat_path(root, path)) }
146
+ def extract_file_path(path, from, location, type)
147
+ extract_path(path, from, location, type, :file?)
129
148
  end
130
149
 
131
- def search_root(path, from, base, location)
150
+ def extract_directory_path(path, from, location, type)
151
+ extract_path(path, from, location, type, :directory?)
152
+ end
153
+
154
+ def extract_path(path, from, location, type, checker)
155
+ search_root(path, from, location, type)
156
+ .map { |root| File.expand_path(path, root) }
157
+ .find { |abs_path| File.__send__(checker, abs_path) && abs_path }
158
+ end
159
+
160
+ DEFAULT_SEARCH_PATH = {
161
+ file_list: :root, source_file: :current, library_file: :current, file: :current,
162
+ include_directory: :current, library_directory: :current, directory: :current
163
+ }.freeze
164
+
165
+ def search_root(path, from, location, type)
166
+ search_path = from || @default_search_path[type] || DEFAULT_SEARCH_PATH[type]
132
167
  if absolute_path?(path)
133
168
  ['']
134
- elsif !base.nil?
135
- [base]
136
- elsif from == :current
169
+ elsif search_path == :current
137
170
  [current_directory(location)]
138
- elsif from == :local_root
171
+ elsif search_path == :local_root
139
172
  [@root_directories.last]
140
- else
173
+ elsif search_path == :root
141
174
  @root_directories
175
+ else
176
+ [search_path]
142
177
  end
143
178
  end
144
179
 
@@ -154,10 +189,6 @@ module FLGen
154
189
  File.dirname(path)
155
190
  end
156
191
 
157
- def concat_path(root, path)
158
- File.expand_path(path, root)
159
- end
160
-
161
192
  def raise_no_entry_error(path, location, raise_error)
162
193
  return unless raise_error
163
194
 
@@ -18,6 +18,14 @@ module FLGen
18
18
  "+incdir+#{directory}"
19
19
  end
20
20
 
21
+ def format_libarary_directory(directory)
22
+ "-y #{directory}"
23
+ end
24
+
25
+ def format_libarary_file(file)
26
+ "-v #{file}"
27
+ end
28
+
21
29
  def fomrat_argument(argument)
22
30
  argument
23
31
  end
@@ -18,6 +18,14 @@ module FLGen
18
18
  "-i #{directory}"
19
19
  end
20
20
 
21
+ def format_libarary_directory(directory)
22
+ "-sourcelibdir #{directory}"
23
+ end
24
+
25
+ def format_libarary_file(file)
26
+ "-sourcelibfile #{file}"
27
+ end
28
+
21
29
  def fomrat_argument(argument)
22
30
  argument
23
31
  end
@@ -23,6 +23,8 @@ module FLGen
23
23
  print_header(io)
24
24
  print_macros(io)
25
25
  print_include_directoris(io)
26
+ print_library_direcotries(io)
27
+ print_library_files(io)
26
28
  print_arguments(io)
27
29
  print_source_files(io)
28
30
  end
@@ -33,31 +35,24 @@ module FLGen
33
35
  return unless print_header?
34
36
 
35
37
  header_lines.each do |line|
36
- io.puts(format_header_line(line))
38
+ print_value(io, :format_header_line, line)
37
39
  end
38
40
  end
39
41
 
42
+ def format_header_line(_line)
43
+ end
44
+
40
45
  def print_header?
41
46
  @context.options[:output] &&
42
47
  @context.options[:print_header] && !@context.options[:source_file_only]
43
48
  end
44
49
 
45
- def no_arguments?(type)
46
- @context.arguments.none? { |argument| argument.type == type }
47
- end
48
-
49
- def each_argument(type, &block)
50
- @context.arguments.each do |argument|
51
- argument.type == type && block.call(argument)
52
- end
53
- end
54
-
55
50
  def print_macros(io)
56
51
  return if source_file_only? || no_arguments?(:define)
57
52
 
58
53
  pre_macros(io)
59
54
  each_argument(:define) do |argument|
60
- io.puts(format_macro(argument.name, argument.value))
55
+ print_value(io, :format_macro, argument.name, argument.value)
61
56
  end
62
57
  post_macros(io)
63
58
  end
@@ -65,6 +60,9 @@ module FLGen
65
60
  def pre_macros(_io)
66
61
  end
67
62
 
63
+ def format_macro(_name, _value)
64
+ end
65
+
68
66
  def post_macros(_io)
69
67
  end
70
68
 
@@ -73,7 +71,7 @@ module FLGen
73
71
 
74
72
  pre_include_directories(io)
75
73
  each_argument(:include) do |argument|
76
- io.puts(format_include_directory(argument.path))
74
+ print_value(io, :format_include_directory, argument.path)
77
75
  end
78
76
  post_include_directories(io)
79
77
  end
@@ -81,15 +79,56 @@ module FLGen
81
79
  def pre_include_directories(_io)
82
80
  end
83
81
 
82
+ def format_include_directory(_path)
83
+ end
84
+
84
85
  def post_include_directories(_io)
85
86
  end
86
87
 
88
+ def print_library_direcotries(io)
89
+ return if source_file_only? || no_arguments?(:library_directory)
90
+
91
+ pre_library_direcotries(io)
92
+ each_argument(:library_directory) do |argument|
93
+ print_value(io, :format_libarary_directory, argument.path)
94
+ end
95
+ post_library_direcotries(io)
96
+ end
97
+
98
+ def pre_library_direcotries(_io)
99
+ end
100
+
101
+ def format_libarary_directory(_path)
102
+ end
103
+
104
+ def post_library_direcotries(_io)
105
+ end
106
+
107
+ def print_library_files(io)
108
+ return if source_file_only? || no_arguments?(:library_file)
109
+
110
+ pre_library_files(io)
111
+ each_argument(:library_file) do |argument|
112
+ print_value(io, :format_libarary_file, argument.path)
113
+ end
114
+ post_library_files(io)
115
+ end
116
+
117
+ def pre_library_files(_io)
118
+ end
119
+
120
+ def format_libarary_file(_path)
121
+ end
122
+
123
+ def post_library_files(_io)
124
+ end
125
+
87
126
  def print_arguments(io)
88
127
  return if source_file_only? || no_arguments?(:generic)
89
128
 
90
129
  pre_arguments(io)
91
130
  each_argument(:generic) do |argument|
92
- io.puts(fomrat_argument(argument.argument))
131
+ print_value(io, :fomrat_argument, argument.argument)
93
132
  end
94
133
  post_arguments(io)
95
134
  end
@@ -97,6 +136,9 @@ module FLGen
97
136
  def pre_arguments(io)
98
137
  end
99
138
 
139
+ def fomrat_argument(_argument)
140
+ end
141
+
100
142
  def post_arguments(io)
101
143
  end
102
144
 
@@ -109,7 +151,7 @@ module FLGen
109
151
 
110
152
  pre_source_files(io)
111
153
  @context.source_files.each do |file|
112
- io.puts(format_file_path(file.path))
154
+ print_value(io, :format_file_path, file)
113
155
  end
114
156
  post_source_files(io)
115
157
  end
@@ -121,7 +163,25 @@ module FLGen
121
163
  def pre_source_files(_io)
122
164
  end
123
165
 
166
+ def format_file_path(_path)
167
+ end
168
+
124
169
  def post_source_files(_io)
125
170
  end
171
+
172
+ def print_value(io, fomrtatter, *args)
173
+ line = __send__(fomrtatter, *args)
174
+ line && io.puts(line)
175
+ end
176
+
177
+ def no_arguments?(type)
178
+ @context.arguments.none? { |argument| argument.type == type }
179
+ end
180
+
181
+ def each_argument(type, &block)
182
+ @context.arguments.each do |argument|
183
+ argument.type == type && block.call(argument)
184
+ end
185
+ end
126
186
  end
127
187
  end
@@ -2,11 +2,20 @@
2
2
 
3
3
  module FLGen
4
4
  class SourceFile
5
- def initialize(root, path)
6
- @path = File.join(root, path)
5
+ def initialize(path, checksum = nil)
6
+ @path = path
7
+ @checksum = checksum
7
8
  end
8
9
 
9
10
  attr_reader :path
11
+ alias_method :to_s, :path
12
+
13
+ def ==(other)
14
+ case other
15
+ when SourceFile then path == other.path || checksum == other.checksum
16
+ else path == other
17
+ end
18
+ end
10
19
 
11
20
  def match_ext?(ext_list)
12
21
  return false if ext_list.nil? || ext_list.empty?
@@ -18,8 +27,8 @@ module FLGen
18
27
  def remove_ext(ext_list)
19
28
  return self unless match_ext?(ext_list)
20
29
 
21
- path = Pathname.new(@path).sub_ext('').to_s
22
- self.class.new('', path)
30
+ path_no_ext = Pathname.new(path).sub_ext('').to_s
31
+ self.class.new(path_no_ext, checksum)
23
32
  end
24
33
 
25
34
  def checksum
data/lib/flgen/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FLGen
4
- VERSION = '0.16.1'
4
+ VERSION = '0.18.0'
5
5
  end
@@ -34,9 +34,6 @@ module FLGen
34
34
  io.puts('set_property include_dirs $flgen_include_directories [current_fileset]')
35
35
  end
36
36
 
37
- def fomrat_argument(_)
38
- end
39
-
40
37
  def pre_source_files(io)
41
38
  io.puts('set flgen_source_files {}')
42
39
  end
@@ -2,5 +2,7 @@ define_macro :BAR_0
2
2
  define_macro :BAR_1, 1
3
3
  compile_argument '-bar_0', tool: :vcs
4
4
  runtime_argument '-bar_1', tool: :vcs
5
- source_file 'sample/bar/bar.sv', from: :root
6
- file_list 'baz/baz.list.rb', from: :current
5
+
6
+ library_directory 'bar_lib'
7
+ source_file 'sample/bar/bar.sv', from: :root
8
+ file_list 'baz/baz.list.rb', from: :current
File without changes
data/sample/foo.list.rb CHANGED
@@ -1,5 +1,6 @@
1
1
  compile_argument '-foo_0'
2
2
  runtime_argument '-foo_1'
3
3
  include_directory 'bar'
4
- source_file 'foo.sv'
4
+ source_file 'foo.sv'
5
+ library_file 'foo_lib.sv'
5
6
  file_list 'sample/bar/bar.list.rb'
data/sample/foo_lib.sv ADDED
@@ -0,0 +1,2 @@
1
+ module foo_lib;
2
+ endmodule
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flgen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.1
4
+ version: 0.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taichi Ishitani
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-30 00:00:00.000000000 Z
11
+ date: 2023-07-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bump
@@ -133,10 +133,12 @@ files:
133
133
  - lib/flgen/vivado_tcl_formatter.rb
134
134
  - sample/bar/bar.list.rb
135
135
  - sample/bar/bar.sv
136
+ - sample/bar/bar_lib/.gitkeep
136
137
  - sample/bar/baz/baz.list.rb
137
138
  - sample/bar/baz/baz.sv
138
139
  - sample/foo.list.rb
139
140
  - sample/foo.sv
141
+ - sample/foo_lib.sv
140
142
  homepage: https://github.com/pezy-computing/flgen
141
143
  licenses:
142
144
  - Apache-2.0
@@ -160,7 +162,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
160
162
  - !ruby/object:Gem::Version
161
163
  version: '0'
162
164
  requirements: []
163
- rubygems_version: 3.4.5
165
+ rubygems_version: 3.4.17
164
166
  signing_key:
165
167
  specification_version: 4
166
168
  summary: Filelist generator