Changes between Version 5 and Version 6 of Obsolete/MovedToTree/PackageManagement/BuildingPackages
- Timestamp:
- Jun 27, 2011, 7:15:52 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Obsolete/MovedToTree/PackageManagement/BuildingPackages
v5 v6 24 24 === The .PackageInfo === 25 25 26 The contents of the `.PackageInfo` contains name-value pairs, with the followingsimple grammar:26 The contents of the `.PackageInfo` adheres to a restricted driver settings syntax. It consists of name-value pairs, following this simple grammar: 27 27 {{{ 28 28 package_info ::= attribute* 29 attribute ::= name "=" value_list 30 value_list ::= value | ( "[" value* "]" ) 29 attribute ::= name value_list 30 value_list ::= value | ( "{" value* "}" ) 31 value ::= value_item+ ( '\n' | ';' ) 31 32 }}} 32 33 33 `name` can be one of the attribute names defined below. `value ` is either an unquoted string not containing any whitespace characters or a string enclosed in quotation marks (`"`) which can contain whitespace and also escaped characters (using `\`).34 `name` can be one of the attribute names defined below. `value_item` is either an unquoted string not containing any whitespace characters or a string enclosed in quotation marks (`"` or `'`) which can contain whitespace and also escaped characters (using `\`). 34 35 35 36 The supported attributes are: