Skip to content

Commit

Permalink
rpm: forward a few more flags
Browse files Browse the repository at this point in the history
As reported in issue#9(*), REQUIRES and PROVIDES were also missing.

Per rpmds.h:
RPMSENSE_FIND_REQUIRES = (1 << 14), /*!< find-requires generated dependency. */
RPMSENSE_FIND_PROVIDES = (1 << 15), /*!< find-provides generated dependency. */

(*) #9

Signed-off-by: Gary Lin <glin@suse.com>
  • Loading branch information
lcp committed Sep 10, 2018
1 parent efbb5c9 commit 7eca70b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pesign-gen-repackage-spec
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,8 @@ my %deptypes = (
preun => (1 << 11),
postun => (1 << 12),
verify => (1 << 13),
requires => (1 << 14),
provides => (1 << 15),
);
my %depflags = (
"<" => (1 << 1),
Expand Down

0 comments on commit 7eca70b

Please sign in to comment.