diff --git a/docs/latest.md b/docs/latest.md index b66d856b..59393635 100755 --- a/docs/latest.md +++ b/docs/latest.md @@ -180,13 +180,13 @@ find_system_rpmbuild(name="rules_pkg_rpmbuild") ## pkg_rpm
-pkg_rpm(name, architecture, binary_payload_compression, changelog, conflicts, debug, description, - description_file, group, license, obsoletes, package_file_name, package_name, - package_variables, post_scriptlet, post_scriptlet_file, postun_scriptlet, - postun_scriptlet_file, pre_scriptlet, pre_scriptlet_file, preun_scriptlet, - preun_scriptlet_file, provides, release, release_file, requires, requires_contextual, - rpmbuild_path, source_date_epoch, source_date_epoch_file, spec_template, srcs, summary, url, - version, version_file) +pkg_rpm(name, architecture, binary_payload_compression, changelog, conflicts, debug, defines, + description, description_file, group, license, obsoletes, package_file_name, package_name, + package_variables, post_scriptlet, post_scriptlet_file, posttrans_scriptlet, + posttrans_scriptlet_file, postun_scriptlet, postun_scriptlet_file, pre_scriptlet, + pre_scriptlet_file, preun_scriptlet, preun_scriptlet_file, provides, release, release_file, + requires, requires_contextual, rpmbuild_path, source_date_epoch, source_date_epoch_file, + spec_template, srcs, summary, url, version, version_file)Creates an RPM format package via `pkg_filegroup` and friends. @@ -238,6 +238,7 @@ Creates an RPM format package via `pkg_filegroup` and friends. | changelog | - | Label | optional | None | | conflicts | List of capabilities that conflict with this package when it is installed.
description
or description_file
must be provided. | String | optional | "" |
| description_file | File containing a multi-line description of this package, corresponds to RPM %description. | Label | optional | None |
| group | Optional; RPM "Group" tag.%post
scriptlet. Currently only allowed to be a shell script.post_scriptlet
and post_scriptlet_file
are mutually exclusive. | String | optional | "" |
| post_scriptlet_file | File containing the RPM %post
scriptlet | Label | optional | None |
+| posttrans_scriptlet | RPM %posttrans
scriptlet. Currently only allowed to be a shell script.posttrans_scriptlet
and posttrans_scriptlet_file
are mutually exclusive. | String | optional | "" |
+| posttrans_scriptlet_file | File containing the RPM %posttrans
scriptlet | Label | optional | None |
| postun_scriptlet | RPM %postun
scriptlet. Currently only allowed to be a shell script.postun_scriptlet
and postun_scriptlet_file
are mutually exclusive. | String | optional | "" |
| postun_scriptlet_file | File containing the RPM %postun
scriptlet | Label | optional | None |
| pre_scriptlet | RPM %pre
scriptlet. Currently only allowed to be a shell script.pre_scriptlet
and pre_scriptlet_file
are mutually exclusive. | String | optional | "" |