Update documentation, changelog for entropy_splitdebug

This commit is contained in:
2016-10-11 19:08:06 +01:00
parent 8ca58a6323
commit deda75dc92
2 changed files with 28 additions and 4 deletions

View File

@@ -1,3 +1,7 @@
## Unreleased
- Added support for `entropy_splitdebug`
## 2016-10-10 Release 0.0.2 ## 2016-10-10 Release 0.0.2
- First forge release - First forge release

View File

@@ -119,7 +119,7 @@ Alternatively, you could mask newer versions of a package
```puppet ```puppet
entropy_mask { 'mask-postgresql-9.5+': entropy_mask { 'mask-postgresql-9.5+':
package => 'app-shells/bash', package => 'app-shells/bash',
operator => '>=', operator => '>=',
version => '9.5', version => '9.5',
} }
@@ -164,6 +164,25 @@ entropy_unmask { 'sublime':
The same caveats about managing the unmask file apply as with `entropy_mask` The same caveats about managing the unmask file apply as with `entropy_mask`
above. above.
### Enabling splitdebug for packages
Entropy splits debug information for packages into separate objects which are
installed at the same time as the package only if splitdebug is enabled
globally, or for specific packages listed in the `package.splitdebug` file.
This type behaves similarly to masks/unmasks and manages entries in the
splitdebug file to define packages for which debug information should be
installed. All the same parameters are supported as with `entropy_mask`.
```puppet
entropy_splitdebug { 'kernel':
package => 'sys-kernel/linux-sabayon',
}
```
The same caveats about managint the splitdebug file apply as with the
`entropy_mask` type above.
## Reference ## Reference
### Classes ### Classes
@@ -172,9 +191,10 @@ above.
### Types ### Types
* `enman_repo` Manages SCR repositories using enman * `enman_repo`: Manages SCR repositories using enman
* `entropy_mask` Manages entropy package masks * `entropy_mask`: Manages entropy package masks
* `entropy_unmask` Manages entropy package unmasks * `entropy_unmask`: Manages entropy package unmasks
* `entropy_splitdebug` Manages entropy package debug information
## Limitations ## Limitations