change "custom" field as multiline
Change-Id: I6d6bcb7c88e1c84f07bf5a6d64108bcf9f87e2c8
Signed-off-by: Hyoun Jiil <jiil.hyoun@samsung.com>
+* 2.2.10
+- parser rule changed
+-- pkginfo.manifest custom field as a multiline
+== hyoun jiil <jiil.hyoun@samsung.com> 2015-06-22
* 2.2.9
- remove mail.rb
== hyoun jiil <jiil.hyoun@samsung.com> 2014-09-03
Source : dibs
-Version :2.2.9
+Version :2.2.10
Maintainer : taejun ha<taejun.ha@samsung.com>, jiil hyoun <jiil.hyoun@samsung.com>, donghyuk yang <donghyouk.yang@samsung.com>, donghee yang <donghee.yang@samsung.com>, sungmin kim <dev.sungmin.kim@samsung.com, jonghwan park <jonghwan2.park@samsung.com>
Package : tizen-dibs-test
if package.custom.empty? then package.custom = l.rstrip
else package.custom = package.custom + "\n" + l.rstrip
end
- multi_line = nil
+ multi_line = "Custom"
else
if multi_line.nil? then raise RuntimeError, "Can't parse below line in \"#{file}\" file \n\t#{l}" end
case multi_line
when "Description" then package.description = package.description + "\n" + l.rstrip
+ when "Custom" then package.custom = package.custom + "\n" + l.rstrip
else raise RuntimeError, "Can't parse below line in \"#{file}\" file \n\t#{l}"
end
end